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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A84E2D;
  --sand: #F5E6D3;
  --sand-light: #FBF6F0;
  --sand-mid: #EDE0D0;
  --charcoal: #2A2420;
  --charcoal-light: #4A403A;
  --warm-gray: #8A7E76;
  --off-white: #FAFAF8;
  --white: #FFFFFF;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--sand-mid);
  box-shadow: 0 1px 0 var(--sand-mid);
}

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

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

.logo-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  background: var(--terracotta);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  letter-spacing: -0.02em;
}

.logo-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--charcoal);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ── Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-overlay .nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
}

.nav-overlay .nav-link:hover {
  color: var(--terracotta);
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--sand-mid), transparent);
  pointer-events: none;
}

.hero-inner {
  flex: 0 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--sand-mid);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-full {
  width: 100%;
}

/* ── Divider ── */
.divider {
  padding: 0 24px;
}

.divider-line {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: var(--sand-mid);
}

/* ── Section Shared ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ── Services ── */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease);
}

.service-card:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--terracotta);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ── About ── */
.about {
  padding: 100px 0;
}

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

.about-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 600/750;
}

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

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  font-weight: 300;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--sand-mid);
}

.about-content .btn {
  margin-top: 8px;
}

/* ── Gallery ── */
.gallery {
  padding: 100px 0;
}

.gallery .section-title {
  margin-bottom: 48px;
}

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

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

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

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

/* ── Testimonial Strip ── */
.testimonial-strip {
  background: var(--charcoal);
  padding: 80px 0;
}

.testimonial-strip blockquote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--sand);
  margin-bottom: 24px;
}

.testimonial-strip footer {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
}

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

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.contact-value {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-link {
  color: var(--terracotta);
  transition: color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.contact-link:hover {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta-dark);
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 8px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7E76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  margin-top: 12px;
  font-weight: 300;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ── Map ── */
.map-wrap {
  border-top: 1px solid var(--sand-mid);
}

.map-wrap iframe {
  filter: saturate(0.6) brightness(1.05);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}

.footer .logo-text {
  color: var(--sand);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  font-weight: 300;
}

.footer-copy-small {
  font-size: 0.6875rem;
  color: var(--warm-gray);
  opacity: 0.6;
  font-weight: 300;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-layout {
    gap: 40px;
  }

  .contact-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding: 60px 24px 40px;
  }

  .hero-image {
    min-height: 220px;
    max-height: 320px;
  }

  .services {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .about {
    padding: 72px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-wrap {
    aspect-ratio: 4/3;
  }

  .gallery {
    padding: 72px 0;
  }

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

  .testimonial-strip {
    padding: 60px 0;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stat-divider {
    width: 36px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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