:root {
  --terracotta:     #C4714A;
  --terracotta-dk:  #A05535;
  --terracotta-lt:  #E8C4A8;
  --terracotta-pale:#F7EDE3;
  --warm-white:     #FAF6F1;
  --linen:          #F0E8DC;
  --charcoal:       #2C2420;
  --charcoal-mid:   #5A4A40;
  --stone:          #9B8A7E;
  --stone-lt:       #D4C8BE;
  --off-black:      #1A1210;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo, .quote-text {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.color-terra { color: var(--terracotta); }
.color-terra-lt { color: var(--terracotta-lt); }

.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

.text-light .text-body {
  color: rgba(250, 246, 241, 0.8);
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 3rem; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

.bg-warm-white { background: var(--warm-white); }
.bg-linen { background: var(--linen); }
.bg-terra-pale { background: var(--terracotta-pale); }
.bg-charcoal { background: var(--charcoal); color: var(--warm-white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.align-center {
  align-items: center;
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 16px 0;
  border-bottom: 1px solid var(--stone-lt);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  font-size: 32px;
  text-decoration: none;
  color: var(--charcoal);
  line-height: 1;
}

.logo-arrow-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 2px;
}

.logo-arrow-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: currentColor;
}

.logo-arrow-head {
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 10px solid currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: var(--transition);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

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

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

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

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: radial-gradient(circle at top right, var(--terracotta-pale) 0%, var(--warm-white) 60%);
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 1px solid var(--stone-lt);
  padding-bottom: 8px;
}

.hero-title {
  font-size: 80px;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal-mid);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* Sections */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone-lt);
  display: inline-block;
}

.section-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 24px;
  color: var(--terracotta);
  font-style: italic;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: var(--warm-white);
  padding: 40px;
  border: 1px solid var(--stone-lt);
  transition: var(--transition);
}

.expertise-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 36, 32, 0.05);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.card-title {
  font-size: 20px;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* Quote */
.quote-container {
  text-align: center;
  padding: 4rem 0;
}

.quote-text {
  font-size: 40px;
  color: var(--terracotta);
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Card */
.contact-card {
  background: var(--warm-white);
  padding: 48px;
  border: 1px solid var(--stone-lt);
}

.contact-name {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 4px;
}

.contact-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

.contact-rule {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--charcoal-mid);
}

.contact-list .dot {
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
}

.contact-list a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

/* Footer */
.footer {
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 200, 190, 0.2);
}

.footer-brand .logo {
  color: var(--warm-white);
  margin-bottom: 8px;
  display: inline-block;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 200, 190, 0.7);
}

.footer-meta {
  text-align: right;
  font-size: 12px;
  color: rgba(250, 246, 241, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(212, 200, 190, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .quote-text {
    font-size: 28px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-meta {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-links {
    display: none;
  }
}
