/* =============================================================
   RIDGELINE LEGACY PROPERTIES — MASTER STYLESHEET
   ridgelinelegacyproperties.com
   ============================================================= */

/* ----------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
  --forest:  #1a2318;
  --pine:    #243020;
  --cream:   #f0ebe0;
  --mist:    #9ea398;
  --gold:    #c8a96e;
  --slate:   #5c5e57;

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

  --max-width: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-pad: clamp(80px, 10vw, 140px);
  --nav-height: 80px;

  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ----------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.9rem, 1.15vw, 1.0rem);
  line-height: 1.85;
  color: var(--mist);
}

p + p {
  margin-top: 1.2em;
}

strong {
  font-weight: 500;
  color: var(--cream);
}

em {
  font-style: italic;
  color: var(--cream);
}

/* ----------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------- */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--pine {
  background-color: var(--pine);
}

.section--forest {
  background-color: var(--forest);
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header p {
  margin-top: 1.2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* ----------------------------------------
   5. BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240, 235, 224, 0.4);
}

.btn--outline:hover {
  background: rgba(240, 235, 224, 0.08);
  border-color: var(--cream);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--forest);
}

/* ----------------------------------------
   6. NAVIGATION
   ---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), box-shadow var(--transition-slow);
}

.nav.scrolled {
  background: rgba(26, 35, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 169, 110, 0.12);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav__links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.75);
  transition: color var(--transition-base);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  margin-left: 1.6rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 24, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  transition: color var(--transition-base);
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile-contact {
  margin-top: 2rem;
  text-align: center;
}

.nav__mobile-contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mist);
  display: block;
  letter-spacing: 0.06em;
}

/* ----------------------------------------
   7. HERO
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26, 35, 24, 0.45) 0%,
    rgba(26, 35, 24, 0.25) 35%,
    rgba(26, 35, 24, 0.7) 75%,
    rgba(26, 35, 24, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  margin-bottom: 1.6rem;
  color: var(--cream);
  line-height: 1.1;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(240, 235, 224, 0.75);
  max-width: 480px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(200, 169, 110, 0.5));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 24, 0.65) 0%,
    rgba(26, 35, 24, 0.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.page-hero h1 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.page-hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(240, 235, 224, 0.72);
  max-width: 520px;
  line-height: 1.75;
}

/* ----------------------------------------
   8. MOUNTAIN SVG DIVIDERS
   ---------------------------------------- */
.mountain-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.mountain-divider svg {
  display: block;
  width: 100%;
}

/* ----------------------------------------
   9. WHAT WE DO (SERVICE CARDS)
   ---------------------------------------- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: clamp(40px, 6vw, 72px);
}

.service-card {
  background: var(--pine);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background var(--transition-base);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: #2a3828;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.18);
  line-height: 1;
  margin-bottom: 1.6rem;
  transition: color var(--transition-base);
}

.service-card:hover .service-card__num {
  color: rgba(200, 169, 110, 0.35);
}

.service-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 0.9rem;
  color: var(--cream);
}

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

/* ----------------------------------------
   10. WHO WE ARE
   ---------------------------------------- */
.who-we-are__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.who-we-are__text h2 {
  margin-bottom: 1.6rem;
}

.who-we-are__text p {
  margin-bottom: 1.4rem;
}

.who-we-are__text p:last-of-type {
  margin-bottom: 2.4rem;
}

.who-we-are__image {
  position: relative;
}

.who-we-are__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.who-we-are__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.who-we-are__image-frame:hover img {
  transform: scale(1.03);
}

.who-we-are__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(200, 169, 110, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* ----------------------------------------
   11. FULL SERVICES SECTION
   ---------------------------------------- */
.services-full {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
  margin-top: clamp(40px, 6vw, 72px);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid rgba(94, 94, 87, 0.2);
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item__label {
  padding-top: 0.4rem;
}

.service-item__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  color: rgba(200, 169, 110, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}

.service-item__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

.service-item__content h3 {
  margin-bottom: 1.2rem;
  color: var(--cream);
}

.service-item__content > p {
  margin-bottom: 1.6rem;
}

.service-item__includes {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-item__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.6;
}

.service-item__includes li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ----------------------------------------
   12. FAQ
   ---------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  margin-top: clamp(40px, 6vw, 72px);
}

details.faq-item {
  border-bottom: 1px solid rgba(94, 94, 87, 0.25);
}

details.faq-item:first-child {
  border-top: 1px solid rgba(94, 94, 87, 0.25);
}

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--cream);
  transition: color var(--transition-base);
  user-select: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__icon::before {
  width: 8px;
  height: 1px;
}

.faq-item__icon::after {
  width: 1px;
  height: 8px;
}

details[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding-bottom: 1.8rem;
  padding-right: 3rem;
}

.faq-item__answer p {
  font-size: 0.9rem;
  line-height: 1.85;
}

/* ----------------------------------------
   13. CONTACT
   ---------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 1.4rem;
}

.contact__info > p {
  margin-bottom: 2.4rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact__detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact__detail-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 60px;
  padding-top: 0.2rem;
}

.contact__detail-value {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.7;
}

.contact__detail-value a {
  color: var(--cream);
  transition: color var(--transition-base);
}

.contact__detail-value a:hover {
  color: var(--gold);
}

.contact__area {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(94, 94, 87, 0.2);
}

.contact__area-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.contact__area p {
  font-size: 0.875rem;
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(36, 48, 32, 0.6);
  border: 1px solid rgba(94, 94, 87, 0.35);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.9rem 1.1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ea398' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--pine);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(36, 48, 32, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.6;
}

.form-success {
  display: none;
  padding: 1.4rem;
  border: 1px solid rgba(200, 169, 110, 0.3);
  background: rgba(200, 169, 110, 0.05);
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}

/* ----------------------------------------
   14. ABOUT PAGE SPECIFICS
   ---------------------------------------- */
.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid rgba(94, 94, 87, 0.2);
}

.team-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.team-section--reverse {
  direction: rtl;
}

.team-section--reverse > * {
  direction: ltr;
}

.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(to top, rgba(26, 35, 24, 0.9), transparent);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

.team-bio .eyebrow {
  margin-bottom: 0.6rem;
}

.team-bio h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.4rem;
}

.team-bio__role {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 2rem;
  display: block;
}

.team-bio p {
  margin-bottom: 1.2rem;
}

/* Commitment section */
.commitment {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.commitment h2 {
  margin-bottom: 1.6rem;
}

.commitment p {
  margin-bottom: 1.2rem;
}

.commitment .btn {
  margin-top: 2rem;
}

/* Service area */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px;
  margin-top: clamp(40px, 5vw, 60px);
}

.area-card {
  background: var(--pine);
  padding: 2rem 2.2rem;
  text-align: center;
}

.area-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.area-card__county {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ----------------------------------------
   15. JOURNAL PAGE
   ---------------------------------------- */
.journal-coming {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.journal-coming h2 {
  margin-bottom: 1.4rem;
}

.journal-coming p {
  margin-bottom: 1.2rem;
}

.journal-topics {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
}

.journal-topic {
  background: var(--pine);
  padding: 2.4rem 2.8rem;
}

.journal-topic__eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.journal-topic h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.journal-topic p {
  font-size: 0.875rem;
}

/* ----------------------------------------
   16. FOOTER
   ---------------------------------------- */
.footer {
  background: #141c12;
  padding: clamp(48px, 7vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(40px, 6vw, 60px);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}

.footer__tagline {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color var(--transition-base);
}

.footer__col ul li a:hover {
  color: var(--cream);
}

.footer__col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col address a {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color var(--transition-base);
}

.footer__col address a:hover {
  color: var(--cream);
}

.footer__col address span {
  font-size: 0.875rem;
  color: var(--slate);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(94, 94, 87, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 1.6rem;
}

.footer__legal a {
  font-size: 0.72rem;
  color: var(--slate);
  transition: color var(--transition-base);
}

.footer__legal a:hover {
  color: var(--mist);
}

/* ----------------------------------------
   17. UTILITIES
   ---------------------------------------- */
.gold { color: var(--gold); }
.mist { color: var(--mist); }
.cream { color: var(--cream); }
.italic { font-style: italic; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------
   18. RESPONSIVE
   ---------------------------------------- */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .who-we-are__inner {
    grid-template-columns: 1fr;
  }

  .who-we-are__image {
    order: -1;
  }

  .who-we-are__image-frame {
    aspect-ratio: 16/9;
  }

  .who-we-are__image-accent {
    display: none;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-item__num {
    font-size: 3.5rem;
    margin-bottom: 0;
  }

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

  .team-section {
    grid-template-columns: 1fr;
  }

  .team-section--reverse {
    direction: ltr;
  }

  .team-photo {
    aspect-ratio: 4/3;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .services-preview {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .journal-topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}
