:root {
  --bg: #FAF8F3;
  --bg-alt: #F0EBE2;
  --fg: #1A1A18;
  --fg-light: #5A5A52;
  --accent: #A8502A;
  --accent-light: #C4744E;
  --border: #DDD8CE;
  --cream: #F5F0E8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  overflow: hidden;
}

.hero-text {
  padding: 96px 80px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.7;
}

.hero-visual {
  background: #1C2B1A;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-atmosphere {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Draped curtain lines */
.thread-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,80,42,0.3), transparent);
  animation: sway 4s ease-in-out infinite;
}
.thread-1 { top: 18%; animation-delay: 0s; }
.thread-2 { top: 32%; animation-delay: 0.6s; }
.thread-3 { top: 46%; animation-delay: 1.2s; }
.thread-4 { top: 60%; animation-delay: 0.3s; }
.thread-5 { top: 74%; animation-delay: 0.9s; }

@keyframes sway {
  0%, 100% { transform: translateX(0) scaleX(0.6); opacity: 0.4; }
  50% { transform: translateX(8px) scaleX(1); opacity: 0.7; }
}

/* Stitch row */
.stitch-row {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}

.stitch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(168, 80, 42, 0.4);
  border: 1px solid rgba(168, 80, 42, 0.6);
}

/* Thread spool */
.spool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.spool-top, .spool-bottom {
  width: 48px;
  height: 10px;
  background: #8B6E4A;
  border-radius: 3px;
}
.spool-body {
  width: 36px;
  height: 60px;
  background: #A0784A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spool-thread {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    #D4A574 0px,
    #C49360 4px,
    #D4A574 8px
  );
}

/* ─── SECTION LABEL ─────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

/* ─── THE CRAFT ─────────────────────────────────────── */
.craft {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 80px;
}

.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.craft-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.craft-body p {
  color: var(--fg-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.craft-body p:last-child { margin-bottom: 0; }

.craft-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 48px;
}

.stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.stat:last-child { border-bottom: none; }

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SERVICES ─────────────────────────────────────── */
.services {
  padding: 120px 80px;
  background: var(--bg);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.service-item {
  background: var(--bg);
  padding: 48px;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.service-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-item p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
}

/* ─── HOSPITALITY ─────────────────────────────────────── */
.hospitality {
  background: #1C2B1A;
  color: #F5F0E8;
  padding: 120px 80px;
}

.hospitality-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hospitality-text .section-label { color: #C4744E; }

.hospitality-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #F5F0E8;
}

.hospitality-text p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hospitality-detail {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hospitality-detail span {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  font-style: italic;
  padding-left: 20px;
  position: relative;
}

.hospitality-detail span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #A8502A;
}

.hospitality-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hospitality-badge {
  border: 1px solid rgba(168, 80, 42, 0.4);
  padding: 48px 40px;
  text-align: center;
  max-width: 260px;
}

.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: #C4744E;
  line-height: 1;
  margin-bottom: 16px;
}

.badge-text {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── PROCESS ─────────────────────────────────────── */
.process {
  background: var(--cream);
  padding: 120px 80px;
  border-top: 1px solid var(--border);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}

.step {
  flex: 1;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 500;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  flex-shrink: 0;
}

.connector-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  position: relative;
}

.connector-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: rotate(45deg);
}

/* ─── CLOSING ─────────────────────────────────────── */
.closing {
  background: var(--fg);
  color: var(--cream);
  padding: 120px 80px;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 48px;
}

.closing-detail p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--fg);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 48px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.08em;
}

.footer-meta p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.35);
  text-align: right;
  line-height: 1.6;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 64px 32px 48px;
  }
  .hero-visual {
    height: 280px;
  }
  .craft, .services, .hospitality, .process, .closing {
    padding: 80px 32px;
  }
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .craft-stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .stat {
    padding: 16px 32px 16px 0;
    width: 50%;
    border-bottom: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hospitality-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hospitality-aside {
    order: -1;
  }
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    width: 1px;
    height: 40px;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 4px;
  }
  .connector-line {
    width: 1px;
    height: 100%;
  }
  .connector-line::after {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-meta p { text-align: center; }
}