
:root{
  --cream:#fffaf4;
  --paper:#fffdf9;
  --rose:#ca7474;
  --rose-dark:#b85e5e;
  --gold:#d9aa55;
  --ink:#171313;
  --muted:#6d6660;
  --line:#eadfd8;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  color:var(--ink);
  background:var(--paper);
  font-family:Georgia,"Times New Roman",serif;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  gap:28px;
  min-height:76px;
  padding:0 6vw;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid #eee7e1;
}

.brand{
  margin-right:auto;
  font-size:2rem;
  font-weight:700;
  text-decoration:none;
}

.nav{
  display:flex;
  gap:30px;
  align-items:center;
}

.nav a{
  color:inherit;
  text-decoration:none;
  font-size:1.03rem;
}

.nav a:hover{color:var(--rose-dark)}

.header-button,
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:4px;
  transition:.2s ease;
}

.header-button{
  background:var(--rose);
  color:#fff;
  padding:13px 24px;
  font-family:Arial,sans-serif;
  font-size:.93rem;
}

.header-button:hover,
.button:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

.hero{
  position:relative;
  min-height:620px;
  overflow:hidden;
  background:#fffaf2;
}

.hero-pattern{
  position:absolute;
  inset:0;
  opacity:.95;
  background-color:#fffaf2;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='260' viewBox='0 0 360 260'%3E%3Cg fill='none' stroke='%23dda94d' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='.82'%3E%3Ccircle cx='62' cy='73' r='37'/%3E%3Ccircle cx='62' cy='73' r='12'/%3E%3Cpath d='M180 23c18 8 28 24 28 42 0 22-16 40-37 44-15 3-29-3-38-14 11 3 23-1 31-9 13-13 14-33 4-46 4-7 8-13 12-17z'/%3E%3Cpath d='M273 40c0-15 12-27 27-27s27 12 27 27-12 27-27 27-27-12-27-27z'/%3E%3Cpath d='M292 16c-4 14-1 27 9 38m-21-24c13 2 24 8 33 19'/%3E%3Cpath d='M84 177c0-26 19-45 46-45 23 0 42 16 46 38 4 24-12 48-36 54-27 7-56-10-56-47z'/%3E%3Cpath d='M107 173c15-14 31-18 48-12m-43 32c15-10 31-12 47-6'/%3E%3Cpath d='M248 151h42l13 21v53h-68v-53z'/%3E%3Cpath d='M247 164c9-17 18-25 29-25 13 0 22 8 29 25M248 177h54'/%3E%3Cpath d='M323 130c9 9 9 18 0 27M325 177c12 9 14 21 4 33'/%3E%3Cpath d='M24 215c16-10 32-6 39 7-10 2-18 9-23 20-13-6-18-15-16-27z'/%3E%3C/g%3E%3C/svg%3E");
  background-size:360px 260px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,250,243,.16);
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:880px;
  margin:0 auto;
  text-align:center;
  padding:42px 20px 52px;
}

.title-box{
  display:inline-block;
  width:min(530px,88vw);
  padding:36px 54px 42px;
  margin-top:12px;
  border:6px solid #0c0b0b;
  background:rgba(255,250,246,.44);
}

.title-box h1{
  margin:0;
  text-align:left;
  color:var(--rose);
  font-size:5.5rem;
  line-height:.95;
  font-weight:500;
  letter-spacing:-.035em;
}

.tagline{
  margin:30px 0 28px;
  font-size:2rem;
  line-height:1.25;
}

.hero-buttons{
  display:flex;
  justify-content:center;
}

.button{
  min-width:190px;
  padding:15px 28px;
  font-family:Arial,sans-serif;
  font-size:1rem;
}

.button.primary{
  background:var(--rose);
  color:#fff;
  border:1px solid var(--rose);
}

.button.secondary{
  background:#fff;
  color:var(--rose-dark);
  border:1px solid var(--rose);
}

.features{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
  padding:25px 5vw;
  border-top:1px solid #eee7e1;
  border-bottom:1px solid #eee7e1;
}

.feature{
  text-align:center;
  padding:8px 24px;
  border-right:1px solid var(--line);
}

.feature:last-child{border-right:0}

.feature-icon{
  display:block;
  color:var(--rose);
  font-size:2rem;
  margin-bottom:6px;
}

.feature h3{
  margin:4px 0;
  font-size:1.16rem;
}

.feature p{
  margin:3px 0 0;
  color:var(--muted);
  font-family:Arial,sans-serif;
  font-size:.88rem;
}

.menu-section{
  padding:58px 6vw 72px;
  background:linear-gradient(#fffaf9,#fdf2ef);
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.section-heading h2{
  margin:0;
  font-size:2.7rem;
}

.heart-divider{
  color:var(--rose);
  font-size:1.8rem;
  margin:5px 0;
}

.section-heading p{
  color:var(--muted);
  font-family:Arial,sans-serif;
}

.treat-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.treat-card{
  overflow:hidden;
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 34px rgba(55,32,20,.08);
}

.treat-card img{
  display:block;
  width:100%;
  height:280px;
  object-fit:cover;
}

.treat-card-body{
  padding:20px 22px 24px;
}

.treat-card h3{
  margin:0 0 8px;
  font-size:1.35rem;
}

.treat-card p{
  margin:0;
  color:var(--muted);
  font-family:Arial,sans-serif;
  line-height:1.45;
}

.about-section{
  padding:70px 8vw;
  background:#fff;
}

.about-section>div{
  max-width:850px;
  margin:auto;
  text-align:center;
}

.eyebrow{
  color:var(--rose-dark);
  font-family:Arial,sans-serif;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.about-section h2{
  font-size:2.5rem;
  margin:10px 0 16px;
}

.about-section p{
  font-family:Arial,sans-serif;
  color:var(--muted);
  line-height:1.7;
  font-size:1rem;
}

.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  padding:56px 7vw;
  background:#f9ece9;
}

.contact-card{
  background:#fff;
  border-radius:14px;
  text-align:center;
  padding:36px 28px;
}

.contact-card h2{
  font-size:2rem;
  margin:0 0 10px;
}

.contact-card p{
  color:var(--muted);
  font-family:Arial,sans-serif;
  margin:0 auto 20px;
}

footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:28px 7vw;
  background:#201716;
  color:#fff;
}

footer span{opacity:.78}

@media(max-width:900px){
  .site-header{
    flex-wrap:wrap;
    padding:12px 5vw;
    gap:12px;
  }

  .brand{font-size:1.65rem}

  .nav{
    order:3;
    width:100%;
    justify-content:center;
    gap:18px;
  }

  .header-button{padding:10px 16px}

  .title-box h1{font-size:4.5rem}
  .tagline{font-size:1.45rem}

  .features{grid-template-columns:repeat(2,minmax(0,1fr))}
  .feature:nth-child(2){border-right:0}
  .feature:nth-child(-n+2){border-bottom:1px solid var(--line)}

  .treat-grid{grid-template-columns:1fr 1fr}
  .treat-card:last-child{grid-column:1/-1;max-width:520px;margin:auto}

  .contact-section{grid-template-columns:1fr}
}

@media(max-width:600px){
  .nav{gap:12px;font-size:.88rem}

  .hero{
    min-height:540px;
  }

  .hero-inner{padding-top:30px}

  .title-box{
    padding:26px 28px 30px;
    border-width:5px;
  }

  .title-box h1{
    font-size:3.6rem;
    line-height:.98;
  }

  .tagline{
    font-size:1.08rem;
    margin:24px 0 22px;
  }

  .features{
    grid-template-columns:1fr 1fr;
    padding-left:2vw;
    padding-right:2vw;
  }

  .feature{
    padding:12px 8px;
  }

  .feature h3{font-size:1rem}
  .feature p{font-size:.77rem}

  .treat-grid{grid-template-columns:1fr}
  .treat-card:last-child{grid-column:auto}

  .section-heading h2{font-size:2.15rem}
}


/* Responsive overflow fix */
main,
section,
.site-header,
.hero,
.hero-inner,
.features,
.menu-section,
.treat-grid,
.treat-card,
.about-section,
.contact-section,
.contact-card,
footer{
  min-width:0;
  max-width:100%;
}

.treat-card{
  min-width:0;
  width:100%;
}

.treat-card img{
  width:100%;
  max-width:100%;
  min-width:0;
  height:280px;
  object-fit:cover;
}

@media(max-width:600px){
  .site-header{
    display:grid;
    grid-template-columns:1fr auto;
    width:100%;
    padding:12px 16px 10px;
  }

  .brand{
    min-width:0;
    font-size:1.55rem;
    white-space:nowrap;
  }

  .header-button{
    justify-self:end;
    padding:10px 14px;
    white-space:nowrap;
  }

  .nav{
    grid-column:1 / -1;
    order:initial;
    width:100%;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
  }

  .hero{
    width:100%;
    min-height:auto;
  }

  .hero-inner{
    width:100%;
    padding:30px 16px 38px;
  }

  .title-box{
    width:min(100%, 360px);
    max-width:100%;
    padding:24px 24px 28px;
  }

  .title-box h1{
    font-size:3.35rem;
  }

  .tagline{
    width:100%;
    overflow-wrap:anywhere;
    font-size:1.03rem;
  }

  .features{
    width:100%;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .menu-section{
    width:100%;
    padding:46px 16px 58px;
  }

  .treat-grid{
    width:100%;
    max-width:100%;
    grid-template-columns:minmax(0,1fr);
    gap:22px;
  }

  .treat-card{
    width:100%;
    max-width:100%;
  }

  .treat-card:last-child{
    grid-column:auto;
    max-width:100%;
  }

  .treat-card img{
    width:100%;
    max-width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:cover;
  }

  .about-section,
  .contact-section{
    width:100%;
    padding-left:18px;
    padding-right:18px;
  }

  footer{
    width:100%;
  }
}


/* Version 7: About, How It Works, ordering and FAQ */
.welcome-section,.how-section,.ready-section,.faq-section,.final-cta{width:100%;max-width:100%;min-width:0}
.welcome-section{padding:68px 7vw;background:linear-gradient(180deg,#fff,#fff9f6)}
.story-card{max-width:900px;margin:0 auto;padding:36px 42px;background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 14px 40px rgba(55,32,20,.07);text-align:center}
.story-card p{margin:0 0 18px;font-family:Arial,sans-serif;color:var(--muted);font-size:1.08rem;line-height:1.75}
.story-card .intro{color:var(--ink);font-family:Georgia,"Times New Roman",serif;font-size:1.4rem;font-weight:700}
.story-card p:last-child{margin-bottom:0}
.how-section{padding:68px 6vw 78px;background:#fdf2ef}
.how-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;max-width:1180px;margin:0 auto}
.info-card{min-width:0;padding:32px 28px;background:#fff;border-radius:16px;box-shadow:0 12px 34px rgba(55,32,20,.07)}
.step{color:var(--rose);font-family:Arial,sans-serif;font-weight:800;font-size:.85rem;letter-spacing:.12em}
.info-card h3{margin:10px 0 12px;font-size:1.55rem}
.info-card p{margin:0;color:var(--muted);font-family:Arial,sans-serif;line-height:1.65}
.ready-section{padding:70px 7vw;background:#fff}
.ready-card{max-width:850px;margin:0 auto;padding:45px 36px;text-align:center;background:#fff8f6;border:2px solid #efd1cb;border-radius:20px}
.ready-icon{font-size:2.4rem}.ready-card h2{margin:10px 0;font-size:2.5rem}
.ready-card p{max-width:650px;margin:8px auto;color:var(--muted);font-family:Arial,sans-serif;line-height:1.6}
.phone-button{display:inline-flex;margin-top:20px;padding:16px 30px;background:var(--rose);color:#fff;border-radius:5px;font-family:Arial,sans-serif;font-weight:700;text-decoration:none}
.faq-section{padding:68px 7vw 80px;background:#fffaf8}
.faq-list{max-width:900px;margin:0 auto}
.faq-item{margin-bottom:14px;background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden}
.faq-item summary{cursor:pointer;padding:20px 24px;font-size:1.18rem;font-weight:700}
.faq-item p{margin:0;padding:0 24px 22px;color:var(--muted);font-family:Arial,sans-serif;line-height:1.65}
.final-cta{padding:55px 20px;text-align:center;background:#f9ece9}
.final-cta h2{margin:0 0 22px;font-size:2rem}
@media(max-width:900px){.how-grid{grid-template-columns:1fr}}
@media(max-width:600px){
 .welcome-section,.how-section,.ready-section,.faq-section{padding:46px 16px 54px}
 .story-card{padding:26px 20px}.story-card p{font-size:1rem}.story-card .intro{font-size:1.22rem}
 .how-grid{grid-template-columns:minmax(0,1fr)}.info-card{padding:26px 22px}
 .ready-card{padding:34px 20px}.ready-card h2{font-size:2rem}.phone-button{width:100%;justify-content:center}
 .faq-item summary{padding:18px;font-size:1.05rem}.faq-item p{padding:0 18px 20px}
}


/* ===== V8 POLISHED CONTENT LAYOUT ===== */
:root{
  --cream:#fffaf6;
  --blush:#f8ebe7;
  --blush2:#fdf4f1;
  --rose2:#c96f6c;
  --brown:#2d211c;
  --soft-brown:#6d5c54;
  --card-border:#eadbd5;
}

.welcome-section,.how-section,.ready-section,.faq-section,.final-cta{
  width:100%;
  max-width:100%;
  min-width:0;
  overflow:hidden;
}
.section-heading{
  max-width:920px;
  margin:0 auto 38px;
  text-align:center;
}
.section-heading .eyebrow{
  display:block;
  margin-bottom:10px;
  color:var(--rose2);
  font-family:Arial,sans-serif;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.section-heading h2{
  margin:0;
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.1rem,4vw,3.35rem);
  line-height:1.08;
}
.heart-divider{
  margin-top:14px;
  color:var(--rose2);
  font-size:2rem;
  line-height:1;
}

.welcome-section{
  padding:76px 24px 84px;
  background:var(--cream);
}
.story-card{
  max-width:900px;
  margin:0 auto;
  padding:42px 48px;
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:22px;
  box-shadow:0 18px 55px rgba(72,45,34,.08);
  text-align:center;
}
.story-card p{
  max-width:780px;
  margin:0 auto 20px;
  color:var(--soft-brown);
  font-family:Arial,sans-serif;
  font-size:1.08rem;
  line-height:1.75;
}
.story-card .intro{
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.45rem;
  font-weight:700;
  line-height:1.5;
}
.story-card p:last-child{margin-bottom:0}

.how-section{
  padding:80px 24px 88px;
  background:var(--blush2);
}
.how-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  max-width:1160px;
  margin:0 auto;
}
.info-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:32px 30px 34px;
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:20px;
  box-shadow:0 12px 35px rgba(72,45,34,.06);
}
.step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:18px;
  border-radius:50%;
  background:var(--blush);
  color:var(--rose2);
  font-family:Arial,sans-serif;
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.04em;
}
.info-card h3{
  margin:0 0 13px;
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.55rem;
}
.info-card p{
  margin:0;
  color:var(--soft-brown);
  font-family:Arial,sans-serif;
  font-size:1rem;
  line-height:1.7;
}

.ready-section{
  padding:82px 24px;
  background:#fff;
}
.ready-card{
  max-width:850px;
  margin:0 auto;
  padding:50px 45px;
  text-align:center;
  background:linear-gradient(135deg,#fff8f5,#f9e9e5);
  border:1px solid #e8cbc5;
  border-radius:24px;
  box-shadow:0 18px 55px rgba(72,45,34,.07);
}
.ready-icon{font-size:2.6rem}
.ready-card h2{
  margin:10px 0 14px;
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,4vw,2.8rem);
}
.ready-card p{
  max-width:650px;
  margin:8px auto;
  color:var(--soft-brown);
  font-family:Arial,sans-serif;
  font-size:1.05rem;
  line-height:1.65;
}
.phone-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:24px;
  padding:16px 28px;
  background:var(--rose2);
  color:#fff !important;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(201,111,108,.22);
  font-family:Arial,sans-serif;
  font-weight:700;
  text-decoration:none;
}

.faq-section{
  padding:82px 24px 90px;
  background:var(--cream);
}
.faq-list{
  max-width:900px;
  margin:0 auto;
}
.faq-item{
  margin:0 0 14px;
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(72,45,34,.035);
}
.faq-item summary{
  position:relative;
  cursor:pointer;
  list-style:none;
  padding:22px 58px 22px 24px;
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.15rem;
  font-weight:700;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  color:var(--rose2);
  font-family:Arial,sans-serif;
  font-size:1.6rem;
  font-weight:400;
}
.faq-item[open] summary::after{content:"−"}
.faq-item p{
  margin:0;
  padding:0 24px 24px;
  color:var(--soft-brown);
  font-family:Arial,sans-serif;
  font-size:1rem;
  line-height:1.7;
}

.final-cta{
  padding:64px 24px 70px;
  text-align:center;
  background:var(--blush);
}
.final-cta h2{
  margin:0 0 24px;
  color:var(--brown);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,4vw,2.5rem);
}

@media(max-width:900px){
  .how-grid{grid-template-columns:1fr;max-width:700px}
}
@media(max-width:600px){
  .welcome-section,.how-section,.ready-section,.faq-section{padding:52px 16px 58px}
  .section-heading{margin-bottom:28px}
  .section-heading h2{font-size:2.05rem}
  .story-card{padding:28px 20px;border-radius:16px}
  .story-card .intro{font-size:1.2rem}
  .story-card p{font-size:.98rem}
  .how-grid{gap:16px}
  .info-card{padding:25px 22px;border-radius:16px}
  .info-card h3{font-size:1.35rem}
  .ready-card{padding:34px 20px;border-radius:18px}
  .phone-button{width:100%}
  .faq-item summary{padding:19px 52px 19px 18px;font-size:1.03rem}
  .faq-item summary::after{right:18px}
  .faq-item p{padding:0 18px 20px;font-size:.96rem}
  .final-cta{padding:48px 18px 54px}
}


/* V9 - user supplied header background */
.hero {
  position: relative;
  background-image: url("cookie-pattern-header.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-pattern {
  display: none !important;
}

@media(max-width:600px) {
  .hero {
    background-image: url("cookie-pattern-header.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
  }
}
