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

:root {
  --ink:        #0c0b0a;
  --ink-soft:   #3a3530;
  --muted:      #7a746c;
  --cream:      #f6f2eb;
  --cream-dark: #ede8df;
  --rule:       #ddd8cf;
  --gold:       #b8916a;
  --gold-light: #d4b08a;
  --white:      #ffffff;

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h:      72px;
  --max-w:      1160px;
  --gutter:     clamp(1.25rem, 5vw, 3rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: normal;
  font-weight: 400;
}

.section-lede {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(12, 11, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.65rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  object-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-img img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  animation: heroFade 1.4s ease both;
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 2.75rem;
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ─── PHILOSOPHY ────────────────────────────────────────────── */
.philosophy {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-imgs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.philosophy-img {
  overflow: hidden;
  width: 100%;
}

.philosophy-imgs .philosophy-img:first-child {
  aspect-ratio: 4 / 5;
}

.philosophy-imgs .philosophy-img:last-child {
  aspect-ratio: 4 / 3;
}

.philosophy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.philosophy-img:hover img {
  transform: scale(1.03);
}

.philosophy-text {
  padding: 2rem 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── GALLERY STRIP ─────────────────────────────────────────── */
.gallery-strip {
  background: var(--ink);
}

.gallery-viewport {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  height: clamp(260px, 38vw, 480px);
  width: max-content;
}

.gallery-item {
  width: clamp(240px, 28vw, 420px);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.85);
  pointer-events: none;
}

/* ── Scrubber (desktop only) ── */
.gallery-scrubber {
  padding: 1.25rem var(--gutter);
  background: var(--ink);
}

.scrubber-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  border-radius: 3px;
}

.scrubber-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 6px;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.15s ease;
  pointer-events: none;
}

.scrubber-track:hover .scrubber-thumb {
  width: 64px;
}

@media (max-width: 600px) {
  .gallery-scrubber { display: none; }
}

/* ─── MENUS ─────────────────────────────────────────────────── */
.menus {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .section-lede {
  margin: 0 auto;
}

.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.menu-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  transition: background 0.3s;
}

.menu-card--featured {
  background: var(--ink);
}

.menu-card--featured .menu-tag {
  color: var(--gold-light);
  border-color: rgba(184, 145, 106, 0.4);
}

.menu-card--featured .menu-name,
.menu-card--featured .course-name {
  color: var(--white);
}

.menu-card--featured .menu-note,
.menu-card--featured .course-detail {
  color: rgba(255,255,255,0.45);
}

.menu-card--featured .course {
  border-bottom-color: rgba(255,255,255,0.1);
}

.menu-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.menu-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.menu-courses {
  display: flex;
  flex-direction: column;
}

.course {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}

.course:last-child {
  border-bottom: none;
}

.course-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.course-detail {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.menus-footnote {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── CLIENTS ───────────────────────────────────────────────── */
.clients {
  padding: 5rem 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.clients-inner {
  text-align: center;
}

.clients-text {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  line-height: 2.4;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── INQUIRY ───────────────────────────────────────────────── */
.inquire {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream);
}

.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.inquire-left {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
}

.inquire-details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.inquire-details p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.inquire-email {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.inquire-email:hover {
  color: var(--ink);
}

/* ─── FORM ──────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}

.form-row--half {
  flex-direction: row;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  color: var(--rule);
}

input,
select,
textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--rule);
}

input:focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a746c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.5rem;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.form-submit {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  border: none;
  padding: 1.1rem 3rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 3rem 0;
}

.form-success p {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 4rem 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-location {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ─── CALENDAR PICKER ───────────────────────────────────────── */
.field { position: relative; }

.cal-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  width: 300px;
  padding: 16px;
  border-radius: 4px;
}

.cal-popup.open { display: block; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-month-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
}

.cal-nav {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.2s;
}

.cal-nav:hover { color: var(--ink); }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.cal-days-header span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

.cal-day:hover { background: var(--cream-dark); }

.cal-day.selected {
  background: var(--ink);
  color: var(--white);
}

.cal-day.today {
  color: var(--gold);
  font-weight: 500;
}

.cal-day.past {
  color: var(--rule);
  cursor: default;
  pointer-events: none;
}

.cal-day.empty { pointer-events: none; }

.cal-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.cal-flexible {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cal-flexible:hover { color: var(--ink); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* NAV */
  .nav-logo { font-size: 1rem; }

  /* HERO */
  .hero-content { padding: 0 1.5rem; }
  .hero-sub { letter-spacing: 0.04em; }

  /* PHILOSOPHY */
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .philosophy-imgs { gap: 0.5rem; }

  .philosophy-imgs .philosophy-img:first-child {
    aspect-ratio: 4 / 3;
  }

  .philosophy-imgs .philosophy-img:last-child {
    aspect-ratio: 4 / 3;
  }

  .philosophy-text { padding: 0; }

  /* STATS */
  .stats { grid-template-columns: repeat(3, 1fr); }

  /* MENUS */
  .menus-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section-header { margin-bottom: 3rem; }

  /* INQUIRY */
  .inquire-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .inquire-left { position: static; }
}

@media (max-width: 600px) {

  /* HERO */
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.18em; }
  .hero-sub { font-size: 0.78rem; margin-bottom: 2rem; }
  .hero-btn { padding: 0.9rem 2rem; font-size: 0.62rem; }
  .hero-scroll { display: none; }

  /* PHILOSOPHY */
  .philosophy { padding: 4rem 0; }

  .philosophy-imgs .philosophy-img:first-child,
  .philosophy-imgs .philosophy-img:last-child {
    aspect-ratio: 3 / 2;
  }

  .section-heading { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* STATS */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .stat-number { font-size: 2rem; }

  /* GALLERY */
  .gallery-track { height: 200px; }
  .gallery-item { width: 220px; }
  .gallery-scrubber { display: none; }

  /* MENUS */
  .menus { padding: 4rem 0; }
  .menu-card { padding: 2rem 1.5rem; }
  .menu-name { font-size: 1.5rem; }

  /* CLIENTS */
  .clients { padding: 3.5rem 0; }
  .clients-text { font-size: 0.82rem; letter-spacing: 0.06em; line-height: 2.2; }

  /* INQUIRY */
  .inquire { padding: 4rem 0; }

  .form-row--half {
    flex-direction: column;
    gap: 0;
  }

  .form-submit {
    width: 100%;
    text-align: center;
    padding: 1.1rem 2rem;
  }

  .inquire-details { margin-top: 2rem; padding-top: 1.5rem; }

  /* FOOTER */
  .footer { padding: 3rem 0; }
}
