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

:root {
  --terracotta: #C2704E;
  --terracotta-dark: #A85A3A;
  --sand: #F5EDE4;
  --sand-light: #FAF6F2;
  --sand-mid: #EDE3D8;
  --charcoal: #1E1E1E;
  --charcoal-light: #3A3A3A;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #FFFFFF;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.15;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 112, 78, 0.1);
  transition: box-shadow 0.3s var(--ease);
}
.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: 72px;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nav-desktop {
  display: flex;
  gap: 36px;
}
.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--charcoal); }
.nav-desktop a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-inner a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  transition: color 0.25s;
}
.mobile-nav-inner a:hover { color: var(--terracotta); }

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 0;
}

.hero-text {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

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

.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.hero-headline .line {
  display: block;
}
.hero-headline .accent {
  color: var(--terracotta);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(250, 246, 242, 0.9);
  backdrop-filter: blur(8px);
  padding: 20px 28px;
  border-radius: 6px;
  border: 1px solid rgba(194, 112, 78, 0.15);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--sand-mid);
  flex-shrink: 0;
}

.hero-line {
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--sand-mid) 60%, transparent 100%);
  flex-shrink: 0;
}

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

.services-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-mid);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--sand-light);
}
.service-card:hover .service-num {
  color: var(--terracotta);
}
.service-card:hover .service-name {
  color: var(--terracotta);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--sand-mid);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s var(--ease);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 14px;
  transition: color 0.3s var(--ease);
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
}

/* ── Philosophy ── */
.philosophy {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.philosophy-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.philosophy-image:hover img {
  transform: scale(1.03);
}

.philosophy-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 300;
}

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--sand-mid);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  font-weight: 400;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}
.value-icon svg {
  width: 18px;
  height: 18px;
}

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

.gallery-header {
  max-width: 560px;
  margin-bottom: 64px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.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: 1 / 6;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 500px;
}
.gallery-item:not(.gallery-item--tall) {
  aspect-ratio: 3/2;
}
.gallery-item--wide {
  grid-column: 6 / 13;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,112,78,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.cta .section-eyebrow { color: var(--terracotta); }

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.cta-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.cta-actions .btn-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.cta-actions .btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.contact-details {
  font-style: normal;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.contact-row span,
.contact-row a {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  font-weight: 300;
}
.contact-row a:hover { color: var(--terracotta); }

.contact-map {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sand-mid);
}

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

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(194, 112, 78, 0.08);
  border: 1px solid rgba(194, 112, 78, 0.2);
  border-radius: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--terracotta-dark);
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
}

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

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.footer-copy a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-copy a:hover { color: var(--terracotta); }

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-text {
    padding: 100px 0 60px;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image {
    max-height: 500px;
    min-height: 400px;
  }
  .hero-stats {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 400px;
  }

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

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .philosophy-image { aspect-ratio: 16/9; }

  .gallery-item--tall {
    grid-column: 1 / 7;
    min-height: 360px;
  }
  .gallery-item--wide {
    grid-column: 7 / 13;
  }

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

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

  .hero { min-height: auto; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-text { padding: 90px 24px 60px; }
  .hero-image { max-height: 400px; min-height: 300px; }
  .hero-stats { bottom: 20px; left: 20px; right: 20px; padding: 16px 20px; }

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

  .philosophy { padding: 80px 0; }

  .gallery { padding: 80px 0 60px; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
  .gallery-item--tall { min-height: 280px; }

  .cta { padding: 80px 0; }

  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}
