@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

/* -------------------- RESET & BASE -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --navy: #0B1026;
  --navy-deep: #101A3A;
  --ivory: #FAF7F2;
  --sand: #F1ECE4;
  --charcoal: #2E2E2E;
  --grey-green: #6B7A72;
  --lavender: #BBAACC;
  --gold: #C9A24A;
  --gold-text: #8A6A12;
  --champagne: #E8D8A6;
  --white: #FFFFFF;
  --border: #E5DDD0;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing (8pt) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 16, 38, 0.06), 0 1px 2px rgba(11, 16, 38, 0.04);
  --shadow-md: 0 6px 16px rgba(11, 16, 38, 0.08), 0 2px 6px rgba(11, 16, 38, 0.04);
  --shadow-lg: 0 16px 32px rgba(11, 16, 38, 0.10), 0 4px 12px rgba(11, 16, 38, 0.06);
  --shadow-xl: 0 32px 64px rgba(11, 16, 38, 0.12), 0 8px 24px rgba(11, 16, 38, 0.08);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --max-width: 1280px;
  --gutter: var(--space-5);
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* -------------------- ACCESSIBILITY -------------------- */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 1000;
  padding: var(--space-3) var(--space-5);
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-4);
}

/* -------------------- LAYOUT WRAPPER -------------------- */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* -------------------- HEADER -------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 16, 38, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-5);
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand__logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Navigation */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
}

.nav__list a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--champagne);
  transition: color 0.2s;
  position: relative;
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__list a:hover {
  color: var(--white);
}

.nav__list a:hover::after {
  width: 100%;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--champagne);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--gold);
}

.icon-btn--cart {
  position: relative;
}

.icon-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header CTA */
.site-header .header__cta {
  display: none;
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle__bars {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
}

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

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

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--header-height);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(11, 16, 38, 0.8) 0%,
    rgba(11, 16, 38, 0.6) 50%,
    rgba(11, 16, 38, 0.9) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: var(--space-8) var(--gutter);
  text-align: center;
}

.overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.overline--champagne {
  color: var(--champagne);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero__lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.hero__meta span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero__scroll-label {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* -------------------- DIVIDERS -------------------- */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin-block: var(--space-7);
}

.divider--ivory {
  background: rgba(255, 255, 255, 0.1);
}

/* -------------------- SECTION BASE -------------------- */
.section {
  padding-block: var(--space-8);
}

.section--ivory {
  background: var(--ivory);
}

.section--sand {
  background: var(--sand);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--space-7);
}

.section__head .overline {
  margin-bottom: var(--space-3);
  color: var(--gold-text);
}

.section__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--grey-green);
  max-width: 640px;
}

.section--navy .section__intro {
  color: rgba(255, 255, 255, 0.7);
}

/* -------------------- MANIFEST -------------------- */
.manifest {
  position: relative;
}

.manifest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

.manifest__text {
  /* text side */
}

.lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-5);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--gold-text);
  transition: gap 0.2s, color 0.2s;
}

.link-arrow::after {
  content: '→';
  font-size: 1.2em;
  transition: transform 0.2s;
}

.link-arrow:hover {
  gap: var(--space-3);
  color: var(--navy);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.manifest__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.manifest__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.manifest__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 16, 38, 0.3), transparent 60%);
  pointer-events: none;
}

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.facts__item {
  text-align: left;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
}

.facts__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-bottom: var(--space-1);
}

.facts__label {
  font-size: 0.875rem;
  color: var(--grey-green);
  letter-spacing: 0.02em;
}

/* -------------------- SERVICES -------------------- */
.services {
  /* container */
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: var(--space-2);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--grey-green);
  margin-bottom: var(--space-4);
  flex: 1;
}

.card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.75rem;
  color: var(--grey-green);
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: auto;
}

.card__facts span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.card__facts span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.card--feature {
  /* on desktop, horizontal layout */
}

/* Tertiary links */
.tertiary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.tertiary__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: color 0.2s, gap 0.2s;
}

.tertiary__link::after {
  content: '→';
  transition: transform 0.2s;
}

.tertiary__link:hover {
  color: var(--gold-text);
  gap: var(--space-3);
}

.tertiary__link:hover::after {
  transform: translateX(4px);
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.testimonials__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.testimonials__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding-block: var(--space-9);
}

.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: var(--space-6);
  position: relative;
  quotes: "“" "”" "‘" "’";
}

.featured-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: var(--space-2);
}

.featured-quote__meta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--champagne);
  font-style: normal;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-7);
  text-align: left;
}

.quote-strip__item {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 320px;
  position: relative;
  padding-left: var(--space-5);
}

.quote-strip__item::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.quote-strip__by {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.75rem;
  color: var(--champagne);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* -------------------- SHOP / GIFT VOUCHER -------------------- */
.shop {
  /* container */
}

.shop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

.shop__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.shop__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.shop__body {
  padding: var(--space-4) 0;
}

.shop__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

/* -------------------- RESPONSIVE -------------------- */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-9);
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .card--feature {
    grid-column: span 2;
  }

  .quote-strip {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-7);
  }

  .shop__grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifest__grid {
    gap: var(--space-8);
  }
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .site-header .header__cta {
    display: inline-flex;
  }

  .manifest__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .card--feature {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  .card--feature .card__media {
    height: 100%;
  }

  .card--feature .card__body {
    padding: var(--space-6);
  }
}

@media (max-width: 991px) {
  .site-header .wrap {
    padding-inline: var(--space-4);
  }

  .header__bar {
    gap: var(--space-3);
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: var(--space-6);
  }

  .hero__title {
    font-size: clamp(3rem, 5vw, 5.5rem);
  }
}

/* -------------------- SCROLL-DRIVEN ANIMATIONS -------------------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section {
      animation: fadeUp both;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }

    .card {
      animation: fadeUp both;
      animation-timeline: view();
      animation-range: entry 0% entry 20%;
    }

    .manifest__figure {
      animation: fadeInScale both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    .shop__figure {
      animation: fadeInScale both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    .featured-quote {
      animation: fadeUp both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    .facts__item {
      animation: fadeUp both;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}