/* Golden Hour — champagne & noir */
:root {
  --cream: #F9F6F1;
  --cream-deep: #F0EAE0;
  --champagne: #D4C4A8;
  --gold: #B8A88A;
  --gold-deep: #9A8A6C;
  --muted: #6B5D4D;
  --noir: #1A1A1A;
  --ink: #2A2420;
  --white: #FFFFFF;
  --line: rgba(26, 26, 26, 0.1);
  --line-strong: rgba(26, 26, 26, 0.16);
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 76px;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

ul {
  list-style: none;
}

/* —— Typography —— */
h1, h2, h3, h4,
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--noir);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36em;
}

/* —— Layout —— */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--noir);
  color: var(--cream);
}

.btn-primary:hover {
  background: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--noir);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--noir);
}

.btn-light {
  background: var(--cream);
  color: var(--noir);
}

.btn-light:hover {
  background: var(--white);
}

.btn-block {
  width: 100%;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--noir);
  z-index: 2;
}

.logo span {
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--noir);
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary[aria-current="page"] {
  color: var(--cream);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 1px;
  background: var(--champagne);
}

.nav-links a.btn[aria-current="page"]::after {
  display: none;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--noir);
  margin: 0.3rem auto;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.15) 0%, rgba(26, 26, 26, 0.55) 100%),
    linear-gradient(90deg, rgba(26, 26, 26, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  max-width: 36rem;
}

.hero .eyebrow {
  color: var(--champagne);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(249, 246, 241, 0.88);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.85rem;
}

.page-hero .lede {
  margin-inline: auto;
}

/* —— About split —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.split-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.split-copy h2 {
  margin-bottom: 1rem;
}

.split-copy p + p {
  margin-top: 0.85rem;
}

.split-copy p {
  color: var(--muted);
}

.split-copy .btn {
  margin-top: 1.5rem;
}

/* —— Service cards —— */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--champagne);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.service-card .price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--noir);
}

.service-card .price span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

/* Full services menu */
.menu-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.menu-block h2 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.menu-block .menu-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.menu-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-row h3,
.menu-row .item-name {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--noir);
}

.menu-row .item-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.menu-row .item-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--noir);
}

.menu-footnote {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* —— Team —— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card-body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.team-card .role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.team-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-feature:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.team-feature:nth-child(even) .team-feature-media {
  order: 2;
}

.team-feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-feature-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.team-feature-copy .role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-feature-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.85rem;
}

.team-feature-copy p {
  color: var(--muted);
}

.team-feature-copy p + p {
  margin-top: 0.75rem;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-column: span 3;
  aspect-ratio: 4 / 5;
}

.gallery-item.wide {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-strip a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-strip a:hover img {
  transform: scale(1.04);
}

/* —— Hours panel —— */
.hours-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--noir);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.hours-panel h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.hours-panel p {
  color: rgba(249, 246, 241, 0.72);
  margin-bottom: 1.25rem;
}

.hours-list {
  display: grid;
  gap: 0.65rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(212, 196, 168, 0.18);
  font-size: 0.98rem;
}

.hours-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list .day {
  color: var(--champagne);
}

.hours-list .time {
  font-variant-numeric: tabular-nums;
}

.hours-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding-left: clamp(0rem, 2vw, 1rem);
  border-left: 1px solid rgba(212, 196, 168, 0.18);
}

.hours-aside address {
  font-style: normal;
  line-height: 1.7;
}

.hours-aside a:not(.btn) {
  color: var(--champagne);
  transition: color 0.2s ease;
}

.hours-aside a:not(.btn):hover {
  color: var(--cream);
}

.hours-aside .btn-light {
  color: var(--noir);
}

.hours-aside .btn-light:hover {
  color: var(--noir);
  background: var(--white);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 196, 168, 0.28), transparent 60%),
    var(--cream-deep);
  border-block: 1px solid var(--line);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 30rem;
  margin: 0 auto 1.5rem;
}

/* —— Contact / Form —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

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

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}

.info-block p,
.info-block a {
  color: var(--ink);
}

.info-block a:hover {
  color: var(--muted);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.form-card .form-intro {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 168, 138, 0.22);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5D4D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #eef5ea;
  color: #2f4a28;
  border: 1px solid #c5d9bc;
}

.form-status.is-error {
  background: #faf0ee;
  color: #6b2e24;
  border: 1px solid #e5c4bc;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* —— Footer —— */
.site-footer {
  background: var(--noir);
  color: rgba(249, 246, 241, 0.72);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--cream);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 196, 168, 0.15);
  font-size: 0.85rem;
}

/* —— Utilities —— */
.bg-white { background: var(--white); }
.bg-cream-deep { background: var(--cream-deep); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .split,
  .contact-grid,
  .hours-panel {
    grid-template-columns: 1fr;
  }

  .hours-aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(212, 196, 168, 0.18);
    padding-top: 1.5rem;
  }

  .team-feature,
  .team-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-feature:nth-child(even) .team-feature-media {
    order: 0;
  }

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

  .gallery-item.tall {
    grid-column: span 6;
  }

  .gallery-item.wide {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--noir);
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .service-grid,
  .team-grid,
  .gallery-strip,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 12;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
