/* Boots and Bricks — earthy, grounded, warm */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-base: #faf8f3;
  --bg-warm: #f4efe4;
  --bg-sage: #e6ede4;
  --brown-900: #2c1e10;
  --brown-700: #5c3d1e;
  --brown-500: #8a5c2e;
  --brown-300: #c4a07a;
  --green-700: #2d4a2d;
  --green-500: #4a7c4a;
  --green-300: #7aaa7a;
  --white: #ffffff;
  --text-primary: #2c1e10;
  --text-secondary: #6b5744;
  --text-muted: #9c8a7a;
  --border-soft: #e2d9c8;
  --shadow-soft: 0 2px 12px rgba(44, 30, 16, 0.08);
  --shadow-medium: 0 6px 24px rgba(44, 30, 16, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

.display { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
.headline-xl { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; }
.headline-lg { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
.headline-md { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
.body-lg { font-size: 1.1rem; }
.body-sm { font-size: 0.9rem; }

p { color: var(--text-secondary); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.6rem;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brown-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brown-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--brown-700);
  border: 1.5px solid var(--brown-300);
}
.btn-outline:hover {
  background: var(--brown-900);
  color: var(--white);
  border-color: var(--brown-900);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* =================== NAV =================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-900);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--green-500); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brown-900); }
.nav-cta {
  display: none;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background: var(--bg-warm);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74, 124, 74, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196, 160, 122, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: var(--bg-sage);
  border: 1px solid rgba(74, 124, 74, 0.2);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  display: block;
}

.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

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

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.hero-founder {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-founder strong {
  display: block;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--brown-700);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =================== ABOUT =================== */
.about {
  padding: 6rem 0;
}

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

.about-years {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.about-years .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--brown-900);
  line-height: 1;
}

.about-years .label {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 120px;
  line-height: 1.4;
}

.about h2 {
  color: var(--brown-900);
  margin-bottom: 1.2rem;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.stat-card .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown-900);
  display: block;
  margin-bottom: 0.2rem;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =================== SERVICES =================== */
.services {
  padding: 6rem 0;
  background: var(--bg-warm);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services h2 {
  color: var(--brown-900);
  margin-bottom: 0.8rem;
}

.services-header p { color: var(--text-secondary); font-size: 1.05rem; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown-300), var(--green-300));
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--bg-sage);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--brown-900);
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =================== HOW IT WORKS =================== */
.how {
  padding: 6rem 0;
}

.how-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}

.how h2 { color: var(--brown-900); margin-bottom: 0.8rem; }
.how-header p { color: var(--text-secondary); font-size: 1.05rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 26px);
  right: calc(16.67% + 26px);
  height: 1px;
  background: var(--border-soft);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--bg-warm);
  border: 2px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-900);
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-900);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =================== WHO WE SERVE =================== */
.who {
  padding: 6rem 0;
  background: var(--green-700);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.who::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.who .container { position: relative; z-index: 1; }

.who-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.who h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.who-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}

.who-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.who-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* =================== TRUST =================== */
.trust {
  padding: 5rem 0;
  background: var(--bg-base);
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 99px;
}

.trust-icon {
  width: 32px; height: 32px;
  background: var(--bg-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-900);
}

/* =================== CONTACT =================== */
.contact {
  padding: 6rem 0;
  background: var(--bg-warm);
}

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

.contact h2 {
  color: var(--brown-900);
  margin-bottom: 1rem;
}

.contact > .container > .contact-grid > div:first-child > p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--bg-sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--brown-900);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-900);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-base);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74, 124, 74, 0.1);
}

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

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

/* =================== FOOTER =================== */
footer {
  background: var(--brown-900);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom span { color: rgba(255,255,255,0.35); }

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links { display: none; }
  .nav-cta { display: block; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 7rem 0 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .trust-row { gap: 1rem; }
}

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.hero-badge { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-tagline { animation-delay: 0.25s; }
.hero-meta { animation-delay: 0.35s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}