@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #2c2228;
  --rose: #b76e79;
  --rose-light: #d4a0a8;
  --rose-dark: #8f5560;
  --cream: #faf7f4;
  --blush: #f5ece8;
  --white: #ffffff;
  --muted: #7a6b72;
  --line: #e8dcd8;
  --gold: #c4a882;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  font-weight: 500;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 8px 18px;
  background: var(--ink);
  color: #b8a8ae;
  font-size: 0.72rem;
  font-weight: 600;
}

.demo-bar-label { text-transform: none; }

.demo-bar-back {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-bar-back:hover { background: var(--rose-dark); }

.site-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  margin-right: auto;
  text-align: left;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover { color: var(--ink); }

.header-call {
  padding: 11px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-call:hover { background: var(--rose-dark); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 8px 14px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Editorial hero */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.hero-editorial {
  padding: 72px clamp(20px, 5vw, 64px) 56px;
  text-align: center;
}

.booking-preview {
  padding: 32px clamp(20px, 5vw, 48px) 48px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.hero-visual-stack {
  display: flex;
  flex-direction: column;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.booking-preview h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.booking-preview > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.opening-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.opening-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.opening-list span { color: var(--muted); }

.opening-list b {
  font-weight: 700;
  color: var(--ink);
}

.booking-preview .button {
  width: 100%;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .hero-editorial {
    text-align: left;
    padding: 88px clamp(20px, 5vw, 64px);
  }

  .hero-editorial h1,
  .hero-editorial .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-editorial .button-row {
    justify-content: flex-start;
  }

  .booking-preview {
    border-top: none;
    border-left: none;
    padding: 48px clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }

  .hero-visual-stack {
    border-left: 1px solid var(--line);
  }

  .hero-photo {
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
  }
}

.hero-editorial .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-editorial h1 {
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero-editorial .lead {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-editorial .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.button-primary {
  background: var(--rose-dark);
  color: var(--white);
}

.button-primary:hover { background: var(--ink); }

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-outline:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
}

/* Hours strip */
.hours-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.hours-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-strip-item strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--rose-dark);
}

.hours-strip-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.first-visit-note {
  padding: 6px 14px;
  background: var(--blush);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* Menu highlights */
.menu-section {
  padding: 72px clamp(20px, 5vw, 64px);
}

.menu-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.menu-section-header p {
  color: var(--muted);
  margin-top: 12px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-item {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 34, 40, 0.08);
}

.menu-item-category {
  display: block;
  margin-bottom: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-item h3 { margin-bottom: 10px; }

.menu-item p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.price-hint {
  display: inline-block;
  padding: 8px 16px;
  background: var(--blush);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rose-dark);
}

.price-hint small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Atmosphere row */
.atmosphere-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.atmosphere-row--light .atmosphere-item {
  background: var(--white);
  color: var(--ink);
}

.atmosphere-row--light .atmosphere-item span {
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--rose-dark);
  background: var(--blush);
}

.atmosphere-item {
  padding: 36px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.atmosphere-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  stroke: var(--rose-light);
  fill: none;
  stroke-width: 1.5;
}

.atmosphere-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.atmosphere-item span {
  font-size: 0.78rem;
  color: #a8989e;
  line-height: 1.5;
}

/* Testimonial band */
.quote-band {
  padding: 64px clamp(20px, 5vw, 64px);
  text-align: center;
  background: var(--blush);
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 640px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.quote-band cite {
  display: block;
  margin-top: 20px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Studio showcase */
.studio-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.showcase-panel {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}

.showcase-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-caption {
  position: relative;
  z-index: 1;
  min-height: 16rem;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 35%, rgba(44, 34, 40, 0.72));
  color: var(--white);
}

.showcase-caption strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.showcase-caption span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Page hero */
.page-hero {
  padding: 64px clamp(20px, 5vw, 64px) 40px;
  text-align: center;
  background: var(--blush);
}

.page-hero p {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--muted);
}

.page-hero .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Services page - full menu */
.services-page {
  padding: 56px clamp(20px, 5vw, 64px) 72px;
  max-width: 800px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 56px;
}

.menu-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-category-header span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.menu-lines { display: grid; gap: 0; }

.menu-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line);
}

.menu-line h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.menu-line p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.menu-line .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rose-dark);
  white-space: nowrap;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px clamp(20px, 5vw, 64px) 72px;
  align-items: start;
}

.about-layout p { color: var(--muted); }

.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blush);
}

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

.team-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.team-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}

.team-note p {
  margin: 0;
  font-size: 0.92rem;
}

/* Contact - booking form */
.contact-section {
  padding: 56px clamp(20px, 5vw, 64px) 72px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info > p {
  color: var(--muted);
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.info-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.info-block p,
.info-block a {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-block a.phone-link {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
}

.booking-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

.booking-form h3 {
  margin-bottom: 8px;
  text-align: center;
}

.booking-form > p {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  font-weight: 500;
  color: var(--ink);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-demo-notice {
  margin: 20px 0 0;
  padding: 14px 16px;
  background: var(--blush);
  border: 1px solid var(--line);
  color: var(--rose-dark);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-item {
    transition: none;
  }

  .menu-item:hover {
    transform: none;
    box-shadow: none;
  }
}

.cta-band {
  padding: 56px clamp(20px, 5vw, 64px);
  text-align: center;
  background: var(--rose-dark);
  color: var(--white);
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }

.cta-band p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.85);
}

.cta-band .button-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta-band .button-outline:hover {
  background: var(--white);
  color: var(--rose-dark);
  border-color: var(--white);
}

.site-footer {
  padding: 32px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: #9a8a90;
  font-size: 0.88rem;
  text-align: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
}

.site-footer p {
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--rose-light);
  font-weight: 600;
}

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

@media (max-width: 860px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    order: 4;
    padding-top: 8px;
  }
  .site-nav.open { display: flex; }
  .header-call { width: 100%; text-align: center; order: 3; }
  .menu-grid,
  .atmosphere-row,
  .studio-showcase,
  .about-layout,
  .contact-wrapper,
  .form-row-2 { grid-template-columns: 1fr; }
  .hours-strip-divider { display: none; }
  .atmosphere-item { padding: 28px 20px; }
}
