  :root{
    --base:#F4F0E8;
    --surface:#FFFFFF;
    --surface-2:#ECE4D6;
    --line: rgba(28,26,23,0.12);
    --text:#1C1A17;
    --muted:#5A5348;
    --coral:#B08D57;
    --violet:#8C7245;
    --teal:#C7A96E;
    /* Darker variants of the accent colors, for use as TEXT on the cream background.
       The base coral/violet/teal are tuned for decorative use (gradients, borders, buttons)
       and fail WCAG contrast as foreground text - use these instead wherever accent color sits on text. */
    --coral-text:#7A5A28;
    --violet-text:#6E5228;
    --teal-text:#5C441F;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--base);
    color:var(--text);
    font-family:'Inter', sans-serif;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3{font-family:'Fraunces', serif; font-weight:500; letter-spacing:-0.01em;}
  .mono{font-family:'Inter', sans-serif; letter-spacing:0.1em; text-transform:uppercase; font-weight:500; font-size:11px;}
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:1120px; margin:0 auto; padding:0 32px;}

  /* NAV */
  nav{
    position:sticky; top:0; z-index:50;
    background:rgba(244,240,232,0.82); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav .wrap{display:flex; align-items:center; justify-content:space-between; height:72px;}
  .brand{font-size:20px; font-weight:700; display:flex; align-items:center; gap:9px;}
  .brand-mark{width:11px; height:11px; border-radius:3px; background:linear-gradient(135deg, var(--coral), var(--violet)); flex-shrink:0;}
  .nav-links{display:flex; gap:32px; font-size:14px; color:var(--muted);}
  .nav-links a:hover{color:var(--text);}
  .nav-cta{
    background:var(--text); color:var(--base); padding:10px 20px; border-radius:8px;
    font-size:14px; font-weight:600;
  }
  @media (max-width:720px){ .nav-links{display:none;} }

  /* MOBILE NAV TOGGLE */
  .nav-toggle{
    display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{width:22px; height:2px; background:var(--text); transition:transform .2s ease, opacity .2s ease;}
  .nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle.active span:nth-child(2){opacity:0;}
  .nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .mobile-menu{
    display:none; flex-direction:column; background:var(--surface); border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .25s ease;
  }
  .mobile-menu.active{max-height:240px;}
  .mobile-menu a{padding:16px 32px; border-top:1px solid var(--line); font-size:15px;}
  @media (max-width:720px){
    .nav-toggle{display:flex;}
    .mobile-menu{display:flex;}
  }

  /* PACK BADGES (New / Best Value) */
  .pack-badge{
    position:absolute; top:12px; left:12px; background:var(--coral-text); color:var(--base);
    font-size:10px; letter-spacing:0.08em; text-transform:uppercase; padding:5px 10px; border-radius:6px; z-index:2;
  }

  /* HERO */
  .hero{padding:96px 0 72px; position:relative;}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; color:var(--muted); text-transform:uppercase;
    letter-spacing:0.14em; margin-bottom:22px;
  }
  .eyebrow::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--teal);}
  .hero h1{
    font-size:clamp(38px, 6vw, 64px); font-weight:700; max-width:760px; line-height:1.04;
  }
  .hero h1 em{font-style:normal; background:linear-gradient(100deg, var(--coral-text), var(--violet-text) 60%, var(--teal-text)); -webkit-background-clip:text; background-clip:text; color:transparent;}
  .hero p.sub{font-size:18px; color:var(--muted); max-width:520px; margin:22px 0 34px;}
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
  .btn-primary{
    background:var(--text); color:var(--base); padding:15px 26px; border-radius:9px;
    font-weight:600; font-size:15px; display:inline-block; transition:transform .15s ease;
  }
  .btn-primary:hover{transform:translateY(-1px);}
  .btn-secondary{
    border:1px solid var(--line); padding:14px 24px; border-radius:9px; font-size:15px; color:var(--text);
  }
  .btn-secondary:hover{border-color:rgba(242,241,237,0.3);}

  /* DEVICE SHOWCASE */
  .showcase{
    display:flex; align-items:flex-end; justify-content:center; gap:36px;
    margin-top:80px; position:relative;
  }
  .phone{
    width:230px; height:472px; border-radius:34px; background:#000;
    border:6px solid #24262d; position:relative; overflow:hidden;
    box-shadow:0 40px 70px -24px rgba(28,26,23,0.28);
    flex-shrink:0;
  }
  .phone::before{
    content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
    width:70px; height:20px; background:#24262d; border-radius:0 0 14px 14px; z-index:5;
  }
  .laptop{
    width:640px; max-width:64vw; flex-shrink:0;
  }
  .laptop-screen{
    background:#000; border:7px solid #24262d; border-bottom:none;
    border-radius:14px 14px 0 0; height:370px; overflow:hidden; position:relative;
  }
  .laptop-base{
    height:16px; background:linear-gradient(180deg, #2b2e36, #1a1c21);
    border-radius:0 0 8px 8px; position:relative;
  }
  .laptop-base::after{
    content:''; position:absolute; left:50%; top:100%; transform:translateX(-50%);
    width:120px; height:8px; background:#15161a; border-radius:0 0 10px 10px;
  }
  .res-tag{
    position:absolute; bottom:12px; left:12px; font-size:10px; padding:4px 8px;
    background:rgba(0,0,0,0.35); border-radius:5px; color:#fff; backdrop-filter:blur(4px);
  }
  .dw-slide{
    width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
  }
  .dw-rotate-toggle{
    position:absolute; bottom:-38px; right:0; background:var(--surface); border:1px solid var(--line);
    color:var(--text); width:32px; height:32px; border-radius:50%; cursor:pointer; font-size:13px;
    display:flex; align-items:center; justify-content:center;
  }
  .dw-rotate-toggle:hover{border-color:rgba(28,26,23,0.3);}
  @media (max-width:640px){
    .showcase{flex-direction:column; align-items:center; gap:28px;}
    .laptop{width:340px;}
    .dw-rotate-toggle{bottom:-46px; right:calc(50% - 16px);}
  }

  /* VALUE STRIP */
  .value-strip{border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .value-strip .wrap{padding:32px;}
  .check-grid{
    display:grid; grid-template-columns:repeat(6,1fr); gap:18px;
  }
  .check-item{
    display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--text);
    justify-content:center; text-align:center;
  }
  .check-item svg{width:16px; height:16px; color:var(--coral-text); flex-shrink:0;}
  @media (max-width:900px){ .check-grid{grid-template-columns:repeat(3,1fr);} }
  @media (max-width:520px){ .check-grid{grid-template-columns:repeat(2,1fr);} }

  .trust-bar{border-bottom:1px solid var(--line); background:var(--surface);}
  .trust-bar .wrap{
    display:grid; grid-template-columns:repeat(4,1fr); gap:24px; padding:24px 32px;
  }
  .trust-item{font-size:13px; color:var(--muted); text-align:center;}
  .trust-item.trust-highlight{color:var(--coral-text); font-weight:600;}
  @media (max-width:900px){ .trust-bar .wrap{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:520px){ .trust-bar .wrap{grid-template-columns:1fr; gap:12px;} .trust-item{text-align:left;} }

  /* GALLERY */
  .section{padding:100px 0;}
  .section-head{max-width:560px; margin-bottom:52px;}
  .section-head .eyebrow{margin-bottom:14px;}
  .section-head h2{font-size:clamp(28px,4vw,38px); font-weight:600;}
  .section-head p{color:var(--muted); margin-top:12px; font-size:15px;}

  .gallery-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:22px;
  }
  .pack-card{
    background:var(--surface); border:1px solid var(--line); border-radius:16px;
    padding:20px; transition:border-color .2s ease, transform .2s ease;
    position:relative; display:block; text-decoration:none; color:inherit;
  }
  .pack-card:hover{border-color:rgba(242,241,237,0.22); transform:translateY(-3px);}
  .pack-frame{
    height:190px; border-radius:11px; position:relative; overflow:hidden; margin-bottom:16px;
    background:var(--surface-2);
  }
  .pack-frame img{width:100%; height:100%; object-fit:cover;}
  .pack-name{font-weight:600; font-size:15px; margin-bottom:4px;}
  .pack-meta{font-size:12px; color:var(--muted);}
  @media (max-width:900px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:520px){ .gallery-grid{grid-template-columns:1fr;} }

  /* HOW IT WORKS */
  .steps{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
  .step{border-top:1px solid var(--line); padding-top:20px;}
  .step .num{font-family:'Inter', sans-serif; letter-spacing:0.1em; text-transform:uppercase; font-weight:600; color:var(--coral-text); font-size:12px; margin-bottom:10px; display:block;}
  .step h3{font-size:17px; font-weight:600; margin-bottom:8px;}
  .step p{font-size:14px; color:var(--muted);}
  @media (max-width:720px){ .steps{grid-template-columns:1fr;} }

  /* PRICING */
  .pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  .price-card{
    background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:32px 28px;
    display:flex; flex-direction:column;
  }
  .price-card.featured{border-color:var(--violet); background:linear-gradient(180deg, var(--surface-2), var(--surface));}
  .price-card h3{font-size:16px; font-weight:600; margin-bottom:8px;}
  .price-card .amount{font-size:36px; font-weight:500; margin:14px 0 6px; font-family:'Fraunces', serif;}
  .price-card .amount span{font-size:14px; color:var(--muted); font-weight:400;}
  .price-card ul{list-style:none; margin:20px 0 26px; font-size:13px; color:var(--muted);}
  .price-card li{padding:7px 0; border-top:1px solid var(--line);}
  .price-card .btn-primary, .price-card .btn-secondary{text-align:center; margin-top:auto;}
  @media (max-width:900px){ .pricing-grid{grid-template-columns:1fr;} }

  /* FOOTER */
  footer{border-top:1px solid var(--line); padding:56px 0 40px;}
  footer .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
  .foot-links{display:flex; gap:24px; font-size:13px; color:var(--muted);}
  .foot-links a:hover{color:var(--text);}
  .copy{font-size:12px; color:var(--muted); margin-top:24px;}
  /* FAQ */
  .faq-item{border-top:1px solid var(--line); padding:20px 0;}
  .faq-item summary{cursor:pointer; font-weight:600; font-size:15px; list-style:none; display:flex; justify-content:space-between; align-items:center;}
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary::after{content:'+'; font-size:20px; color:var(--muted); font-weight:400;}
  .faq-item[open] summary::after{content:'–';}
  .faq-item p{color:var(--muted); font-size:14px; margin-top:12px; line-height:1.6;}

  /* EMAIL POPUP MODAL */
  .dw-modal-backdrop{
    position:fixed; inset:0; background:rgba(0,0,0,0.65); backdrop-filter:blur(3px);
    display:flex; align-items:center; justify-content:center; z-index:1000;
    opacity:0; pointer-events:none; transition:opacity .35s ease;
    padding:20px;
  }
  .dw-modal-backdrop.active{opacity:1; pointer-events:auto;}
  .dw-modal{
    background:var(--surface-2); border:1px solid var(--line); border-radius:18px;
    padding:40px; max-width:420px; width:100%; text-align:center; position:relative;
    transform:translateY(14px); transition:transform .35s ease;
  }
  .dw-modal-backdrop.active .dw-modal{transform:translateY(0);}
  .dw-modal-close{
    position:absolute; top:14px; right:16px; background:none; border:none; color:var(--muted);
    font-size:20px; cursor:pointer; line-height:1; padding:4px;
  }
  .dw-modal-close:hover{color:var(--text);}
  .dw-modal .eyebrow{justify-content:center; width:100%;}
  .dw-modal h2{font-size:22px; font-weight:600; margin:14px 0 8px;}
  .dw-modal p{color:var(--muted); font-size:14px; margin-bottom:22px;}
  .dw-modal form{display:flex; flex-direction:column; gap:10px;}
  .dw-modal input{
    background:var(--base); border:1px solid var(--line); border-radius:8px;
    padding:13px 16px; color:var(--text); font-size:14px; font-family:'Inter', sans-serif;
  }
  .dw-modal input:focus{outline:none; border-color:var(--violet);}
  .dw-modal .btn-primary{border:none; cursor:pointer; width:100%;}
  .dw-modal-note{font-size:12px; color:var(--muted); margin-top:14px;}

  /* ACCESSIBILITY */
  .skip-link{
    position:absolute; left:-999px; top:0; background:var(--text); color:var(--base);
    padding:12px 20px; border-radius:0 0 8px 0; z-index:2000; font-size:14px;
  }
  .skip-link:focus{left:0;}
  a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible{
    outline:2px solid var(--coral); outline-offset:2px;
  }
  @media (prefers-reduced-motion: reduce){
    .dw-slide{transition:none !important;}
  }
