  :root {
    --eo-terracotta: #C85A3C;
    --eo-terracotta-dark: #A6472D;
    --eo-indigo: #1A2A44;
    --eo-jade: #2E4F3F;
    --eo-cream: #F5F2EB;
    --eo-surface: #FAFAF7;
    --eo-ink: #141414ef;
    --eo-ink-soft: #141414ef;
    --eo-border: #E5DFD3;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Manrope', system-ui, sans-serif;
    background-color: var(--eo-cream);
    color: var(--eo-ink);
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
  }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--eo-terracotta); color: var(--eo-cream); }
  em { font-style: normal; color: var(--eo-terracotta); }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .overline {
    font-size: 1.5rem; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--eo-terracotta);
  }

  /* NAV */
  .nav {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px;
    transition: all 500ms ease-out;
  }
  .nav.scrolled {
    background: rgba(245,242,235,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--eo-border);
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 44px; height: 44px; border-radius: 999px;
    background: var(--eo-terracotta); color: var(--eo-cream);
    display: grid; place-items: center;
    font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 26px;
  .brand-mark { object-fit: cover; }
  }
  .brand-text { display: flex; flex-direction: column; line-height: 1; }
  .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 30px;
    color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transition: color 500ms;
  }
  .nav.scrolled .brand-name { color: var(--eo-ink); text-shadow: none; }
  .brand-sub { font-size: 0.99rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,242,235,0.9); margin-top: 4px; }
  .nav.scrolled .brand-sub { color: var(--eo-ink-soft); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a { font-size: 14px; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.4); transition: color 300ms; }
  .nav.scrolled .nav-links a { color: var(--eo-ink); text-shadow: none; }
  .nav-links a:hover { color: var(--eo-terracotta); }
  .btn-primary {
    display: inline-block;
    background: var(--eo-terracotta); color: var(--eo-cream);
    padding: 10px 22px; border-radius: 999px;
    font-size: 14px; border: none; cursor: pointer;
    transition: transform 500ms ease-out, background 300ms, box-shadow 500ms;
  }
  .btn-primary:hover {
    background: var(--eo-terracotta-dark); transform: translateY(-2px);
    box-shadow: 0 12px 32px -12px rgba(200,90,60,0.55);
  }
  .btn-outline {
    display: inline-block; padding: 13px 26px; border-radius: 999px;
    border: 1px solid rgba(245,242,235,0.75); color: var(--eo-cream);
    font-size: 14px; transition: all 500ms;
  }
  .btn-outline:hover { background: var(--eo-cream); color: var(--eo-ink); transform: translateY(-2px); }
  .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

  /* HERO */
  .hero { position: relative; min-height: 100vh; overflow: hidden; }
  .hero img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  }
  .hero-mask {
    position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(20,15,12,0.95) 0%, rgba(20,15,12,0.78) 40%, rgba(20,15,12,0.55) 80%, rgba(20,15,12,0.4) 100%),
      radial-gradient(80% 60% at 20% 80%, rgba(200,90,60,0.18), transparent 70%);
  }
  .hero-inner {
    position: relative; z-index: 5;
    max-width: 1200px; margin: 0 auto; padding: 160px 24px 80px;
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  }
  .hero-eyebrow { color: rgba(245,242,235,0.85); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.02; letter-spacing: -0.01em;
    color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    margin-top: 20px; max-width: 800px;
  }
  .hero h1 em { color: rgba(245,242,235,0.95); font-weight: 300; }
  .hero p {
    max-width: 560px; margin-top: 28px; color: rgba(245,242,235,0.95);
    font-size: 1.05rem; line-height: 1.7; text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  }
  .hero-ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-ctas .btn-primary { padding: 14px 28px; }

  /* Section common */
  section { padding: 100px 0; }
  .section-head { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: end; margin-bottom: 56px; }
  .section-head h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
  .section-head p { color: var(--eo-ink-soft); }
  .divider {
    display: flex; align-items: center; gap: 16px;
    color: rgba(28,26,23,0.35); margin: 60px 0;
  }
  .divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(28,26,23,0.2); }
  .divider .dot { color: var(--eo-terracotta); font-size: 10px; }

  /* ABOUT */
  .about { background:
    radial-gradient(1200px 500px at 10% 0%, rgba(200,90,60,0.06), transparent 60%),
    radial-gradient(900px 400px at 90% 100%, rgba(46,79,63,0.05), transparent 60%);
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; max-width: 480px; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--eo-terracotta); }
  .stat-lbl { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--eo-ink-soft); margin-top: 6px; }
  .about-img { position: relative; }
  .about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--eo-border); }
  .quote-card {
    position: absolute; bottom: -30px; left: -30px;
    background: var(--eo-cream); border: 1px solid var(--eo-border);
    padding: 24px; max-width: 300px;
  }
  .quote-card p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem; line-height: 1.3; margin: 0; }
  .quote-card .cite { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--eo-ink-soft); margin-top: 16px; }

  /* PACKAGES */
  .packages { background: var(--eo-surface); }
  .pkg-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
  .pkg {
    display: block; overflow: hidden; border: 1px solid var(--eo-border);
    background: var(--eo-cream); transition: transform 500ms;
  }
  .pkg:hover { transform: translateY(-4px); }
  .pkg .thumb { overflow: hidden; }
  .pkg .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms; display: block; }
  .pkg:hover .thumb img { transform: scale(1.06); }
  .pkg-body { padding: 24px 28px; }
  .pkg-meta { display: flex; justify-content: space-between; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--eo-ink-soft); }
  .pkg-meta .dur { color: var(--eo-terracotta); }
  .pkg-title { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin: 10px 0; transition: color 500ms; }
  .pkg:hover .pkg-title { color: var(--eo-terracotta); }
  .pkg-desc { font-size: 0.9rem; color: var(--eo-ink-soft); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .pkg-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--eo-border); display: flex; justify-content: space-between; align-items: center; }
  .pkg-foot .label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--eo-ink-soft); }
  .arrow-btn {
    width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--eo-ink);
    display: grid; place-items: center; transition: all 500ms;
  }
  .pkg:hover .arrow-btn { background: var(--eo-terracotta); border-color: var(--eo-terracotta); color: #fff; }

  /* GALLERY */
  .gallery { }
  .gal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
  .gal-item { position: relative; overflow: hidden; border: 1px solid var(--eo-border); }
  .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms; display: block; }
  .gal-item:hover img { transform: scale(1.06); }
  .gal-mask { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%); }
  .gal-cap { position: absolute; bottom: 18px; left: 22px; color: var(--eo-cream); }
  .gal-cap .top { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.75; }
  .gal-cap .name { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; }

  /* TESTIMONIALS */
  .testimonials { background: var(--eo-indigo); color: var(--eo-cream); }
  .t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
  .t-item { border-left: 1px solid rgba(245,242,235,0.25); padding: 8px 28px; position: relative; }
  .t-item i.fa-quote-left { position: absolute; left: -18px; top: 0; color: var(--eo-terracotta); font-size: 1.5rem; }
  .t-item blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.65rem; line-height: 1.35; margin: 0; }
  .t-item .cite { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,242,235,0.6); margin-top: 24px; }

  /* STORIES / BLOG */
  .stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
  .story .thumb { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--eo-border); }
  .story .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms; }
  .story:hover .thumb img { transform: scale(1.06); }
  .story .meta { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--eo-ink-soft); margin-top: 20px; }
  .story h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin: 12px 0 12px; transition: color 500ms; }
  .story:hover h3 { color: var(--eo-terracotta); }
  .story p { font-size: 0.9rem; color: var(--eo-ink-soft); line-height: 1.55; margin: 0; }

  /* CONTACT */
  .contact { background: var(--eo-cream); }
  .contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; }
  .contact h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-top: 12px; }
  .contact-lead { color: var(--eo-ink-soft); max-width: 400px; margin-top: 20px; line-height: 1.7; }
  .contact-list { margin-top: 40px; display: grid; gap: 20px; }
  .cl-item { display: flex; gap: 12px; align-items: flex-start; }
  .cl-icon {
    width: 36px; height: 36px; border-radius: 999px; background: rgba(200,90,60,0.12);
    display: grid; place-items: center; color: var(--eo-terracotta); font-size: 14px; flex: none;
  }
  .cl-icon.jade { background: rgba(46,79,63,0.15); color: var(--eo-jade); }
  .cl-lbl { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--eo-ink-soft); }
  .cl-val { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
  .cl-val:hover { color: var(--eo-terracotta); }
  .cl-item.wa .cl-val:hover { color: var(--eo-jade); }

  form.enquiry {
    background: var(--eo-surface); border: 1px solid var(--eo-border);
    padding: 40px; align-self: flex-start;
  }
  form.enquiry h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; margin-top: 6px; }
  form.enquiry .sub { font-size: 0.9rem; color: var(--eo-ink-soft); margin-top: 8px; }
  .fields { display: grid; gap: 20px; margin-top: 32px; }
  .field label span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--eo-ink-soft); display: block; }
  .field input {
    width: 100%; padding: 12px 14px; margin-top: 8px;
    background: var(--eo-cream); border: 1px solid var(--eo-border);
    color: var(--eo-ink); font-family: inherit; font-size: 0.95rem;
    outline: none; transition: border-color 300ms, box-shadow 300ms;
  }
  .field input:focus {
    border-color: var(--eo-terracotta);
    box-shadow: 0 0 0 3px rgba(200,90,60,0.15);
  }
  .form-foot { margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .form-foot p { font-size: 0.75rem; color: var(--eo-ink-soft); max-width: 320px; margin: 0; }

  /* FOOTER */
  footer { background: var(--eo-indigo); color: var(--eo-cream); margin-top: 80px; }
  .f-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px 40px; }
  .f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-top: 48px; }
  .f-brand { display: flex; align-items: center; gap: 12px; }
  .f-brand-mark { width: 44px; height: 44px; border-radius: 999px; background: var(--eo-terracotta); color: var(--eo-cream); display: grid; place-items: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 26px; }
  .f-brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 34px; }
  .brand-mark { object-fit: cover; } 
  .f-copy { color: rgba(245,242,235,0.7); max-width: 400px; line-height: 1.7; margin-top: 20px; }
  .f-col-title { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,242,235,0.6); }
  .f-col ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; color: rgba(245,242,235,0.85); }
  .f-col ul li a:hover { color: var(--eo-terracotta); }
  .f-col ul li i { margin-right: 8px; color: rgba(245,242,235,0.7); }
  .socials { margin-top: 20px; display: flex; gap: 12px; }
  .socials a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(245,242,235,0.25); display: grid; place-items: center; transition: all 400ms; }
  .socials a:hover { background: var(--eo-terracotta); border-color: var(--eo-terracotta); }
  .f-bot { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(245,242,235,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(245,242,235,0.55); }

  /* Toast */
  .toast {
    position: fixed; top: 20px; right: 20px; z-index: 100;
    background: #fff; color: var(--eo-ink); border: 1px solid var(--eo-border);
    padding: 14px 18px; border-radius: 6px; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
    display: none; max-width: 340px; font-size: 0.9rem;
  }
  .toast.show { display: block; animation: slideIn 300ms ease-out; }
  .toast .t-title { font-weight: 600; color: var(--eo-jade); }
  .toast .t-desc { font-size: 0.8rem; color: var(--eo-ink-soft); margin-top: 4px; }
  @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

  /* WhatsApp floating */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 40;
    width: 56px; height: 56px; border-radius: 999px;
    background: #25D366; color: #fff;
    display: grid; place-items: center; font-size: 26px;
    box-shadow: 0 12px 28px -8px rgba(37,211,102,0.5);
    transition: transform 300ms;
  }
  .wa-float:hover { transform: translateY(-4px) scale(1.05); }

  /* Responsive */
  @media (max-width: 900px) {
    .nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav.open .nav-links {
      display: flex; flex-direction: column; gap: 16px;
      position: absolute; top: 76px; left: 0; right: 0;
      background: rgba(245,242,235,0.95); backdrop-filter: blur(18px);
      padding: 24px; border-bottom: 1px solid var(--eo-border);
    }
    .nav.open .nav-links a { color: var(--eo-ink); text-shadow: none; }
    section { padding: 70px 0; }
    .section-head, .about-grid, .contact-grid, .f-grid { grid-template-columns: 1fr; gap: 24px; }
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg { grid-column: auto !important; }
    .gal-grid { grid-template-columns: repeat(2,1fr); }
    .gal-item { grid-column: auto !important; }
    .gal-item img { aspect-ratio: 1; }
    .t-grid, .stories-grid { grid-template-columns: 1fr; }
    .quote-card { position: static; margin-top: 20px; }
    form.enquiry { padding: 24px; }
  }
