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

:root {
  --charcoal:    #1a1a1a;
  --charcoal-2:  #2a2a2a;
  --charcoal-3:  #3a3a3a;
  --coral:       #e8645b;
  --coral-dark:  #c94e46;
  --coral-light: #fceaea;
  --white:       #ffffff;
  --off-white:   #faf9f7;
  --gray-100:    #f4f3f0;
  --gray-200:    #e8e6e1;
  --gray-400:    #9e9b94;
  --gray-600:    #6b6860;
  --gray-800:    #3a3834;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --max-w:       1200px;
  --header-h:    72px;
  --radius:      8px;
  --transition:  0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

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

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ── Header ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

#nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

#nav-menu a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
#nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width var(--transition);
}
#nav-menu a:not(.btn):hover { color: var(--charcoal); }
#nav-menu a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--transition);
  position: absolute;
  left: 7px;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -7px; left: 0; }
.hamburger::after { content: ''; bottom: -7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); bottom: 0; }

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Services ── */
#services {
  padding: 120px 0;
  background: var(--white);
}

#services .container { text-align: center; }

#services .section-lead { margin: 0 auto 64px; }

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

.service-card {
  background: var(--off-white);
  padding: 48px 32px;
  text-align: left;
  transition: background var(--transition);
}
.service-card:hover { background: var(--gray-100); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--coral);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── About ── */
#about {
  padding: 120px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 5/6;
}

.about-text .section-lead { margin-bottom: 24px; }

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.about-features li svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
}

/* ── Gallery ── */
#gallery {
  padding: 120px 0;
  background: var(--white);
}

#gallery .container { text-align: center; }

#gallery .section-lead { margin: 0 auto 64px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 13; grid-row: 2 / 3; }

/* ── Info Strip ── */
#info-strip {
  background: var(--charcoal);
  padding: 80px 0;
}

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

.info-block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.info-block a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.info-block a:hover { color: var(--coral); }

.hours-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: rgba(255,255,255,0.9); }

.info-block address {
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.info-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ── Contact ── */
#contact {
  padding: 120px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .section-lead { margin-bottom: 40px; }

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: var(--gray-600);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,100,91,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0faf0;
  border: 1px solid #c8e6c8;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #2d6a2d;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ── */
#footer {
  background: var(--charcoal);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

#footer nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

#footer nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
#footer nav a:hover { color: var(--white); }

.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
  margin-top: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid { gap: 48px; }
  .gallery-grid {
    grid-template-rows: repeat(2, 220px);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: block; z-index: 200; }

  #nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #nav-menu.open { transform: translateX(0); }

  #nav-menu a:not(.btn) {
    font-size: 1.1rem;
    color: var(--charcoal);
  }

  /* Overlay when menu open */
  #nav-menu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: -1;
  }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  #services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  #about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 4/3; }

  #gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item { aspect-ratio: 4/3; }

  #info-strip { padding: 60px 0; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }

  #contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
  #footer nav ul { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-content { padding-top: calc(var(--header-h) + 24px); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-line { animation: none; opacity: 0.5; }
  .gallery-item img { transition: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
