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

:root {
  --terracotta: #B8573D;
  --terracotta-dark: #9A4630;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --sand-pale: #FAF6F2;
  --cream: #FDF9F5;
  --charcoal: #1A1A1A;
  --dark: #2C2C2C;
  --mid: #5A5A5A;
  --light: #8A8A8A;
  --line: rgba(184, 87, 61, 0.12);
  --line-strong: rgba(184, 87, 61, 0.25);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --container: 1240px;
  --gutter: 24px;
}

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

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

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* LINE OVERLAY */
.line-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.v-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.v-line--1 { left: 12.5%; }
.v-line--2 { left: 50%; }
.v-line--3 { left: 87.5%; }

@media (max-width: 768px) {
  .v-line--1, .v-line--3 { display: none; }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(253, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--terracotta);
}

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

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}

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

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

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn--sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}

.btn--primary {
  background: var(--terracotta);
  color: #fff;
}

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

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
}

.btn--outline:hover {
  background: var(--terracotta);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line-strong);
}

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

.btn--light {
  background: #fff;
  color: var(--charcoal);
}

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

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* HERO */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 40px;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

.meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 600/780;
}

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

.img-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 4px solid var(--cream);
  aspect-ratio: 320/220;
}

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

.img-badge {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* SERVICES */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(184, 87, 61, 0.08);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--sand);
  padding: 28px 28px 0;
  line-height: 1;
  transition: color 0.3s;
}

.service-card:hover .service-num {
  color: var(--terracotta);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  padding: 12px 28px 0;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.7;
  padding: 12px 28px 24px;
}

.service-img {
  overflow: hidden;
  aspect-ratio: 480/300;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.04);
}

/* ABOUT */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

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

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 560/700;
}

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

.about-strip {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 24px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 2px;
}

.strip-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

/* WHY */
.why {
  padding: 120px 0;
  background: var(--sand-pale);
  border-top: 1px solid var(--line);
}

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

.why-header .section-title {
  padding-top: 8px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.why-item:first-child {
  border-top: 1px solid var(--line);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--sand);
  padding-top: 4px;
  transition: color 0.3s;
}

.why-item:hover .why-num {
  color: var(--terracotta);
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 120px 0;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}

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

.cta-eyebrow {
  color: var(--terracotta);
  margin-bottom: 24px;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* CONTACT */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

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

.contact-intro {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 440px;
}

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

.detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail svg {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 4px;
}

.detail a {
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.detail a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  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(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-pale);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light);
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--light);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg {
  color: var(--terracotta);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.form-success p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--light);
}

.footer-bottom a {
  color: var(--mid);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--terracotta);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* MOBILE NAV */
.nav.open {
  display: flex;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    max-width: 480px;
  }

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

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

  .about-img-main {
    aspect-ratio: 4/3;
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header .container {
    height: 64px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 245, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 24px 20px;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav a {
    font-size: 0.9375rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header .btn--outline {
    display: none;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .img-accent {
    left: -16px;
    bottom: -24px;
  }

  .img-badge {
    right: 0;
    top: 16px;
  }

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

  .services, .about, .why, .cta, .contact {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .about-strip {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    display: inline-flex;
  }

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

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

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

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

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

  .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;
  }
}
