  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --forest: #1D2B44; /* Blue */
    --forest-deep: #131D2E; /* Dark Blue (derived from #1D2B44) */
    --saffron: #321d0e; /* Brown */
    --saffron-light: #a78454; /* Light Brown */
    --cream: #FFFFFF; /* White */
    --cream-mid: #F3F4F6; /* Light Gray for slight contrast */
    --white: #FFFFFF;
    --slate: #4A5568;
    --slate-light: #718096;
    --charcoal: #1A1A1A;
    --gold-line: #a78454; /* Light Brown */
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
  
  /* ── GLOBAL TYPOGRAPHY ── */
  h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .page-hero h1 {
    font-family: 'Playfair Display', serif !important;
  }
  p, .section-body, .hero-sub, .page-hero-sub {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: var(--slate);
  }
  
  .team-card h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    color: var(--forest) !important;
    margin-bottom: 5px;
  }
  
  .team-role {
    color: var(--saffron) !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 15px;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.04em;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
  .topbar a:hover { color: var(--saffron); }
  .topbar-left { display: flex; gap: 24px; }
  .topbar-icon { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); text-decoration: none; }
  .topbar-icon svg { position: relative; top: 1px; }
  .topbar-right { display: flex; gap: 16px; align-items: center; }
  .topbar-right a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -0.01em;
  }
  .logo-tagline {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-top: 3px;
  }
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--saffron);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 2px;
    font-size: 12px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--saffron) !important; color: var(--white) !important; }
  .nav-cta::after { display: none !important; }

  /* ── DROPDOWN ── */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 101;
    top: 100%;
    left: 0;
    border-radius: 2px;
  }
  .dropdown-content a {
    color: var(--slate);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
  }
  .dropdown-content a::after {
    display: none;
  }
  .dropdown-content a:hover {
    background-color: var(--cream-mid);
    color: var(--forest);
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hero-bg-panel {
    overflow: hidden;
    position: relative;
  }
  .hero-bg-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72) saturate(0.9);
    transition: transform 8s ease;
  }
  .hero-bg-panel:hover img { transform: scale(1.04); }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, rgb(7 17 13 / 67%) 0%, rgb(3 7 5 / 65%) 50%, rgb(7 9 8 / 79%) 100%)
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: #a78454;
  }
  .hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a78454;
    font-weight: 500;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 780px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--saffron-light);
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #a78454;
    color: var(--white);
    padding: 15px 34px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--saffron-light); transform: translateY(-2px); }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: border-color 0.25s, background 0.25s;
    cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--saffron); background: rgba(200,148,58,0.12); }
  .hero-stats {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero-stat {
    text-align: right;
  }
  .hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--saffron-light);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
  }

  /* ── MARQUEE ── */
  .marquee-bar {
    background: #a78454;
    padding: 14px 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 32px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
  }
  .marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── ABOUT ── */
  .about {
    padding: 112px 0;
    background: var(--white);
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image-group {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }
  .about-img-inset {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 48%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--white);
    border-radius: 2px;
  }
  .about-badge {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--forest);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
    border-radius: 2px;
  }
  .about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--saffron-light);
    line-height: 1;
    display: block;
  }
  .about-badge-text {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    display: block;
  }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  .section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--saffron);
  }
  .section-eyebrow span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; color: #a78454; }
  .section-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 16px;
    font-weight: 300;
  }
  .about-mission {
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 3px solid var(--saffron);
    background: var(--cream);
    border-radius: 0 2px 2px 0;
  }
  .about-mission p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: var(--forest);
    font-weight: 300;
  }
  .btn-forest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--white);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
    margin-top: 32px;
    cursor: pointer;
    border: none;
  }
  .btn-forest:hover { background: var(--saffron); transform: translateY(-2px); }
  .arrow-icon { font-size: 16px; }

  /* ── WHY CHOOSE ── */
  .why {
    padding: 112px 0;
    background: var(--cream);
  }
  .why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .why-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate);
    font-weight: 300;
  }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(27,58,45,0.12);
    border-bottom-color: var(--saffron);
  }
  .why-card-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
  }
  .why-globe-icon { color: var(--white); }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
  }
  .why-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate);
    font-weight: 300;
  }
  .why-card-highlight {
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--saffron);
    font-weight: 600;
    text-transform: uppercase;
  }
  .why-card-wide {
    grid-column: span 2;
    background: var(--forest);
  }
  .why-card-wide h3 { color: var(--white); }
  .why-card-wide p { color: rgba(255,255,255,0.72); }
  .why-card-wide .why-card-highlight { color: var(--saffron-light); }
  .why-card-highlight .highlight-star { color: var(--white); }

  /* ── PRODUCT CATEGORIES ── */
  .products {
    padding: 112px 0;
    background: var(--forest);
  }
  .products .section-title { color: var(--white); }
  .products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .products-intro { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); font-weight: 300; }
  .product-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .product-cat {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .product-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.65) saturate(0.85);
  }
  .product-cat:hover img { transform: scale(1.06); filter: brightness(0.75) saturate(1); }
  .product-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,42,32,0.92) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    transition: background 0.3s;
  }
  .product-cat:hover .product-cat-overlay {
    background: linear-gradient(to top, rgba(18,42,32,0.96) 0%, rgba(18,42,32,0.2) 100%);
  }
  .product-cat-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a78454;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .product-cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .product-cat-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    font-weight: 300;
  }
  .product-cat:hover .product-cat-desc { opacity: 1; transform: translateY(0); }

  /* ── AAMA ORIGINS ── */
  .aama {
    padding: 0;
    background: var(--cream);
    overflow: hidden;
  }
  .aama-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
  }
  .aama-image {
    position: relative;
    overflow: hidden;
  }
  .aama-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .aama-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
  }
  .aama-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 48px;
    background: var(--cream);
  }
  .aama-brand {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron);
    background: rgba(200,148,58,0.1);
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
    width: fit-content;
  }
  .products-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
  }
  .product-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--cream-mid);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--forest-deep);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }
  .product-pill:hover { 
    background: var(--white); 
    border-color: var(--saffron-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .product-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron-light);
  }
  .product-pill-icon svg {
    width: 20px;
    height: 20px;
  }

  /* ── CRUISE ── */
  .cruise {
    padding: 112px 0;
    background: var(--white);
  }
  .cruise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .cruise-image-stack {
    position: relative;
    height: 540px;
  }
  .cruise-img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 75%;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.85);
  }
  .cruise-img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 55%;
    object-fit: cover;
    border-radius: 2px;
    border: 6px solid var(--white);
  }
  .cruise-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px;
  }
  .cruise-cat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 2px;
    cursor: default;
    transition: background 0.2s;
  }
  .cruise-cat-item:hover { background: var(--cream); }
  .cruise-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
  }
  .cruise-cat-text {
    font-size: 14px;
    color: var(--slate);
    font-weight: 400;
  }

  /* ── SUSTAINABILITY ── */
  .sustain {
    padding: 112px 0;
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
  }
  .sustain::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(200,148,58,0.15);
    pointer-events: none;
  }
  .sustain::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(200,148,58,0.08);
    pointer-events: none;
  }
  .sustain .section-title { color: var(--white); }
  .sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .sustain-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
  }
  .sustain-pillar {
    padding: 28px;
    border: 1px solid rgba(200,148,58,0.2);
    border-radius: 2px;
    transition: border-color 0.3s, background 0.3s;
  }
  .sustain-pillar:hover {
    border-color: var(--saffron);
    background: rgba(200,148,58,0.05);
  }
  .sustain-pillar-icon {
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
  }
  .sustain-pillar h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }
  .sustain-pillar p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
  }
  .sustain-image {
    position: relative;
  }
  .sustain-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.7) saturate(0.8);
  }
  .sustain-image-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(18,42,32,0.85);
    backdrop-filter: blur(8px);
    padding: 20px 24px;
    border-radius: 2px;
    border-left: 3px solid var(--saffron);
  }
  .sustain-image-caption p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
  }

  /* ── GLOBAL REACH ── */
  .global {
    padding: 112px 0;
    background: var(--cream);
    text-align: center;
  }
  .global .section-title { margin: 0 auto 16px; }
  .global-sub {
    font-size: 15px;
    color: var(--slate);
    max-width: 540px;
    margin: 0 auto 64px;
    line-height: 1.7;
    font-weight: 300;
  }
  .regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 960px;
    margin: 0 auto 56px;
  }
  .region-card {
    background: var(--white);
    padding: 40px 24px;
    text-align: center;
    transition: background 0.3s;
    cursor: default;
  }
  .region-card:hover { background: var(--forest); }
  .region-card:hover .region-name { color: var(--white); }
  .region-card:hover .region-flag { transform: scale(1.1); }
  .region-flag { font-size: 36px; margin-bottom: 14px; display: block; transition: transform 0.3s; }
  .region-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--forest);
    transition: color 0.3s;
  }

  /* ── TESTIMONIAL / TRUST ── */
  .trust {
    padding: 100px 0;
    background: var(--saffron);
  }
  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 64px;
    align-items: center;
  }
  .trust-divider {
    background: rgba(255,255,255,0.3);
    height: 100%;
    min-height: 120px;
  }
  .trust-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    font-weight: 300;
  }
  .trust-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .trust-cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 300;
  }
  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--forest);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-white:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

  /* ── CONTACT STRIP ── */
  .contact-strip {
    padding: 80px 0;
    background: var(--white);
  }
  .contact-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
  }
  .contact-item {
    padding: 40px 36px;
    background: var(--cream);
    text-align: center;
    transition: background 0.3s;
  }
  .contact-item:hover { background: var(--cream-mid); }
  .contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream-mid);
    color: var(--saffron);
    border: 1px solid rgba(167, 132, 84, 0.35);
    transition: all 0.3s ease;
  }
  .contact-item:hover .contact-icon {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(167, 132, 84, 0.25);
  }
  .contact-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .contact-value {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--forest);
    font-weight: 600;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .footer-brand .logo-name { font-size: 22px; color: var(--white); }
  .footer-brand .logo-tagline { color: var(--saffron); margin-bottom: 16px; }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    font-weight: 300;
  }
  .footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
  }
  .footer-col ul li a:hover { color: var(--saffron); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }
  .footer-bottom span { color: rgba(255,255,255,0.35); }

  /* ── SCROLL ANIMATION ── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1024px) {
    /* Mobile Menu Logic */
    .menu-toggle { display: block; }
    .nav-links {
      position: absolute;
      top: 72px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: 30px 40px;
      gap: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      transition: clip-path 0.3s ease;
    }
    .nav-links.mobile-active {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-links li.dropdown .dropdown-content {
      position: static;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      padding-left: 15px;
      display: none;
      margin-top: 10px;
    }
    .nav-links li.dropdown:hover .dropdown-content,
    .nav-links li.dropdown:focus-within .dropdown-content,
    .nav-links li.dropdown:active .dropdown-content {
      display: flex;
    }

    .about-grid, .cruise-grid, .sustain-grid, .why-header, .products-header { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .why-card-wide { grid-column: span 1; }
    .product-cats { grid-template-columns: 1fr 1fr; }
    .regions { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-inner { grid-template-columns: 1fr; }
    .trust-divider { display: none; }
    .contact-strip-grid { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    .aama-grid { grid-template-columns: 1fr; }
    .about-img-inset { right: -16px; bottom: -16px; }
    .about-badge { left: 16px; }
  }
  @media (max-width: 768px) {
    .topbar { display: none; }
    .hero h1 { font-size: 36px; }
    .hero-sub { font-size: 14px; }
    .cards-grid { grid-template-columns: 1fr; }
    .product-cats { grid-template-columns: 1fr 1fr; }
    .regions { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .products-list { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
  }

  /* ── INNER PAGE HERO (breadcrumb style) ── */
  .page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -1px;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
  }
  .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.85);
  }
  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18,42,32,0.92) 0%, rgba(18,42,32,0.55) 65%, rgba(18,42,32,0.35) 100%);
  }
  .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 40px 64px;
    width: 100%;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
  }
  .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--saffron); }
  .breadcrumb-sep { color: rgba(255,255,255,0.3); }
  .breadcrumb-current { color: #f6f5f4; }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    max-width: 740px;
    letter-spacing: -0.02em;
  }
  .page-hero h1 em { font-style: italic; color: var(--saffron-light); }
  .page-hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-top: 18px;
    font-weight: 300;
  }

  /* ── STAT STRIP (reusable) ── */
  .stat-strip {
    background: var(--forest);
    padding: 0;
  }
  .stat-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-strip-item {
    padding: 44px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-strip-item:last-child { border-right: none; }
  .stat-strip-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--saffron-light);
    line-height: 1;
  }
  .stat-strip-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 10px;
  }

  /* ── TIMELINE (About page) ── */
  .timeline-section { padding: 112px 0; background: var(--cream); }
  .timeline { position: relative; max-width: 880px; margin: 64px auto 0; }
  .timeline::before {
    content: '';
    position: absolute;
    left: 130px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(200,148,58,0.3);
  }
  .timeline-row {
    display: grid;
    grid-template-columns: 100px 60px 1fr;
    align-items: start;
    margin-bottom: 48px;
    position: relative;
  }
  .timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    text-align: right;
    padding-top: 2px;
  }
  .timeline-dot-col { display: flex; justify-content: center; }
  .timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--saffron);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 1px rgba(200,148,58,0.4);
    margin-top: 4px;
  }
  .timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
  }
  .timeline-content p { font-size: 14px; line-height: 1.7; color: var(--slate); font-weight: 300; }

  /* ── VALUES GRID (About page) ── */
  .values-section { padding: 112px 0; background: var(--white); }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; background: var(--cream-mid); }
  .value-card { background: var(--white); padding: 44px 28px; transition: background 0.3s; }
  .value-card:hover { background: var(--cream); }
  .value-card-icon { font-size: 30px; margin-bottom: 18px; display: block; }
  .value-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
  .value-card p { font-size: 13px; line-height: 1.7; color: var(--slate); font-weight: 300; }

  /* ── TEAM (About page) ── */
  .team-section { padding: 112px 0; background: var(--cream); }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
  .team-card { text-align: center; }
  .team-card p:not(.team-role) { text-align: justify; }
  .team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; margin-bottom: 18px; filter: saturate(0.95); }
  .team-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
  .team-role { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }

  /* ── PRODUCTS PAGE: FILTER BAR ── */
  .filter-section { padding: 56px 0 0; background: var(--white); }
  .filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .filter-pill {
    padding: 10px 22px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--slate);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-pill:hover { border-color: var(--saffron); color: var(--forest); }
  .filter-pill.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

  /* ── PRODUCTS PAGE: PRODUCT GRID ── */
  .product-grid-section { padding: 64px 0 112px; background: var(--white); }
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .product-grid-item {
    display: none;
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .product-grid-item.show { display: block; }
  .product-grid-item:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,58,45,0.12); }
  .product-grid-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
  .product-grid-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .product-grid-item:hover .product-grid-img-wrap img { transform: scale(1.06); }
  .product-grid-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(18,42,32,0.85);
    color: var(--saffron-light);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
  }
  .product-grid-body { padding: 26px 26px 28px; }
  .product-grid-body h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
  .product-grid-body p { font-size: 13px; line-height: 1.7; color: var(--slate); font-weight: 300; margin-bottom: 16px; }
  .product-grid-link { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--saffron); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
  .product-grid-link:hover { color: var(--forest); }

  /* ── SOURCING PROCESS (Products page) ── */
  .process-section { padding: 112px 0; background: var(--forest-deep); }
  .process-section .section-title { color: var(--white); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
  .process-step { background: rgba(255,255,255,0.04); padding: 40px 28px; position: relative; }
  .process-step-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: rgba(200,148,58,0.35); line-height: 1; margin-bottom: 20px; }
  .process-step h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
  .process-step p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }

  /* ── AAMA: INGREDIENT SHOWCASE ── */
  .ingredient-showcase { padding: 112px 0; background: var(--cream); }
  .ingredient-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 64px; }
  .ingredient-card { text-align: center; }
  .ingredient-img-wrap { position: relative; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 18px; border: 3px solid var(--white); box-shadow: 0 10px 30px rgba(27,58,45,0.1); }
  .ingredient-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .ingredient-card:hover .ingredient-img-wrap img { transform: scale(1.08); }
  .ingredient-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--forest); }
  .ingredient-origin { font-size: 11px; color: var(--saffron); margin-top: 4px; font-weight: 500; }

  /* ── AAMA: CERTIFICATION BADGES ── */
  .cert-strip { padding: 64px 0; background: var(--forest); }
  .cert-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px; }
  .cert-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .cert-badge-icon { font-size: 32px; }
  .cert-badge-text { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 600; text-align: center; }

  /* ── AAMA: PACKAGING SHOWCASE ── */
  .packaging-section { padding: 0; background: var(--white); overflow: hidden; }
  .packaging-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 600px; }
  .packaging-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .packaging-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; background: var(--forest-deep); }
  .packaging-content .section-title { color: var(--white); }
  .packaging-content .section-body { color: rgba(255,255,255,0.65); }

  /* ── CRUISE: SERVICE TIMELINE (process) ── */
  .cruise-process { padding: 112px 0; background: var(--white); }
  .cruise-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
  .cruise-process-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(200,148,58,0.3);
  }
  .cruise-process-step { text-align: center; padding: 0 16px; position: relative; }
  .cruise-process-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--forest); color: var(--saffron-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px;
    margin: 0 auto 20px; position: relative; z-index: 2;
  }
  .cruise-process-step h4 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
  .cruise-process-step p { font-size: 12px; line-height: 1.6; color: var(--slate); font-weight: 300; }

  /* ── CRUISE: GALLERY ── */
  .cruise-gallery { padding: 0; background: var(--cream); }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: brightness(0.85) saturate(0.9); transition: transform 0.5s, filter 0.3s; }
  .gallery-grid > div { overflow: hidden; }
  .gallery-grid img:hover { transform: scale(1.06); filter: brightness(1) saturate(1); }

  /* ── CRUISE: PARTNER LOGOS STRIP ── */
  .partners-strip { padding: 56px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
  .partners-label { text-align: center; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 32px; }
  .partners-row { display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap; }
  .partner-mark { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--slate-light); opacity: 0.55; letter-spacing: 0.02em; transition: opacity 0.2s; }
  .partner-mark:hover { opacity: 1; color: var(--forest); }

  /* ── SUSTAINABILITY: METRICS ── */
  .metrics-section { padding: 112px 0; background: var(--white); }
  .metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; background: var(--cream-mid); }
  .metric-card { background: var(--white); padding: 48px 28px; text-align: center; }
  .metric-number { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--forest); line-height: 1; }
  .metric-number span { color: var(--saffron); }
  .metric-label { font-size: 12px; color: var(--slate); margin-top: 12px; line-height: 1.6; font-weight: 400; }

  /* ── SUSTAINABILITY: CERTIFICATIONS ── */
  .sustain-certs { padding: 112px 0; background: var(--cream); }
  .sustain-cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  .sustain-cert-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .sustain-cert-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,58,45,0.1); }
  .sustain-cert-icon { font-size: 36px; margin-bottom: 18px; display: block; }
  .sustain-cert-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
  .sustain-cert-card p { font-size: 13px; line-height: 1.7; color: var(--slate); font-weight: 300; }

  /* ── SUSTAINABILITY: GOALS PROGRESS ── */
  .goals-section { padding: 112px 0; background: var(--forest-deep); position: relative; overflow: hidden; }
  .goals-section .section-title { color: var(--white); }
  .goals-list { margin-top: 56px; display: flex; flex-direction: column; gap: 36px; max-width: 760px; }
  .goal-item { }
  .goal-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
  .goal-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--white); }
  .goal-pct { font-size: 13px; color: var(--saffron-light); font-weight: 600; }
  .goal-bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
  .goal-bar-fill { height: 100%; background: linear-gradient(90deg, var(--saffron), var(--saffron-light)); border-radius: 4px; width: 0; transition: width 1.4s cubic-bezier(0.22,1,0.36,1); }
  .goal-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 300; }

  /* ── GENERIC TWO COL TEXT/IMAGE (reused across pages) ── */
  .split-section { padding: 112px 0; background: var(--white); }
  .split-section.alt { background: var(--cream); }
  .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .split-grid.reverse { direction: rtl; }
  .split-grid.reverse > * { direction: ltr; }
  .split-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }

  /* ── WHATSAPP WIDGET ── */
  .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  /* ── GOOGLE TRANSLATE RESET ── */
  .goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    color: white !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
  }
  .goog-te-gadget-simple * {
    color: white !important;
  }
  .goog-te-gadget-simple .goog-te-menu-value span {
    color: white !important;
  }
  .goog-te-gadget-simple .goog-te-menu-value span:nth-child(5) {
    display: none;
  }
  .goog-te-banner-frame {
    display: none !important;
  }
  body {
    top: 0 !important;
  }

  @media (max-width: 1024px) {
    .stat-strip-grid { grid-template-columns: 1fr 1fr; }
    .stat-strip-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .values-grid, .process-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
    .packaging-grid { grid-template-columns: 1fr; }
    .cruise-process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cruise-process-grid::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .metrics-grid, .sustain-cert-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 100px; }
    .timeline-row { grid-template-columns: 80px 50px 1fr; }
  }
  @media (max-width: 768px) {
    .stat-strip-grid { grid-template-columns: 1fr 1fr; }
    .values-grid, .team-grid, .product-grid, .process-grid, .gallery-grid, .metrics-grid, .sustain-cert-grid { grid-template-columns: 1fr; }
    .ingredient-grid { grid-template-columns: 1fr 1fr; }
    .cruise-process-grid { grid-template-columns: 1fr; }
    .page-hero-content { padding: 120px 20px 48px; }
    .partners-row { gap: 32px; }
    .timeline-row { grid-template-columns: 60px 36px 1fr; }
    .timeline-year { font-size: 15px; }
  }
  /* ── CONTACT PAGE ── */
  .contact-main { padding: 112px 0; background: var(--white); }
  .contact-main-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }

  /* Contact form */
  .contact-form-wrap { background: var(--cream); padding: 48px; border-radius: 2px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .form-group label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 13px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px;
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--saffron); }
  .form-group textarea { resize: vertical; min-height: 120px; font-family: 'Inter', sans-serif; }
  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--white);
    padding: 15px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .form-submit:hover { background: var(--saffron); transform: translateY(-2px); }
  .form-note { font-size: 12px; color: var(--slate-light); margin-top: 16px; line-height: 1.6; text-align: center; }
  .form-success {
    display: none;
    background: var(--forest);
    color: var(--white);
    padding: 48px;
    border-radius: 2px;
    text-align: center;
  }
  .form-success.show { display: block; }
  .form-success-icon { font-size: 40px; margin-bottom: 16px; display: block; }
  .form-success h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
  .form-success p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }

  /* Contact info column */
  .contact-info-block { margin-bottom: 40px; }
  .contact-info-block:last-child { margin-bottom: 0; }
  .info-row {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .info-row:first-child { padding-top: 0; }
  .info-icon-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .info-row h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
  .info-row p { font-size: 14px; color: var(--slate); line-height: 1.6; font-weight: 300; }
  .info-row a { color: var(--slate); text-decoration: none; transition: color 0.2s; }
  .info-row a:hover { color: var(--saffron); }

  .map-embed-wrap {
    margin-top: 32px;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    background: var(--forest-deep);
  }
  .map-embed-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.7); }
  .map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
  }
  .map-pin-icon { font-size: 34px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }
  .map-pin-label {
    background: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: var(--forest);
    margin-top: 4px;
    white-space: nowrap;
  }

  /* Offices grid */
  .offices-section { padding: 112px 0; background: var(--cream); }
  .offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  .office-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .office-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(27,58,45,0.1); }
  .office-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
  .office-card-body { padding: 28px 26px; }
  .office-card-tag {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--saffron); font-weight: 600; margin-bottom: 10px; display: block;
  }
  .office-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
  .office-card p { font-size: 13px; color: var(--slate); line-height: 1.7; font-weight: 300; }

  /* Department directory */
  .directory-section { padding: 112px 0; background: var(--white); }
  .directory-list { margin-top: 56px; display: flex; flex-direction: column; }
  .directory-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 26px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: background 0.2s;
  }
  .directory-row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
  .directory-row:hover { background: var(--cream); }
  .directory-dept { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--forest); }
  .directory-contact { font-size: 13px; color: var(--slate); font-weight: 400; }
  .directory-email { font-size: 13px; color: var(--saffron); font-weight: 500; text-decoration: none; }
  .directory-email:hover { color: var(--forest); }
  .directory-arrow { color: var(--slate-light); font-size: 16px; }

  /* FAQ accordion */
  .faq-section { padding: 112px 0; background: var(--cream); }
  .faq-list { max-width: 800px; margin: 56px auto 0; }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 4px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest);
  }
  .faq-toggle { font-size: 20px; color: var(--saffron); transition: transform 0.3s; flex-shrink: 0; margin-left: 20px; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .faq-item.open .faq-answer { max-height: 240px; padding-bottom: 26px; }
  .faq-answer p { font-size: 14px; line-height: 1.75; color: var(--slate); font-weight: 300; padding-right: 40px; }

  @media (max-width: 1024px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .directory-row { grid-template-columns: 1fr 1fr; row-gap: 8px; }
    .directory-arrow { display: none; }
  }
  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 28px; }
    .directory-row { grid-template-columns: 1fr; }
  }
