:root{
  --bg:#FAF8F4;
  --card:#FFFFFF;
  --text:#2B2B2B;
  --muted:#6F6D66;
  --line:#E3DED7;
  --accent:#B56B4A;
  --olive:#A19F93;

  --radius:18px;
  --shadow:0 18px 48px rgba(43,43,43,.10);

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  --font-sans: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Tracking */
  --track-title: 0.16em;     /* generous spaced caps */
  --track-kicker: 0.28em;    /* even more spaced */
  --track-body: 0.015em;     /* tight but calm */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;               /* slow-read */
  letter-spacing: var(--track-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:inherit;text-decoration:none}
.container{
  max-width:1100px;
  margin:0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}


/* =========================
   NAV / HEADER (logo-ready)
   ========================= */

header.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,244,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(227,222,215,.70);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  /* vertical padding stays exactly as you designed */
  padding-top: 22px;
  padding-bottom: 22px;

  /* NEW: horizontal buffer */
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);

  transition: padding 300ms ease;
}

.brand{
  display:flex;
  align-items:center;
  line-height:1;
}

.brand-logo{
  height: 54px;                   /* BIG, confident start */
  width: auto;
  display:block;
  transition: height 300ms ease;
}

/* Compact state (JS adds .is-scrolled to header.nav) */
header.nav.is-scrolled .nav-inner{
  padding: 12px 0;
}
header.nav.is-scrolled .brand-logo{
  height: 30px;                   /* still premium, not tiny */
}

/* =========================
   NAV LINKS
   ========================= */

nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(43,43,43,.84);

  padding: 9px 12px;
  border-radius: 999px;
  transition: background 160ms ease, opacity 160ms ease;
}

nav a:hover{
  background: rgba(227,222,215,.55);
}

nav a.cta{
  background: var(--text);
  color:#fff;
  border:1px solid var(--text);
}
nav a.cta:hover{opacity:.92}

/* Mobile */
@media (max-width: 700px){
  .nav-inner{padding:18px 0}
  header.nav.is-scrolled .nav-inner{padding:10px 0}
  .brand-logo{height:46px}
  header.nav.is-scrolled .brand-logo{height:28px}
}

/* =========================
   TYPOGRAPHY SYSTEM
   ========================= */

/* Editorial titles: ALL CAPS + spacing */
h1, h2, h3, .display{
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-title);
  line-height: 1.15;
}

h2{
  margin: 12px 0 14px;
  font-size: 26px;
}

h3{
  margin: 10px 0 10px;
  font-size: 18px;
}

/* Kicker: small, spaced caps */
.kicker{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: var(--track-kicker);
  text-transform: uppercase;
  color: rgba(43,43,43,.55);
}

/* Body */
p{
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: var(--track-body);
  color: rgba(43,43,43,.74);
}

/* Helper */
.muted{
  color: rgba(43,43,43,.62);
}

/* Underlined editorial link */
.text-link{
  display:inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(43,43,43,.25);
  padding-bottom: 2px;
}
.text-link:hover{border-bottom-color: rgba(43,43,43,.55)}

/* =========================
   HERO (crossfade)
   ========================= */

.hero{
  position: relative;
  min-height: 74vh;
  overflow: hidden;
}

.hero-media{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transition: opacity 900ms ease;
  filter: saturate(1.02) contrast(1.02);
}
.hero-media.is-active{opacity:1}

/* =========================
   QUOTES — centered editorial
   ========================= */

.quotes-wrap{
  padding: 120px 0 64px; /* top | sides | bottom */
}

.quote{
  margin: 0 auto;
  max-width: 880px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo above quote */
.quote-logo{
  width: 68px;              /* bigger */
  height: 68px;
  margin-bottom: 36px;      /* more air above quote */

  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}


/* Logo fills circle */
.quote-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Initial fallback */
.quote-initial{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43,43,43,.7);
  background: rgba(43,43,43,.05);
}

/* Quote text */
.quote-text{
  font-family: var(--font-serif);
  font-style: italic;

  font-size: 24px;          /* 👈 larger, editorial */
  line-height: 1.75;        /* slower, calmer */
  letter-spacing: 0.035em;

  color: rgba(43,43,43,.92);

  max-width: 42ch;          /* wider reading column */
  margin: 0 0 28px;
}

/* Client name */
.quote-meta{
  font-family: var(--font-sans);
  font-size: 12px;          /* up from 11px */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(43,43,43,.58);
}

/* Mobile */
@media (max-width: 700px){
  .quotes-wrap{
    padding: 72px 0 40px;
  }

  .quote-text{
    font-size: 16px;
    max-width: 100%;
  }
}

/* =========================
   SECTIONS / CARDS
   ========================= */

.section{
  padding: 72px 0;               /* more negative space overall */
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px){
  .grid-2{grid-template-columns:1fr}
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

/* =========================
   About / Single-image editorial split
   ========================= */

.about-split{
  padding: 80px 0 120px;
}

.about-split-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* image dominates */
  gap: 80px;
  align-items: center;
}

/* Large hero-style image */
.about-img-hero{
  height: 560px;
  width: 100%;
  background-size: cover;
  background-position: center;

  /* Clean editorial look */
  border: none;
  border-radius: 0;
  box-shadow: none;
}


/* Right column text tuning */
.about-right .display{
  margin-bottom: 24px;
}

.about-right .prose p{
  max-width: 56ch;
}

/* Editorial paragraph spacing for About section */
.prose p{
  margin-bottom: 22px; /* creates calm, readable gaps */
}

.prose p:last-child{
  margin-bottom: 0;
}

/* Space between About copy and CTA */
.prose + .text-link{
  margin-top: 28px;
}

/* Mobile */
@media (max-width: 900px){
  .about-split{
    padding: 56px 0 80px;
  }

  .about-split-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-hero{
    height: 380px;
  }
}

/* =========================
   PACKAGES / SERVICES — editorial chapters
   ========================= */

.packages{
  padding: 120px 0;
}

.packages-head{
  max-width: 920px;
  margin: 0 auto 80px;
  text-align: center;
}

.packages-intro{
  margin: 18px auto 0;
  max-width: 58ch;
  color: rgba(43,43,43,.70);
}

/* Chapter layout */
.package-chapter{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;

  margin: 0 0 120px;
}

.package-chapter:last-child{
  margin-bottom: 0;
}

.package-chapter--reverse{
  grid-template-columns: 1fr 1.15fr;
}

.package-chapter--reverse .package-media{
  order: 2;
}

.package-media{
  height: 560px;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Titles */
.package-title{
  margin: 0 0 18px;
  font-size: 22px;
}

.package-desc{
  margin: 0 0 28px;
  max-width: 56ch;
}

/* Formats (minimal, scannable) */
.formats{
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.formats--two{
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.format-title{
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43,43,43,.84);
  margin-bottom: 8px;
}

.format-desc{
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: var(--track-body);
  color: rgba(43,43,43,.70);
}

/* Conference core structure */
.structure{
  margin: 18px 0 28px;
  padding: 18px 0;
}

.structure-label{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(43,43,43,.55);
  margin-bottom: 14px;
}

.structure-line{
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(43,43,43,.72);
}

.structure-note{
  color: rgba(43,43,43,.55);
}

/* Scroll reveal (subtle) */
[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px){
  .packages{ padding: 80px 0; }
  .packages-head{ margin-bottom: 48px; }

  .package-chapter,
  .package-chapter--reverse{
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }

  .package-chapter--reverse .package-media{
    order: 0;
  }

  .package-media{
    height: 360px;
  }

  .formats--two{
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   GALLERY — scrolling marquee strip
   ========================= */

.gallery-strip{
  padding: 56px 0 96px;
}

.gallery-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* subtle edge fade (editorial) */
.gallery-marquee::before,
.gallery-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 80px;
  z-index: 2;
  pointer-events:none;
  background: linear-gradient(to right, var(--bg), rgba(250,248,244,0));
}
.gallery-marquee::after{
  right:0;
  transform: rotate(180deg);
}
.gallery-marquee::before{
  left:0;
}

/* the moving track */
.gallery-track{
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;

  animation: galleryScroll 36s linear infinite;
}

/* pause animation when hovering anywhere over the marquee */
.gallery-marquee:hover .gallery-track{
  animation-play-state: paused;
}

@keyframes galleryScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* because we duplicated items */
}

/* each image tile */
.gallery-item{
  width: 340px;
  height: 240px;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;

  transform: scale(1);
  transition: transform 220ms ease, filter 220ms ease;
  filter: saturate(1) contrast(1);
}

/* hover effect: slight enlargement + subtle clarity */
.gallery-item:hover{
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
  z-index: 3;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .gallery-track{
    animation: none;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 700px){
  .gallery-strip{ padding: 40px 0 72px; }
  .gallery-item{
    width: 260px;
    height: 190px;
  }
  .gallery-marquee::before,
  .gallery-marquee::after{
    width: 42px;
  }
}

/* =========================
   CTA AFTER PACKAGES
   ========================= */

.cta-after-packages{
  background: #FFFFFF; /* calm, editorial contrast */
  padding: 84px 0;
}

.cta-after-inner{
  max-width: 55ch; /* narrow editorial column */
}

.cta-title{
  margin-bottom: 26px;
}

.cta-copy p{
  margin: 0 0 18px;
}

.cta-copy .cta-line{
  margin: 0 0 22px;
}

.cta-after-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 26px;
  padding: 12px 18px;

  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.30);
  background: transparent;

  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;

  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.cta-after-button:hover{
  transform: translateY(-1px);
  border-color: rgba(43,43,43,.45);
  opacity: .92;
}

.cta-after-button:focus-visible{
  outline: 2px solid rgba(181,107,74,.55);
  outline-offset: 4px;
}

@media (max-width: 900px){
  .cta-after-packages{
    padding: 64px 0;
  }
}

/* =========================
   MENU DOWNLOAD BUTTON
   ========================= */

.menu-download{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 14px;
  padding: 12px 16px;

  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.30);
  background: transparent;

  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;

  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.menu-download:hover{
  transform: translateY(-1px);
  border-color: rgba(43,43,43,.45);
  opacity: .92;
}

.menu-download:focus-visible{
  outline: 2px solid rgba(181,107,74,.55);
  outline-offset: 4px;
}

/* =========================
   CONTACT SECTION — calm endpoint
   ========================= */

.contact-section{
  padding: 96px 0 120px;
}

.contact-head{
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.contact-intro{
  margin: 18px auto 0;
  max-width: 62ch;
  color: rgba(43,43,43,.70);
}

/* Layout: details primary, socials secondary */
.contact-layout{
  max-width: 920px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 96px;
  align-items: start;
}

.contact-item{
  margin-bottom: 34px;
}

.contact-label{
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(43,43,43,.55);
  margin-bottom: 12px;
}

.contact-link{
  display: inline-block;

  /* Match address styling */
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: var(--track-body);
  color: rgba(43,43,43,.74);

  /* Keep clickable affordance */
  border-bottom: 1px solid rgba(43,43,43,.25);
  padding-bottom: 2px;
}

.contact-link:hover{
  border-bottom-color: rgba(43,43,43,.45);
}

.contact-link:hover{
  border-bottom-color: rgba(43,43,43,.40);
}

.contact-address{
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: var(--track-body);
  color: rgba(43,43,43,.74);
}

/* Social icons (secondary, no button styling) */
.social-icons{
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  opacity: .70;
  transition: opacity 160ms ease, transform 160ms ease;
}
.social-icon:hover{
  opacity: .95;
  transform: translateY(-1px);
}
.social-icon svg{
  width: 22px;
  height: 22px;
  fill: rgba(43,43,43,.85);
}

/* Social icon images */
.social-icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* Focus states (keyboard accessible) */
.contact-link:focus-visible,
.social-icon:focus-visible{
  outline: 2px solid rgba(181,107,74,.55);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 900px){
  .contact-section{ padding: 72px 0 96px; }
  .contact-head{ margin-bottom: 48px; }

  .contact-layout{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-link{
    font-size: 20px;
  }
}


/* =========================
   FOOTER
   ========================= */

.footer{
  border-top: 1px solid rgba(227,222,215,.8);
  padding: 18px 0 26px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.small{
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(43,43,43,.62);
}

.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a:hover{opacity:.82}

@media (max-width: 480px){
  body{
    overflow-x: hidden;
  }
}

/* =========================
   MOBILE NAV (Option A: dropdown panel)
   ========================= */

.site-nav{ position: relative; }

/* Hide hamburger on desktop */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43,43,43,.20);
  background: transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:focus-visible{
  outline: 2px solid rgba(181,107,74,.55);
  outline-offset: 4px;
}

/* Three lines */
.nav-toggle-lines{
  width: 18px;
  height: 2px;
  background: rgba(43,43,43,.78);
  display: block;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: rgba(43,43,43,.78);
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.nav-toggle-lines::before{ top:-6px; }
.nav-toggle-lines::after{ top: 6px; }

/* Ensure links sit inline on desktop */
.nav-menu{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile behaviour */
@media (max-width: 820px){
  /* Show hamburger */
  .nav-toggle{ display: inline-flex; }

  /* Hide links until opened */
  .nav-menu{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    padding: 12px;
    width: min(320px, calc(100vw - 32px));

    background: rgba(250,248,244,.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227,222,215,.9);
    box-shadow: 0 18px 48px rgba(43,43,43,.10);
    border-radius: 14px;
  }

  header.nav.is-menu-open .nav-menu{
    display: flex;
  }

  /* Make mobile links easy to tap */
  .nav-menu a{
    width: 100%;
    padding: 10px 10px;
    border-radius: 10px;
  }

  .nav-menu a:hover{
    background: rgba(227,222,215,.55);
  }

  /* Hamburger -> X */
  header.nav.is-menu-open .nav-toggle-lines{
    background: transparent;
  }
  header.nav.is-menu-open .nav-toggle-lines::before{
    top: 0;
    transform: rotate(45deg);
  }
  header.nav.is-menu-open .nav-toggle-lines::after{
    top: 0;
    transform: rotate(-45deg);
  }
}
