:root {
  --bg: #0c0a09;
  --bg-warm: #1a1412;
  --fg: #f5f0eb;
  --fg-muted: #a89e94;
  --accent: #c47a3a;
  --accent-light: #e8a862;
  --accent-glow: rgba(196, 122, 58, 0.15);
  --border: rgba(168, 158, 148, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(2rem, 6vw, 8rem);
  padding-bottom: clamp(4rem, 10vh, 8rem);
  background:
    radial-gradient(ellipse at 30% 80%, rgba(196, 122, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(196, 122, 58, 0.04) 0%, transparent 50%),
    linear-gradient(175deg, #0c0a09 0%, #1a1412 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 120px,
      rgba(168, 158, 148, 0.03) 120px,
      rgba(168, 158, 148, 0.03) 121px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  right: clamp(2rem, 6vw, 8rem);
  bottom: clamp(4rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 720px;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ---- OFFERINGS ---- */
.offerings {
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid var(--border);
}

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

.offering-card {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  transition: background 0.4s ease;
}

.offering-card:hover {
  background: var(--bg-warm);
}

.offering-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-glow);
  color: rgba(196, 122, 58, 0.2);
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
  line-height: 1;
}

.offering-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.offering-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- EXPERIENCE ---- */
.experience {
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid var(--border);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.experience-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.experience-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.exp-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--accent);
}

.exp-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.exp-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: clamp(8rem, 15vh, 12rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 122, 58, 0.06) 0%, transparent 60%),
    var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent-light);
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: clamp(3rem, 6vh, 5rem) clamp(2rem, 6vw, 8rem);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-contact p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    align-items: center;
    padding-bottom: 6rem;
    padding-top: 4rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
}