
  :root {
    --bg: #FAF7F2;
    --bg-warm: #F4EEE5;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1714;
    --text: #1A1714;
    --text-soft: #5C5650;
    --text-muted: #9B9590;
    --text-on-dark: #FAF7F2;
    --text-on-dark-soft: rgba(250,247,242,0.6);
    --border: rgba(26,23,20,0.08);
    --border-strong: rgba(26,23,20,0.15);
    --accent: #7B2FA0;
    --accent-soft: rgba(123,47,160,0.1);
    --accent-hover: #6A2490;
    --green: #4A7C59;
    --green-soft: rgba(74,124,89,0.1);
    --rose-soft: rgba(196,91,114,0.08);
    --gold: #C4A24E;
    --gold-soft: rgba(196,162,78,0.1);
    --serif: 'Lora', serif;
    --sans: 'DM Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-md: 0 8px 30px rgba(26,23,20,0.08);
    --shadow-hover: 0 16px 48px rgba(26,23,20,0.14);
    --shadow-lg: 0 20px 60px rgba(26,23,20,0.12);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body { font-family:var(--sans); background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
  img { display:block; }
  .container { max-width:1280px; margin:0 auto; padding:0 32px; }

  /* ANNOUNCEMENT */
  .announcement { background:var(--bg-dark); color:var(--text-on-dark); text-align:center; padding:10px 20px; font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; display:flex; align-items:center; justify-content:center; gap:10px; }
  .announcement .dot { width:6px; height:6px; border-radius:50%; background:var(--green); animation:pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

  /* NAV */
  nav { position:sticky; top:0; z-index:100; background:rgba(250,247,242,0.85); backdrop-filter:blur(24px) saturate(1.4); -webkit-backdrop-filter:blur(24px) saturate(1.4); border-bottom:1px solid var(--border); padding:0 32px; }
  .nav-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; height:72px; }
  .nav-left { display:flex; align-items:center; gap:40px; }
  .logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
  .logo-mark { width:38px; height:38px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; }
  .logo-mark svg { width:20px; height:20px; fill:white; }
  .logo-text { font-family:var(--serif); font-size:22px; font-weight:400; letter-spacing:-0.02em; }
  .nav-menu { display:flex; gap:28px; list-style:none; }
  .nav-menu a { font-size:14px; color:var(--text-soft); text-decoration:none; transition:color 0.2s; }
  .nav-menu a:hover { color:var(--accent); }
  .nav-menu a.active { color:var(--text); font-weight:500; }
  .nav-right { display:flex; align-items:center; gap:20px; }
  .nav-icon { width:40px; height:40px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.3s var(--ease); background:transparent; position:relative; color:var(--text); font-size:16px; }
  .nav-icon:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-soft); }
  .cart-count { position:absolute; top:-4px; right:-4px; width:18px; height:18px; border-radius:50%; background:var(--accent); color:white; font-size:10px; font-weight:500; display:flex; align-items:center; justify-content:center; }
  .nav-phone { font-family:var(--mono); font-size:12px; color:var(--text-soft); text-decoration:none; transition:color 0.2s; }
  .nav-phone:hover { color:var(--accent); }

  /* HERO */
  .hero { padding:48px 0 72px; }
  .hero-inner { display:grid; grid-template-columns:1fr 1.1fr; gap:48px; align-items:center; }
  .hero-content { position:relative; z-index:2; }
  .hero-tag { display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:100px; background:var(--green-soft); font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--green); margin-bottom:24px; }
  .hero h1 { font-family:var(--serif); font-size:clamp(40px,5vw,64px); font-weight:400; line-height:1.05; letter-spacing:-0.03em; }
  .hero h1 em { font-style:italic; color:var(--accent); }
  .hero-desc { font-size:17px; font-weight:300; line-height:1.65; color:var(--text-soft); margin-top:20px; max-width:480px; }
  .hero-actions { display:flex; gap:12px; margin-top:32px; }
  .btn { font-family:var(--sans); font-size:14px; font-weight:500; padding:14px 28px; border-radius:var(--radius-sm); cursor:pointer; text-decoration:none; transition:all 0.3s var(--ease); display:inline-flex; align-items:center; gap:8px; border:none; }
  .btn-fill { background:var(--accent); color:white; }
  .btn-fill:hover { background:var(--accent-hover); box-shadow:0 8px 24px rgba(123,47,160,0.25); transform:translateY(-1px); }
  .btn-outline { background:transparent; color:var(--text); border:1.5px solid var(--border-strong); }
  .btn-outline:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-soft); }
  .hero-trust { display:flex; align-items:center; gap:16px; margin-top:36px; padding-top:28px; border-top:1px solid var(--border); }
  .trust-avatars { display:flex; }
  .trust-avatar { width:36px; height:36px; border-radius:50%; border:2px solid var(--bg); margin-left:-10px; overflow:hidden; }
  .trust-avatar:first-child { margin-left:0; }
  .trust-avatar img { width:100%; height:100%; object-fit:cover; }
  .trust-text { font-size:13px; color:var(--text-soft); line-height:1.4; }
  .trust-text strong { color:var(--text); font-weight:500; }

  .hero-visual { position:relative; height:560px; border-radius:24px; overflow:hidden; }
  .hero-visual-grid { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1.3fr 1fr; gap:6px; height:100%; }
  .hero-img-cell { overflow:hidden; position:relative; border-radius:4px; }
  .hero-img-cell:first-child { border-radius:20px 4px 4px 4px; }
  .hero-img-cell:nth-child(2) { border-radius:4px 20px 4px 4px; grid-row:span 2; }
  .hero-img-cell:nth-child(3) { border-radius:4px 4px 4px 20px; }
  .hero-img-cell img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease); }
  .hero-img-cell:hover img { transform:scale(1.05); }
  .hero-img-overlay { position:absolute; bottom:0; left:0; right:0; padding:16px 14px; background:linear-gradient(transparent, rgba(0,0,0,0.55)); display:flex; flex-direction:column; gap:4px; pointer-events:none; z-index:2; }
  .hero-img-label { color:white; font-family:var(--serif); font-size:17px; font-weight:500; text-shadow:0 1px 4px rgba(0,0,0,0.3); }
  .hero-img-cta { color:white; font-size:12px; font-weight:500; opacity:0.85; letter-spacing:0.03em; }
  .hero-img-cell:hover .hero-img-overlay { background:linear-gradient(transparent, rgba(0,0,0,0.7)); }
  .hero-img-cell:hover .hero-img-cta { opacity:1; }
  .hero-badge-overlay { position:absolute; bottom:20px; left:20px; z-index:3; display:flex; gap:8px; }
  .badge-pill { padding:8px 16px; border-radius:100px; background:rgba(255,255,255,0.92); backdrop-filter:blur(12px); font-size:12px; font-weight:500; color:var(--text); display:flex; align-items:center; gap:6px; box-shadow:0 4px 12px rgba(0,0,0,0.08); }

  /* MEGA MENU HELPERS */
  .mega-section-wrapper { max-width:1280px; margin:0 auto; }
  .mega-section-label { font-family:var(--sans); font-size:11px; font-weight:500; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin-bottom:12px; }
  .mega-grid-4 { grid-template-columns:repeat(4,1fr); }

  /* OCCASIONS */
  .occasions { padding:64px 0; }
  .section-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:36px; }
  .section-header h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:400; letter-spacing:-0.02em; }
  .section-header h2 em { font-style:italic; color:var(--accent); }
  .section-link { font-size:13px; font-weight:500; color:var(--accent); text-decoration:none; display:flex; align-items:center; gap:6px; transition:gap 0.3s var(--ease); }
  .section-link:hover { gap:10px; }
  .occasions-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
  .occasion-card { text-align:center; border-radius:var(--radius); border:1px solid var(--border); background:var(--bg-card); cursor:pointer; transition:all 0.4s var(--ease); text-decoration:none; color:var(--text); overflow:hidden; }
  .occasion-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); border-color:transparent; }
  .occasion-img { width:100%; aspect-ratio:1; overflow:hidden; }
  .occasion-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s var(--ease); }
  .occasion-card:hover .occasion-img img { transform:scale(1.08); }
  .occasion-card h3 { font-size:13px; font-weight:500; padding:14px 8px; }

  /* PRODUCTS */
  .products { padding:40px 0 80px; }
  .products-filter { display:flex; gap:8px; margin-bottom:32px; flex-wrap:wrap; }
  .filter-btn { padding:8px 18px; border-radius:100px; border:1px solid var(--border); background:transparent; font-family:var(--sans); font-size:13px; color:var(--text-soft); cursor:pointer; transition:all 0.3s var(--ease); }
  .filter-btn:hover,.filter-btn.active { background:var(--text); color:var(--bg); border-color:var(--text); }
  .products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .product-card { border-radius:var(--radius); overflow:hidden; background:var(--bg-card); border:1px solid var(--border); transition:all 0.4s var(--ease); cursor:pointer; position:relative; }
  .product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); border-color:transparent; }
  .product-img { aspect-ratio:4/5; position:relative; overflow:hidden; }
  .product-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s var(--ease); }
  .product-card:hover .product-img img { transform:scale(1.06); }
  .product-badge { position:absolute; top:12px; left:12px; z-index:2; padding:4px 10px; border-radius:6px; font-family:var(--mono); font-size:10px; letter-spacing:0.06em; text-transform:uppercase; }
  .badge-bestseller { background:var(--gold); color:white; }
  .badge-new { background:var(--green); color:white; }
  .badge-sameday { background:var(--accent); color:white; }
  .product-quick { position:absolute; bottom:12px; left:12px; right:12px; z-index:2; opacity:0; transform:translateY(8px); transition:all 0.3s var(--ease); }
  .product-card:hover .product-quick { opacity:1; transform:translateY(0); }
  .product-quick button { width:100%; padding:12px; border-radius:var(--radius-sm); border:none; background:rgba(255,255,255,0.92); backdrop-filter:blur(10px); font-family:var(--sans); font-size:13px; font-weight:500; color:var(--text); cursor:pointer; transition:all 0.2s; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
  .product-quick button:hover { background:var(--accent); color:white; }
  .product-info { padding:18px 20px 22px; }
  .product-name { font-family:var(--serif); font-size:17px; font-weight:400; margin-bottom:4px; }
  .product-desc { font-size:13px; color:var(--text-muted); font-weight:300; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .product-bottom { display:flex; align-items:center; justify-content:space-between; }
  .product-price { font-family:var(--serif); font-size:20px; font-weight:500; }
  .product-price .from { font-family:var(--sans); font-size:11px; font-weight:300; color:var(--text-muted); margin-right:2px; }
  .product-delivery { font-family:var(--mono); font-size:10px; color:var(--green); background:var(--green-soft); padding:4px 8px; border-radius:4px; }

  /* BANNER */
  .featured-banner { padding:0 0 80px; }
  .banner-inner { border-radius:24px; overflow:hidden; background:var(--bg-dark); display:grid; grid-template-columns:1fr 1.2fr; min-height:420px; }
  .banner-content { padding:64px 56px; display:flex; flex-direction:column; justify-content:center; }
  .banner-tag { font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
  .banner-content h2 { font-family:var(--serif); font-size:clamp(32px,3.5vw,48px); font-weight:400; color:var(--text-on-dark); line-height:1.1; }
  .banner-content h2 em { font-style:italic; color:var(--gold); }
  .banner-content p { font-size:15px; font-weight:300; color:var(--text-on-dark-soft); line-height:1.65; margin-top:16px; max-width:380px; }
  .banner-content .btn { margin-top:28px; align-self:flex-start; }
  .btn-gold { background:var(--gold); color:var(--bg-dark); }
  .btn-gold:hover { background:#D4B25E; box-shadow:0 8px 24px rgba(196,162,78,0.3); transform:translateY(-1px); }
  .banner-visual { position:relative; overflow:hidden; }
  .banner-visual img { width:100%; height:100%; object-fit:cover; }
  .banner-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, var(--bg-dark) 0%, transparent 40%); }

  /* AI SECTION */
  .ai-section { padding:80px 0; background:var(--bg-warm); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .ai-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  .ai-content h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:400; line-height:1.1; }
  .ai-content h2 em { font-style:italic; color:var(--accent); }
  .ai-content > p { font-size:15px; font-weight:300; line-height:1.7; color:var(--text-soft); margin-top:16px; }
  .ai-features { margin-top:28px; display:flex; flex-direction:column; gap:14px; }
  .ai-feature { display:flex; gap:12px; align-items:flex-start; }
  .ai-feature-icon { width:36px; height:36px; border-radius:10px; background:var(--accent-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; }
  .ai-feature-text h4 { font-size:14px; font-weight:500; }
  .ai-feature-text p { font-size:13px; color:var(--text-muted); margin-top:2px; }
  .ai-phone-mock { background:var(--bg-card); border-radius:24px; border:1px solid var(--border); box-shadow:var(--shadow-lg); padding:24px; max-width:340px; margin:0 auto; }
  .ai-phone-header { display:flex; align-items:center; gap:12px; padding-bottom:16px; border-bottom:1px solid var(--border); margin-bottom:16px; }
  .ai-phone-avatar { width:40px; height:40px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; color:white; font-family:var(--serif); font-size:18px; font-style:italic; }
  .ai-phone-name { font-size:14px; font-weight:500; }
  .ai-phone-status { font-family:var(--mono); font-size:10px; color:var(--green); }
  .ai-chat-messages { display:flex; flex-direction:column; gap:12px; }
  .chat-msg { max-width:85%; padding:12px 16px; border-radius:16px; font-size:13px; line-height:1.5; font-weight:300; }
  .chat-msg.bot { background:var(--bg-warm); border-bottom-left-radius:4px; align-self:flex-start; color:var(--text); }
  .chat-msg.user { background:var(--accent); color:white; border-bottom-right-radius:4px; align-self:flex-end; }
  .chat-waveform { display:flex; align-items:center; gap:2px; height:20px; padding:8px 16px; background:var(--bg-warm); border-radius:16px; border-bottom-left-radius:4px; align-self:flex-start; width:fit-content; }
  .chat-wave-bar { width:2px; border-radius:2px; background:var(--accent); animation:chatWave 1s ease-in-out infinite; }
  @keyframes chatWave { 0%,100%{height:4px;opacity:0.4} 50%{height:var(--h,16px);opacity:0.9} }

  /* DELIVERY */
  .delivery-section { padding:80px 0; }
  .delivery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
  .delivery-card { padding:32px 28px; border-radius:var(--radius); border:1px solid var(--border); background:var(--bg-card); text-align:center; transition:all 0.4s var(--ease); }
  .delivery-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
  .delivery-card-icon { width:52px; height:52px; border-radius:14px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; font-size:24px; }
  .delivery-card:nth-child(1) .delivery-card-icon { background:var(--accent-soft); }
  .delivery-card:nth-child(2) .delivery-card-icon { background:var(--green-soft); }
  .delivery-card:nth-child(3) .delivery-card-icon { background:var(--rose-soft); }
  .delivery-card:nth-child(4) .delivery-card-icon { background:var(--gold-soft); }
  .delivery-card h3 { font-size:15px; font-weight:500; margin-bottom:8px; }
  .delivery-card p { font-size:13px; color:var(--text-muted); line-height:1.6; font-weight:300; }

  /* REVIEWS */
  .reviews-section { padding:80px 0; background:var(--bg-warm); border-top:1px solid var(--border); }
  .reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
  .review-card { padding:32px; border-radius:var(--radius); background:var(--bg-card); border:1px solid var(--border); }
  .review-stars { color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:14px; }
  .review-text { font-size:14px; font-weight:300; line-height:1.65; color:var(--text-soft); font-style:italic; margin-bottom:18px; }
  .review-author { display:flex; align-items:center; gap:10px; }
  .review-avatar { width:36px; height:36px; border-radius:50%; overflow:hidden; }
  .review-avatar img { width:100%; height:100%; object-fit:cover; }
  .review-author-name { font-size:13px; font-weight:500; }
  .review-author-loc { font-size:11px; color:var(--text-muted); }

  /* NEWSLETTER */
  .newsletter { padding:80px 0; text-align:center; }
  .newsletter h2 { font-family:var(--serif); font-size:clamp(28px,3vw,40px); font-weight:400; }
  .newsletter h2 em { font-style:italic; color:var(--accent); }
  .newsletter p { font-size:15px; color:var(--text-soft); font-weight:300; margin-top:12px; }
  .newsletter-form { display:flex; gap:8px; margin-top:28px; max-width:440px; margin-left:auto; margin-right:auto; }
  .newsletter-form input { flex:1; padding:14px 20px; border-radius:var(--radius-sm); border:1.5px solid var(--border-strong); background:var(--bg-card); font-family:var(--sans); font-size:14px; color:var(--text); outline:none; transition:border-color 0.3s; }
  .newsletter-form input:focus { border-color:var(--accent); }
  .newsletter-form input::placeholder { color:var(--text-muted); }

  /* FOOTER */
  footer { background:var(--bg-dark); padding:64px 0 40px; color:var(--text-on-dark); }
  .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); }
  .footer-brand .logo-text { color:var(--text-on-dark); }
  .footer-brand p { font-size:14px; color:var(--text-on-dark-soft); font-weight:300; line-height:1.6; margin-top:14px; max-width:280px; }
  .footer-col h4 { font-family:var(--mono); font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-on-dark-soft); margin-bottom:18px; }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
  .footer-col a { font-size:14px; font-weight:300; color:var(--text-on-dark-soft); text-decoration:none; transition:color 0.2s; }
  .footer-col a:hover { color:var(--text-on-dark); }
  .footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:28px; }
  .footer-copy { font-family:var(--mono); font-size:11px; color:rgba(250,247,242,0.3); }
  .footer-badge { display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:10px; text-transform:uppercase; color:rgba(250,247,242,0.3); }
  .footer-badge .ai-dot { width:6px; height:6px; border-radius:50%; background:var(--green); animation:pulse 2s ease-in-out infinite; }

  .reveal { opacity:0; transform:translateY(30px); transition:all 0.7s var(--ease); }
  .reveal.visible { opacity:1; transform:translateY(0); }

  @media (max-width:1024px) { .products-grid{grid-template-columns:repeat(3,1fr);} .footer-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:768px) { .hero-inner{grid-template-columns:1fr;} .hero-visual{height:320px;} .occasions-grid{grid-template-columns:repeat(3,1fr);} .products-grid{grid-template-columns:repeat(2,1fr);} .banner-inner{grid-template-columns:1fr;} .banner-visual{height:240px;} .banner-visual::after{background:linear-gradient(180deg,var(--bg-dark) 0%,transparent 40%);} .ai-inner{grid-template-columns:1fr;} .delivery-grid{grid-template-columns:repeat(2,1fr);} .reviews-grid{grid-template-columns:1fr;} .nav-menu{display:none;} .nav-phone{display:none;} .container{padding:0 20px;} nav{padding:0 20px;} .footer-grid{grid-template-columns:1fr;} .banner-content{padding:40px 32px;} }

  .breadcrumbs{padding:12px 0;border-bottom:1px solid var(--border)}.breadcrumbs a{font-size:12px;color:var(--text-muted);text-decoration:none;transition:color .2s}.breadcrumbs a:hover{color:var(--accent)}.breadcrumbs span{font-size:12px;color:var(--text-muted)}.bc-sep{margin:0 8px}
  .page-hero{padding:56px 0 40px}.page-hero h1{font-family:var(--serif);font-size:clamp(32px,4vw,52px);font-weight:400;letter-spacing:-.02em}.page-hero h1 em{font-style:italic;color:var(--accent)}.page-desc{font-size:17px;font-weight:300;line-height:1.65;color:var(--text-soft);margin-top:16px;max-width:640px}
  .content-page{padding:0 0 80px}.content-body h2{font-family:var(--serif);font-size:clamp(22px,2.5vw,32px);font-weight:400;margin-top:40px;margin-bottom:16px}.content-body h3{font-size:18px;font-weight:500;margin-top:28px;margin-bottom:12px}.content-body p{font-size:15px;font-weight:300;line-height:1.75;color:var(--text-soft);margin-bottom:16px}.content-body a{color:var(--accent);text-decoration:none;border-bottom:1px solid var(--accent-soft);transition:border-color .2s}.content-body a:hover{border-color:var(--accent)}.content-body ul,.content-body ol{padding-left:24px;margin-bottom:16px}.content-body li{font-size:15px;font-weight:300;line-height:1.75;color:var(--text-soft);margin-bottom:8px}.content-body li strong{color:var(--text);font-weight:500}.content-block{margin-top:48px;padding-top:40px;border-top:1px solid var(--border)}
  .about-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:48px}.about-img{width:100%;border-radius:var(--radius);margin-bottom:24px}.about-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px}.about-stat{text-align:center;padding:20px;border-radius:var(--radius-sm);border:1px solid var(--border);background:var(--bg-card)}.stat-num{display:block;font-family:var(--serif);font-size:28px;font-weight:500;color:var(--accent)}.stat-label{font-size:11px;font-family:var(--mono);text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted);margin-top:4px}
  .faq-list{display:flex;flex-direction:column;gap:2px}.faq-item{border:1px solid var(--border);border-radius:var(--radius-sm);padding:24px 28px;background:var(--bg-card)}.faq-q{font-family:var(--sans);font-size:16px;font-weight:500}.faq-a{margin-top:12px}.faq-a p{margin-bottom:0}
  .contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:48px}.form-input{display:block;width:100%;padding:14px 20px;border-radius:var(--radius-sm);border:1.5px solid var(--border-strong);background:var(--bg-card);font-family:var(--sans);font-size:14px;color:var(--text);outline:none;transition:border-color .3s;margin-bottom:12px}.form-input:focus{border-color:var(--accent)}.form-textarea{min-height:120px;resize:vertical}.contact-detail{margin-bottom:20px}.contact-detail h4{font-size:14px;font-weight:500;margin-bottom:4px}.contact-detail p{font-size:14px;color:var(--text-soft);line-height:1.5;margin:0}.contact-detail a{color:var(--accent);text-decoration:none}
  .care-steps{display:flex;flex-direction:column;gap:16px;margin:28px 0}.care-step{display:flex;gap:16px;align-items:flex-start;padding:20px 24px;border-radius:var(--radius-sm);border:1px solid var(--border);background:var(--bg-card)}.step-num{width:36px;height:36px;border-radius:50%;background:var(--accent);color:white;display:flex;align-items:center;justify-content:center;font-family:var(--mono);font-size:14px;font-weight:500;flex-shrink:0}.care-step h3{font-size:15px;font-weight:500;margin:0 0 4px}.care-step p{font-size:14px;color:var(--text-soft);margin:0;line-height:1.6}
  .delivery-table{width:100%;border-collapse:collapse;margin:16px 0 24px;border-radius:var(--radius-sm);overflow:hidden}.delivery-table th{background:var(--bg-dark);color:var(--text-on-dark);font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;padding:14px 20px;text-align:left}.delivery-table td{padding:14px 20px;border-bottom:1px solid var(--border);font-size:14px;color:var(--text-soft)}.delivery-table tr:last-child td{font-weight:500;color:var(--green)}
  .area-list{columns:2;column-gap:32px}.zip-codes{font-family:var(--mono);font-size:12px;color:var(--text-muted);line-height:2}
  .pricing-grid-simple{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:24px 0}.plan-card{padding:28px 24px;border-radius:var(--radius);border:1px solid var(--border);background:var(--bg-card);text-align:center}.plan-card.featured{border-color:var(--accent);background:var(--accent-soft)}.plan-card h3{font-family:var(--serif);font-size:20px;margin-bottom:8px}.plan-price{font-family:var(--serif);font-size:36px;font-weight:500;color:var(--accent)}.plan-price span{font-size:14px;font-weight:300;color:var(--text-muted)}
  .internal-links{padding:48px 0;border-top:1px solid var(--border)}.internal-links h3{font-family:var(--serif);font-size:22px;font-weight:400;margin-bottom:20px}.links-grid{display:flex;flex-wrap:wrap;gap:8px}.links-grid a{padding:8px 18px;border-radius:100px;border:1px solid var(--border);font-size:13px;color:var(--text-soft);text-decoration:none;transition:all .3s var(--ease)}.links-grid a:hover{background:var(--accent);color:white;border-color:var(--accent)}
  .footer-contact{margin-top:16px}.footer-contact p{font-size:13px;color:var(--text-on-dark-soft);margin:4px 0}.footer-contact a{color:var(--text-on-dark-soft);text-decoration:none;transition:color .2s}.footer-contact a:hover{color:var(--text-on-dark)}
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr 1fr 1fr}
  @media(max-width:1024px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
  @media(max-width:768px){.about-grid{grid-template-columns:1fr}.contact-grid{grid-template-columns:1fr}.pricing-grid-simple{grid-template-columns:1fr}.area-list{columns:1}.footer-grid{grid-template-columns:1fr 1fr}}

/* ===== INLINE FORMS ===== */
.inline-form-section {
  margin-top: 48px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.inline-form-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}
.inline-form-section .form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
}
.inline-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.inline-form-grid .full-width {
  grid-column: span 2;
}
.form-input {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 100px; resize: vertical; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239B9590'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.form-submit-row .btn { flex-shrink: 0; }
.form-submit-row .form-note { font-size: 12px; color: var(--text-muted); }
.form-or-call { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-soft); text-align: center; }
.form-or-call a { color: var(--accent); font-weight: 500; text-decoration: none; }

@media (max-width: 768px) {
  .inline-form-grid { grid-template-columns: 1fr; }
  .inline-form-grid .full-width { grid-column: span 1; }
}

/* ===== MEGA DROPDOWN MENU ===== */
.nav-menu > li { position: relative; }
.nav-menu > li.has-mega { position: static; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(26,23,20,0.1);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  z-index: 200;
}

.has-mega:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.mega-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
}

.mega-item {
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: block;
}

.mega-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.mega-item-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.mega-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.mega-item:hover .mega-item-img img { transform: scale(1.08); }

.mega-item-info {
  padding: 12px 14px;
}

.mega-item-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mega-item-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 300;
}

.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.mega-header h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.mega-header a {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 768px) {
  .mega-menu { display: none; }
}

/* ===== WEDDING LANDING PAGE ===== */
.wedding-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wedding-hero-bg {
  position: absolute;
  inset: 0;
}

.wedding-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.2) 0%, rgba(26,23,20,0.55) 100%);
}

.wedding-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px;
}

.wedding-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 28px;
}

.wedding-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.wedding-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.wedding-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  line-height: 1.6;
}

.wedding-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.btn-white {
  background: white;
  color: var(--text);
}

.btn-white:hover {
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Wedding services grid */
.wedding-services {
  padding: 80px 0;
}

.wedding-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wedding-service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.wedding-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.wedding-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wedding-service-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.wedding-service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Wedding packages */
.wedding-packages {
  padding: 80px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wedding-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wedding-pkg {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  transition: all 0.4s var(--ease);
}

.wedding-pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.wedding-pkg.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.wedding-pkg.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gold);
  color: white;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
}

.wedding-pkg-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.wedding-pkg-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.wedding-pkg-price span {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}

.wedding-pkg-desc {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  margin: 12px 0 20px;
  line-height: 1.5;
}

.wedding-pkg ul {
  list-style: none;
  padding: 0;
}

.wedding-pkg li {
  font-size: 13px;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wedding-pkg li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
}

.wedding-pkg .btn {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  display: block;
}

/* Wedding process */
.wedding-process {
  padding: 80px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* Wedding venues */
.wedding-venues {
  padding: 80px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.wedding-venues h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  text-align: center;
}

.wedding-venues h2 em {
  font-style: italic;
  color: var(--gold);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.venue-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s var(--ease);
}

.venue-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
}

.venue-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}

.venue-card p {
  font-size: 13px;
  color: var(--text-on-dark-soft);
  font-weight: 300;
  line-height: 1.5;
}

/* Wedding testimonial */
.wedding-testimonial {
  padding: 80px 0;
  text-align: center;
}

.wedding-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
}

.wedding-quote::before {
  content: '"';
  display: block;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 8px;
}

/* Wedding CTA */
.wedding-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-dark), #2A2520);
  text-align: center;
  color: var(--text-on-dark);
}

.wedding-cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}

.wedding-cta h2 em { color: var(--gold); font-style: italic; }

.wedding-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-on-dark-soft);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wedding-services-grid { grid-template-columns: 1fr; }
  .wedding-pkg-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .venues-grid { grid-template-columns: 1fr; }
  .wedding-hero { min-height: 70vh; }
}
