/* ============================================================
   F. Nutton & Son's — Modern Rustic Design System
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Primary palette — modern rustic */
  --forest: #2C3E2D;
  --forest-deep: #1E2B1F;
  --forest-light: #3D5240;
  --sage: #7A8B6F;
  --sage-light: #9BAE8B;

  /* Warm earth tones */
  --earth: #5C4A3A;
  --earth-light: #7D6B5A;
  --bark: #3D3128;
  --honey: #C9A96E;
  --honey-light: #DFC48F;
  --brass: #B8963E;

  /* Neutrals */
  --cream: #F5F1EB;
  --cream-dark: #E8E2D8;
  --stone: #D4CFC6;
  --white: #FAFAF7;
  --off-white: #F0EDE7;

  /* Text */
  --text: #2A2520;
  --text-mid: #5C554D;
  --text-light: #8A847C;
  --text-on-dark: #F5F1EB;
  --text-on-dark-mid: #C4BFB6;

  /* Functional */
  --accent: #B8963E;
  --accent-hover: #A0822F;
  --success: #4A7C59;
  --link: #4A6741;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.08);
  --shadow-md: 0 4px 12px rgba(42, 37, 32, 0.1);
  --shadow-lg: 0 8px 30px rgba(42, 37, 32, 0.12);
  --shadow-xl: 0 16px 50px rgba(42, 37, 32, 0.15);

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}


/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--accent);
}


/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  color: var(--forest-deep);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin-bottom: 1em;
  max-width: 70ch;
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--text-mid);
  line-height: 1.8;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-xs);
  display: block;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brass);
  vertical-align: middle;
  margin-right: 0.75rem;
}


/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}


/* ── Section Spacing ── */
.section {
  padding: var(--space-2xl) 0;
}

.section--lg {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--forest-deep);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark .section-label {
  color: var(--honey);
}

.section--dark .section-label::before {
  background: var(--honey);
}

.section--cream {
  background: var(--cream);
}

.section--stone {
  background: var(--off-white);
}


/* ── Mobile Phone Bar (sticky) ── */
.phone-bar {
  display: none; /* shown on mobile only */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest-deep);
  color: var(--white);
  padding: 0.75rem var(--gutter);
  z-index: 1000;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.phone-bar a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.phone-bar svg {
  width: 20px;
  height: 20px;
  fill: var(--honey);
}

@media (max-width: 768px) {
  .phone-bar {
    display: block;
  }
  body {
    padding-bottom: 60px; /* space for sticky bar */
  }
}


/* ── Header & Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 37, 32, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--forest-deep);
}

.header__logo img {
  height: 70px;
  width: auto;
}

.header__logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.header__logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 1px;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link svg {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 2px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--forest-deep);
}

/* Services dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-fast) var(--ease-out);
  list-style: none;
  border: 1px solid rgba(42, 37, 32, 0.06);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__dropdown a:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

/* CTA button in nav */
.nav__cta {
  margin-left: 1rem;
}

.nav__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 950;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-deep);
  margin: 5px 0;
  transition: all var(--duration-fast) var(--ease-out);
  border-radius: 2px;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    gap: 0;
    overflow-y: auto;
  }

  .nav--open {
    display: flex;
  }

  .nav__link {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
  }

  .nav__dropdown--open {
    display: block;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .nav__cta a {
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: block;
  }
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background: var(--brass);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--forest-deep);
  border: 2px solid var(--forest-deep);
}

.btn--secondary:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--forest-deep);
}

.btn--white:hover {
  background: var(--cream);
  color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* header height */
}

.hero--full {
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 43, 31, 0.85) 0%,
    rgba(44, 62, 45, 0.7) 50%,
    rgba(30, 43, 31, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-2xl) 0;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__content .lead {
  color: var(--text-on-dark-mid);
  margin-bottom: var(--space-lg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 150, 62, 0.2);
  border: 1px solid rgba(184, 150, 62, 0.4);
  color: var(--honey-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Page hero (shorter, for subpages) */
.hero--page {
  min-height: 40vh;
  padding-top: 100px;
}

.hero--page .hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(30, 43, 31, 0.9) 0%,
    rgba(44, 62, 45, 0.8) 100%
  );
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark-mid);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--cream-dark);
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--forest);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-card__link {
  gap: 0.6rem;
}


/* ── Trust Strip ── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.trust-item {
  padding: var(--space-md);
}

.trust-item__number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--honey);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item__label {
  font-size: 0.88rem;
  color: var(--text-on-dark-mid);
  font-weight: 500;
}


/* ── Why Choose Us ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature {
  display: flex;
  gap: var(--space-sm);
}

.feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-top: 0.2rem;
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature h4 {
  margin-bottom: 0.3rem;
}

.feature p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 0;
}


/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--cream-dark);
}

.testimonial-card__stars {
  color: var(--honey);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-style: normal;
}

.testimonial-card__author {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}


/* ── CTA Banner ── */
.cta-banner {
  background: var(--forest-deep);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 150, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: var(--text-on-dark-mid);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
}

.cta-banner__phone {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--honey);
  display: block;
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.cta-banner__phone:hover {
  color: var(--honey-light);
}


/* ── Area Grid ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.area-chip:hover {
  border-color: var(--brass);
  color: var(--forest-deep);
  box-shadow: var(--shadow-sm);
}

.area-chip svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}


/* ── FAQ Accordion ── */
.faq-list {
  max-width: var(--container-narrow);
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  gap: var(--space-sm);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item__answer p {
  padding-bottom: var(--space-md);
  color: var(--text-mid);
  font-size: 0.95rem;
}


/* ── Steps ── */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.step h4 {
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 0;
}


/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(30, 43, 31, 0.8));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--duration-fast) var(--ease-out);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}


/* ── Footer ── */
.footer {
  background: var(--forest-deep);
  color: var(--text-on-dark-mid);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  color: var(--cream);
  text-decoration: none;
}

.footer__brand-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer__brand-logo span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-on-dark-mid);
}

.footer h4 {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-on-dark-mid);
  font-size: 0.88rem;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--honey);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: var(--text-on-dark-mid);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__bottom a {
  color: var(--text-on-dark-mid);
}

.footer__bottom a:hover {
  color: var(--honey);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark-mid);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social a:hover {
  background: var(--brass);
  color: var(--white);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

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


/* ── Breadcrumbs ── */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-on-dark-mid);
  padding: 0;
  margin-bottom: var(--space-sm);
}

.breadcrumbs a {
  color: var(--text-on-dark-mid);
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--honey);
  opacity: 1;
}

.breadcrumbs span {
  opacity: 0.5;
  margin: 0 0.35rem;
}


/* ── Two-column layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Gold corner accent on images */
.split__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--brass);
  border-right: 3px solid var(--brass);
  border-radius: 0 0 var(--radius-xl) 0;
}

.split--reverse .split__image::after {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 3px solid var(--brass);
  border-radius: 0 0 0 var(--radius-xl);
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split--reverse {
    direction: ltr;
  }
}


/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.12);
}

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


/* ── Utility classes ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

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


/* ── Scroll Animations (AOS-compatible) ── */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--duration-slow);
  transition-timing-function: var(--ease-out-expo);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-in"] {
  transform: none;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Stagger children */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }


/* ── Parallax helper ── */
.parallax-bg {
  will-change: transform;
}


/* ── Page-specific: Checklist ── */
.checklist {
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}

.checklist li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--sage);
  margin-top: 0.15rem;
}


/* ── Header hidden (scroll direction) ── */
.header--hidden {
  transform: translateY(-100%);
}

/* ── Body nav open (prevent scroll) ── */
body.nav-open {
  overflow: hidden;
}

/* ── Gallery item caption ── */
.gallery-item__caption {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}


/* ── Print ── */
@media print {
  .header, .footer, .phone-bar, .cta-banner { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; }
}
