/* ============================================
   THE RESET CO. — STYLESHEET
   ============================================ */

:root {
  --tan: #ede3d5;
  --tan-light: #f6f1ea;
  --tan-dark: #d8cabb;
  --green: #6c7860;
  --green-dark: #535d47;
  --green-light: #8a9478;
  --orange: #b37b64;
  --orange-light: #c9957e;
  --white: #faf8f5;
  --text-dark: #2c2c2a;
  --text-mid: #5a5a55;
  --text-light: #8a8a82;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius: 2px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(44, 44, 42, 0.08);
  --shadow-hover: 0 8px 40px rgba(44, 44, 42, 0.14);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.bg-green { background: var(--green); }
.bg-tan { background: var(--tan-light); }
.mt-24 { margin-top: 24px; display: inline-block; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label.light { color: var(--tan-dark); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-title.light { color: var(--tan); }

em { font-style: italic; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--tan-light);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 120, 96, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--tan-light);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--tan);
  border-color: var(--tan);
}
.btn-outline-light:hover {
  background: var(--tan);
  color: var(--green);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tan-dark);
  transition: box-shadow var(--transition);
}
.nav-wrapper.scrolled { box-shadow: var(--shadow); }

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--green) !important;
  color: var(--tan-light) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--tan-dark);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  list-style: none;
  min-width: 200px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; top: calc(100% + 8px); }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-mid);
}
.dropdown li a:hover { color: var(--green); background: var(--tan-light); }
.dropdown li a::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 80px;
}

.hero-content { flex: 1; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title em { color: var(--green); font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-graphic {
  flex: 0 0 380px;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
}

.hero-card {
  background: var(--tan);
  border-radius: 16px;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--green);
  opacity: 0.08;
  border-radius: 50%;
}
.hero-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: var(--orange);
  opacity: 0.07;
  border-radius: 50%;
}

.hero-card-inner { position: relative; z-index: 1; }
.hero-card-icon {
  display: block;
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-card-inner p {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
}
.hero-card-inner em { color: var(--green); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--green);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  padding: 8px 32px;
}
.trust-icon { color: var(--orange-light); font-size: 10px; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(237, 227, 213, 0.25);
}

/* ============================================
   INTRO
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.intro-visual {}

.intro-box {
  background: var(--tan-light);
  border: 1px solid var(--tan-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.intro-box-stat {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.intro-box-divider {
  height: 1px;
  background: var(--tan-dark);
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview .container { max-width: 1180px; }
.services-preview .section-title { margin-bottom: 56px; }

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

.service-card {
  display: block;
  background: rgba(250, 248, 245, 0.05);
  border: 1px solid rgba(237, 227, 213, 0.15);
  padding: 40px 28px;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover {
  background: rgba(250, 248, 245, 0.1);
  transform: translateY(-4px);
}

.service-card-icon {
  font-size: 24px;
  color: var(--orange-light);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--tan);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: rgba(237, 227, 213, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ============================================
   PROCESS
   ============================================ */
.process .section-title { margin-bottom: 64px; }

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

.process-step {
  flex: 1;
  padding: 0 32px;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--tan-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.process-step p { font-size: 15px; color: var(--text-mid); line-height: 1.8; }

.process-connector {
  flex: 0 0 2px;
  height: 1px;
  background: var(--tan-dark);
  margin-top: 32px;
  align-self: flex-start;
}

.process-cta { text-align: center; }

/* ============================================
   CALLOUT
   ============================================ */
.callout { background: var(--tan); }

.callout-inner {
  max-width: 700px;
  text-align: center;
}
.callout-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--green);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}
.callout-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}
.callout-quote cite {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-inner {
  max-width: 560px;
  text-align: center;
}
.newsletter-sub {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--tan-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.newsletter-input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: transparent;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-form .btn {
  border-radius: 0;
  border: none;
  padding: 14px 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--tan);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(237, 227, 213, 0.1);
}
.footer-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--tan);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(237, 227, 213, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(237, 227, 213, 0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--tan); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(237, 227, 213, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--tan); }

.footer-bottom {
  padding: 24px 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(237, 227, 213, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--tan-light);
  padding: 160px 32px 80px;
  text-align: center;
  border-bottom: 1px solid var(--tan-dark);
}
.page-hero .section-label { display: block; margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.philosophy-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}
.philosophy-list li::before {
  content: '—';
  color: var(--orange);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-visual {
  background: var(--tan);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.philosophy-visual blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.philosophy-visual cite {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-style: normal;
}

.founder-section {
  background: var(--tan-light);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.founder-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.founder-image-placeholder {
  background: var(--tan);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 2px dashed var(--tan-dark);
}
.founder-image-placeholder p {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  max-width: 180px;
  line-height: 1.6;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-list { display: flex; flex-direction: column; gap: 0; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--tan-dark);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-text .section-label { margin-bottom: 12px; }
.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.service-detail-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-includes {
  background: var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 24px 0;
}
.service-includes h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.service-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-includes ul li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-includes ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
}

.service-visual {
  background: var(--tan);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  background: var(--green);
  opacity: 0.08;
  border-radius: 50%;
}
.service-visual-num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
}
.service-visual p {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  max-width: 160px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-info p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--tan-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--tan-dark);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tan-light);
  font-size: 14px;
}
.contact-detail-text p:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text p:last-child {
  font-size: 15px;
  color: var(--text-dark);
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--green); }

.contact-cta-box {
  background: var(--tan);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-cta-box p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-cta-box .btn { width: 100%; text-align: center; }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid,
  .philosophy-grid,
  .founder-grid,
  .service-detail,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse { direction: ltr; }
  .hero { flex-direction: column; text-align: center; padding-top: 140px; gap: 48px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-graphic { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-connector { width: 40px; height: 1px; margin: 0; }
  .process-step { padding: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-visual { position: static; }
  .contact-cta-box { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 24px 0 32px;
    border-bottom: 1px solid var(--tan-dark);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 13px;
  }
  .nav-cta { margin: 8px 32px 0; display: block; text-align: center; }
  .nav-toggle { display: flex; }
  .dropdown { position: static; transform: none; box-shadow: none; border: none; opacity: 1; visibility: visible; background: var(--tan-light); border-radius: 0; }
  .has-dropdown:hover .dropdown { top: 0; }
  .trust-bar { flex-direction: column; gap: 0; }
  .trust-divider { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); overflow: visible; border: none; }
  .newsletter-input { border: 1.5px solid var(--tan-dark); border-radius: var(--radius); padding: 14px 20px; }
  .newsletter-form .btn { border-radius: var(--radius); width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; }
  .footer-links { grid-template-columns: 1fr; }
}
