/* ==========================================================================
   GOLD HIVE LANDSCAPING — stylesheet
   Palette:  Forest #0E2B17 · Gold #F4B62A · Cream #F7F2E7 · Charcoal #151515 · Leaf #6C8F2E
   Type:     Fraunces (display) + Work Sans (body/UI)
   Signature: honeycomb / hexagon motif throughout (icon frames, dividers, texture)
   ========================================================================== */

:root {
  --forest: #0e2b17;
  --forest-deep: #081a0d;
  --gold: #f4b62a;
  --gold-dim: #d99f1f;
  --cream: #f7f2e7;
  --charcoal: #151515;
  --leaf: #6c8f2e;
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", -apple-system, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-sm: 6px;
  --container: 1180px;

  --shadow-sm: 0 2px 8px rgba(14, 43, 23, 0.06);
  --shadow-md: 0 10px 28px rgba(14, 43, 23, 0.1);
  --shadow-lg: 0 22px 48px rgba(14, 43, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 6%;
}

a {
  color: inherit;
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
     HONEYCOMB SIGNATURE ELEMENTS
     ========================================================================== */

/* Hexagon icon frame used for services, stats, and brand marks */
.hex {
  width: 84px;
  height: 96px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hex--gold {
  background: var(--gold);
  color: var(--forest);
}
.hex--forest {
  background: var(--forest);
  color: var(--gold);
}
.hex--leaf {
  background: var(--leaf);
  color: var(--cream);
}
.hex--outline {
  background: transparent;
  border: 2px solid var(--gold);
}

.hex svg {
  width: 34px;
  height: 34px;
}

/* Repeating honeycomb divider — a row of small hex outlines */
.comb-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 0;
}

.comb-divider span {
  width: 16px;
  height: 18px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--gold);
  opacity: 0.55;
}
.comb-divider span:nth-child(3n) {
  opacity: 1;
}
.comb-divider span:nth-child(4n) {
  background: var(--leaf);
  opacity: 0.6;
}

/* Faint honeycomb background texture, layered via background-image */
.comb-texture {
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(244, 182, 42, 0.14) 1.6px,
    transparent 1.6px
  );
  background-size: 34px 30px;
}

/* ==========================================================================
     NAVBAR
     ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.navbar-brand .bee {
  font-size: 1.3rem;
}
.navbar-brand strong {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(244, 182, 42, 0.5);
  color: var(--gold);
  width: 42px;
  height: 38px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.nav-toggle:hover {
  border-color: var(--gold);
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .navbar .container {
    flex-wrap: wrap;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 10px;
    border-top: 1px solid rgba(247, 242, 231, 0.15);
  }
  .nav-links.open .nav-cta {
    margin-top: 8px;
  }
}

/* ==========================================================================
     HERO
     ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: radial-gradient(
      ellipse at 15% 20%,
      rgba(244, 182, 42, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  overflow: hidden;
}

.hero::before {
  /* honeycomb texture overlay */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(244, 182, 42, 0.16) 1.8px,
    transparent 1.8px
  );
  background-size: 42px 36px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lede {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(247, 242, 231, 0.88);
  max-width: 540px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(244, 182, 42, 0.28);
}
.btn-gold:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(244, 182, 42, 0.34);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
}
.btn-forest:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.btn-outline-cream {
  border-color: rgba(247, 242, 231, 0.5);
  color: var(--cream);
}
.btn-outline-cream:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-phone {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: rgba(247, 242, 231, 0.7);
}
.hero-phone a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
}
.hero-phone a:hover {
  color: var(--gold);
}
.hero-phone .phone-backup {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(247, 242, 231, 0.55);
  margin-top: 2px;
}
.hero-phone .phone-backup a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(247, 242, 231, 0.75);
}
.hero-phone .phone-backup a:hover {
  color: var(--gold);
}

/* Secondary, shorter hero used on interior pages */
.page-hero {
  position: relative;
  padding: 130px 0 70px;
  color: var(--cream);
  background: radial-gradient(
      ellipse at 85% 10%,
      rgba(244, 182, 42, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(244, 182, 42, 0.14) 1.8px,
    transparent 1.8px
  );
  background-size: 42px 36px;
  opacity: 0.45;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
  font-weight: 600;
}
.page-hero p {
  color: rgba(247, 242, 231, 0.85);
  max-width: 560px;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 300;
}

/* ==========================================================================
     TRUST STRIP
     ========================================================================== */

.trust-strip {
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(244, 182, 42, 0.18);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid rgba(244, 182, 42, 0.14);
  color: rgba(247, 242, 231, 0.85);
  font-size: 0.86rem;
  font-weight: 600;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(244, 182, 42, 0.14);
  }
}
@media (max-width: 520px) {
  .trust-strip .container {
    grid-template-columns: 1fr;
  }
}

.gold-word {
  color: var(--gold-dim);
}
.section-forest .gold-word,
.cta-band .gold-word {
  color: var(--gold);
}

.signoff {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
}

/* ==========================================================================
     SECTIONS — shared
     ========================================================================== */

section {
  padding: 88px 0;
}

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

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 12px;
}
.section-forest .section-eyebrow {
  color: var(--gold);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 14px;
  color: var(--forest);
  font-weight: 600;
}
.section-forest .section-head h2 {
  color: var(--cream);
}

.section-head p {
  color: #4a4a4a;
  font-size: 1.02rem;
}
.section-forest .section-head p {
  color: rgba(247, 242, 231, 0.8);
}

/* ==========================================================================
     INTRO / STATEMENT BLOCK
     ========================================================================== */

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.intro-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  line-height: 1.25;
  margin: 0 0 20px;
}

.intro-grid h2 .gold-word {
  color: var(--gold-dim);
}

.intro-grid p {
  color: #444;
  font-size: 1.02rem;
  margin: 0 0 16px;
}

.stat-box {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--gold);
}

.stat-box .tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--gold);
}

.stat-box p {
  color: rgba(247, 242, 231, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

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

/* ==========================================================================
     SERVICES
     ========================================================================== */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  border: 1px solid #e7e1d3;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(14, 43, 23, 0.12);
  border-color: var(--gold);
}

.service-card .hex {
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--forest);
  margin: 0 0 8px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

.service-card .tags {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--leaf);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
     GALLERY / BEFORE-AFTER PLACEHOLDER
     ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
      135deg,
      rgba(14, 43, 23, 0.05) 0 12px,
      rgba(14, 43, 23, 0.09) 12px 24px
    ),
    var(--white);
  border: 1.5px dashed #c9c0aa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8a8471;
  text-align: center;
  padding: 20px;
}

.gallery-slot .hex {
  width: 52px;
  height: 60px;
}
.gallery-slot span {
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 180px;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
     QUOTE / OWNER
     ========================================================================== */

.owner-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.owner-photo-slot {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
      135deg,
      rgba(14, 43, 23, 0.06) 0 12px,
      rgba(14, 43, 23, 0.1) 12px 24px
    ),
    var(--cream);
  border: 1.5px dashed #c9c0aa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8471;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 6px;
}

.owner-block blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--forest);
  margin: 0 0 22px;
  font-weight: 500;
}

.owner-name {
  font-weight: 700;
  color: var(--forest);
}
.owner-role {
  display: block;
  font-size: 0.85rem;
  color: var(--leaf);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .owner-block {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
     ABOUT PAGE TEXT BLOCKS
     ========================================================================== */

.about-lead {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin: 0 0 18px;
  font-weight: 600;
  line-height: 1.25;
}

.prose p {
  color: #444;
  margin: 0 0 16px;
  font-size: 1.02rem;
}
.prose p:last-child {
  margin-bottom: 0;
}

.brand-story-text p {
  color: rgba(247, 242, 231, 0.85);
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.brand-story-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
     MISSION / BRAND STORY (about page)
     ========================================================================== */

.mission-box {
  background: var(--cream);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.mission-box p.big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.mission-box p.big .gold-word {
  color: var(--gold-dim);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.value-chip {
  text-align: center;
  padding: 22px 10px;
}

.value-chip .hex {
  margin: 0 auto 14px;
  width: 60px;
  height: 68px;
}
.value-chip span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
     CTA BAND
     ========================================================================== */

.cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(244, 182, 42, 0.14) 1.8px,
    transparent 1.8px
  );
  background-size: 42px 36px;
  opacity: 0.4;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 14px;
}
.cta-band h2 .gold-word {
  color: var(--gold);
}

.cta-band p {
  color: rgba(247, 242, 231, 0.82);
  margin: 0 0 30px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-backup {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: rgba(247, 242, 231, 0.55);
}
.cta-backup a {
  color: rgba(247, 242, 231, 0.8);
  font-weight: 600;
  text-decoration: none;
}
.cta-backup a:hover {
  color: var(--gold);
}

/* ==========================================================================
     CONTACT PAGE
     ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e7e1d3;
  padding: 30px;
  margin-bottom: 18px;
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.contact-card a.big-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dim);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a.big-phone:hover {
  color: var(--forest);
}

.contact-card p.phone-alt {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: #888;
}
.contact-card p.phone-alt a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.contact-card p.phone-alt a:hover {
  color: var(--gold-dim);
}

.contact-card p {
  margin: 8px 0 0;
  color: #555;
  font-size: 0.92rem;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-area-list li {
  background: var(--cream);
  border: 1px solid #e7e1d3;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e7e1d3;
  padding: 40px;
}

.form-card h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 6px;
  font-size: 1.4rem;
}
.form-card > p {
  color: #666;
  margin: 0 0 26px;
  font-size: 0.94rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid #e0dac9;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}

.form-success {
  text-align: center;
  padding: 30px 10px 6px;
}
.form-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-success p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}
.form-success a {
  color: var(--gold-dim);
  font-weight: 700;
  text-decoration: none;
}
.form-success a:hover {
  text-decoration: underline;
}

.schedule-card {
  padding: 40px 30px;
}
.schedule-card > p {
  margin-bottom: 20px;
}
.schedule-fallback {
  text-align: center;
  margin-top: 4px;
  color: #666;
  font-size: 0.9rem;
}
.schedule-fallback a {
  color: var(--gold-dim);
  font-weight: 700;
  text-decoration: none;
}
.schedule-fallback a:hover {
  text-decoration: underline;
}

.map-slot {
  margin-top: 18px;
  height: 220px;
  border-radius: var(--radius);
  border: 1.5px dashed #c9c0aa;
  background: repeating-linear-gradient(
      135deg,
      rgba(14, 43, 23, 0.05) 0 12px,
      rgba(14, 43, 23, 0.09) 12px 24px
    ),
    var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8471;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

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

/* ==========================================================================
     FOOTER
     ========================================================================== */

footer {
  background: var(--forest-deep);
  color: rgba(247, 242, 231, 0.85);
  padding: 60px 0 26px;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand strong {
  color: var(--gold);
}

footer .tagline {
  font-size: 0.9rem;
  color: rgba(247, 242, 231, 0.6);
  max-width: 320px;
}

footer h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin: 0 0 16px;
  font-weight: 600;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 231, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(247, 242, 231, 0.5);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
