/* =============================================
   TOKENS
   ============================================= */
:root {
  --ivory:      #FDF9F3;
  --blush:      #E8D6CE;
  --blush-dark: #CDB9AF;
  --rose:       #8B5A4F;
  --rose-dark:  #6B3E35;
  --gold:       #B89968;
  --gold-light: #D4B98A;
  --ink:        #2B2522;
  --ink-mid:    #4A3E3A;
  --ink-soft:   #7A6560;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --max-w:       1200px;
  --pad-x:       clamp(1.25rem, 5vw, 2.5rem);
  --section-y:   clamp(4.5rem, 9vw, 7.5rem);
  --nav-h:       72px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-nav.scrolled {
  background: rgba(253, 249, 243, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--blush-dark);
}

.site-nav.menu-open {
  background: var(--ivory);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.logo-st {
  font-weight: 600;
  font-style: italic;
  color: var(--rose);
  letter-spacing: -0.01em;
}

.logo-name {
  font-weight: 400;
  color: var(--ink);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.lang-opt {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0 0 1px;
  line-height: 1.2;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-opt:hover { color: var(--ink); }

.lang-opt.active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

.lang-sep {
  color: var(--blush-dark);
  font-size: 0.65rem;
  pointer-events: none;
  user-select: none;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6em 1.3em;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-call:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

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

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--ivory);
  border-top: 1px solid var(--blush);
  padding: 1.75rem var(--pad-x) 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--blush);
  transition: color 0.2s ease;
}

.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--ink); }

.btn-call-mobile {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.25rem;
  background: var(--rose) !important;
  color: var(--ivory) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8em 1.75em;
  border-radius: 2px;
  border: none !important;
}

/* =============================================
   SHARED SECTION
   ============================================= */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--rose-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: opacity 0.4s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(43, 37, 34, 0.2) 0%,
    rgba(43, 37, 34, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 0 var(--pad-x);
  max-width: 680px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(253, 249, 243, 0.8);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(253, 249, 243, 0.6);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 2.25em;
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: rgba(253, 249, 243, 0.12);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

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

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-light) 0%, transparent 100%);
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.service-category { margin-bottom: 2.75rem; }
.service-category:last-child { margin-bottom: 0; }

.service-category h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--blush);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.service-list li {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(232, 214, 206, 0.45);
  letter-spacing: 0.01em;
}

.service-list li:last-child { border-bottom: none; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--blush); }

.gallery .section-inner { padding-bottom: calc(var(--section-y) * 1.1); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--blush-dark);
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after { border-color: var(--gold); }

/* Placeholder state */
.gallery-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.gallery-ph::after { display: none; }

.gallery-ph span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--ivory); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.about-text .section-title { margin-bottom: 1.25rem; }

.about-text > p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.about-hours h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 1rem;
}

.hours-list { display: flex; flex-direction: column; }

.hours-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--blush);
  gap: 1rem;
  font-size: 0.88rem;
}

.hours-list > div:last-child { border-bottom: none; }

.hours-list dt {
  color: var(--ink-mid);
  font-weight: 500;
}

.hours-list dd {
  color: var(--ink-soft);
  white-space: nowrap;
}

.about-map {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--blush);
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.map-ph p {
  font-size: 0.83rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--rose); }

.contact .section-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-inner { text-align: center; max-width: 520px; }

.contact .section-title {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.contact > .section-inner > .contact-inner > p {
  color: rgba(253, 249, 243, 0.75);
  font-size: 0.95rem;
  margin-bottom: 2.75rem;
}

.btn-call-lg {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid rgba(253, 249, 243, 0.45);
  color: var(--ivory);
  padding: 1.6rem 3.5rem;
  border-radius: 2px;
  margin-bottom: 2.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-call-lg:hover {
  background: rgba(253, 249, 243, 0.1);
  border-color: rgba(253, 249, 243, 0.75);
  transform: translateY(-2px);
}

.call-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 249, 243, 0.65);
}

.call-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.contact-address {
  font-size: 0.87rem;
  color: rgba(253, 249, 243, 0.65);
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ink);
  padding: 2.25rem var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blush);
}

.footer-logo em {
  font-style: italic;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(232, 214, 206, 0.4);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(43, 37, 34, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(232, 214, 206, 0.35);
  color: var(--blush);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.lightbox-close:hover {
  border-color: var(--blush);
  color: var(--ivory);
}

.lightbox-inner {
  max-width: min(90vw, 820px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .services-grid  { grid-template-columns: 1fr; }
  .about-inner    { grid-template-columns: 1fr; }
  .about-map      { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav-links,
  .nav-actions  { display: none; }
  .nav-hamburger { display: flex; }

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

  .btn-call-lg { padding: 1.25rem 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  .hero-title { line-height: 1; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
