/* ============================================================
   POCONO PROPERTY CARE — style.css
   ============================================================ */

/* ---------- Picture element layout fix ---------- */
picture { display: contents; }

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

/* ---------- Custom Properties ---------- */
:root {
  --color-bg:      #0F1A0D;
  --color-surface: #1A2B17;
  --color-accent:  #7CB342;
  --color-gold:    #C8A951;
  --color-text:    #E8EDE6;
  --color-muted:   #8A9E85;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-height: 110px;
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);

  --radius-card: 6px;
  --transition-base: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Utility: Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 26, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(124, 179, 66, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-accent);
}

.nav-links li a.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 3px;
  color: #ffffff;
  font-weight: 600;
  transition: background var(--transition-base), color var(--transition-base);
}

.nav-links li a.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ---------- Nav Dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-arrow {
  font-size: 0.62em;
  margin-left: 0.2rem;
  display: inline-block;
  transition: transform var(--transition-base);
  vertical-align: middle;
}

.nav-dropdown.is-open .nav-dropdown-arrow,
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  max-height: 480px;
  overflow-y: auto;
  background: var(--color-surface);
  border: 1px solid rgba(124, 179, 66, 0.18);
  border-radius: var(--radius-card);
  padding: 0.6rem 0;
  padding-top: 0.6rem;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base), background var(--transition-base);
}

.nav-dropdown-menu li a:hover {
  color: var(--color-accent);
  background: rgba(124, 179, 66, 0.08);
}

/* ---------- Mobile Drawer Dropdown ---------- */
.drawer-dropdown-toggle {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  text-align: left;
}

.drawer-dropdown-list {
  display: none;
  list-style: none;
  padding: 0.5rem 0 0.25rem 1rem;
  margin: 0;
}

.drawer-dropdown-list.open {
  display: block;
}

.drawer-dropdown-list li a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.drawer-dropdown-list li a:hover {
  color: var(--color-accent);
}

/* ---------- Footer NAP ---------- */
.footer-nap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0.75rem 0 1rem;
}

.footer-nap-phone {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-nap-phone:hover {
  color: var(--color-gold);
}

.footer-nap-address {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 26, 13, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: max-height 0.35s ease;
}

.nav-drawer.open {
  max-height: 600px;
}

.nav-drawer ul {
  padding: 1rem var(--container-pad) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer ul li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid rgba(138, 158, 133, 0.15);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.nav-drawer ul li:last-child a {
  border-bottom: none;
}

.nav-drawer ul li a:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0a1408; /* fallback while video loads */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 8, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-inline: var(--container-pad);
  max-width: 860px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(232, 237, 230, 0.85);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero element stagger — each child animates in sequence on page load */
.hero-eyebrow { animation: heroFadeUp 0.7s ease 0.15s both; }
.hero-heading  { animation: heroFadeUp 0.7s ease 0.45s both; }
.hero-sub      { animation: heroFadeUp 0.7s ease 0.75s both; }
.hero-actions  { animation: heroFadeUp 0.7s ease 1.0s  both; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), transform var(--transition-base),
              box-shadow var(--transition-base);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: #8fcf4d;
  border-color: #8fcf4d;
  box-shadow: 0 8px 24px rgba(124, 179, 66, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(232, 237, 230, 0.5);
  border-bottom: 2px solid rgba(232, 237, 230, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.gold-line {
  width: 52px;
  height: 3px;
  background: var(--color-gold);
  margin: 0.75rem auto 1.25rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--color-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(138, 158, 133, 0.12);
  border-left: 3px solid transparent;
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  transition: border-left-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.service-card:hover {
  border-left-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   PLACEHOLDER SECTIONS
   ============================================================ */
.placeholder-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--color-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(138, 158, 133, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

/* ---------- Image column ---------- */
.about-image-col {
  /* Extra padding so the offset frame doesn't get clipped */
  padding-bottom: 22px;
  padding-right: 22px;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-card);
}

/* Offset green border frame peeking behind bottom-right */
.about-image-frame::before {
  content: '';
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-card);
  opacity: 0.45;
  pointer-events: none;
}

.about-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

/* ---------- Gold line: left-aligned variant ---------- */
.gold-line--left {
  margin-inline: 0;
}

/* ---------- Text column ---------- */
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about-body {
  font-size: 1.025rem;
  color: var(--color-muted);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 48ch;
}

/* ---------- Stat pills ---------- */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  background: var(--color-surface);
  border: 1px solid rgba(138, 158, 133, 0.18);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
  white-space: nowrap;
}

.stat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ---------- Pull-quote ---------- */
.about-pullquote {
  display: block;
  padding: 1.4rem 1.6rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(138, 158, 133, 0.15);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: border-color var(--transition-base), transform var(--transition-base),
              box-shadow var(--transition-base);
}

.about-pullquote:hover {
  border-color: rgba(124, 179, 66, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.pullquote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  user-select: none;
}

.pullquote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.975rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.pullquote-author {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  background-image: url('images/mulch-installation-pocono-mountains-pa.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

/* Heavy dark overlay */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 8, 0.82);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

/* ---------- Heading block ---------- */
.contact-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 0.6rem;
}

.contact-subheading {
  font-size: 1.05rem;
  color: rgba(232, 237, 230, 0.7);
  font-weight: 300;
}

/* ---------- Two-column layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

/* Text column visually on right, form on left */
.contact-text-col {
  order: 2;
}

/* ---------- Card wrapper ---------- */
.contact-card {
  background: rgba(15, 26, 13, 0.75);
  border: 1px solid rgba(138, 158, 133, 0.18);
  border-radius: 8px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  order: 1;
}

/* ---------- Jobber iframe embed ---------- */
.jobber-embed-wrap {
  position: relative;
  width: 100%;
  min-height: 900px;
}

.jobber-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 900px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.jobber-skeleton {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #1a2b18 25%, #243322 50%, #1a2b18 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.jobber-skeleton.loaded {
  opacity: 0;
  pointer-events: none;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.jobber-fallback {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(200, 220, 196, 0.7);
  text-align: center;
}

.jobber-fallback a {
  color: var(--clr-gold);
  text-decoration: underline;
}

/* ---------- Contact info sidebar ---------- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-block {
  background: rgba(15, 26, 13, 0.75);
  border: 1px solid rgba(138, 158, 133, 0.18);
  border-radius: 8px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(138, 158, 133, 0.2);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.1rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.55;
}

.contact-info-value a {
  color: var(--color-text);
  transition: color var(--transition-base);
}

.contact-info-value a:hover {
  color: var(--color-accent);
}

/* ---------- Form grid ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field-full {
  grid-column: 1 / -1;
}

/* ---------- Field groups ---------- */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.field-required {
  color: #e05252;
  margin-left: 1px;
}

.field-optional {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(138, 158, 133, 0.65);
  margin-left: 0.25rem;
}

/* Shared input / select / textarea styles */
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1.5px solid rgba(138, 158, 133, 0.22);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(138, 158, 133, 0.45);
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.14);
}

.field-input.has-error,
.field-select.has-error,
.field-textarea.has-error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.12);
}

/* Select — custom arrow, remove native appearance */
.field-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238A9E85' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  /* merge with the surface background */
  background-color: var(--color-surface);
}

/* Select option colours (best-effort — browsers vary) */
.field-select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.field-select option[value=""][disabled] {
  color: rgba(138, 158, 133, 0.45);
}

/* Textarea */
.field-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Inline error messages */
.field-error {
  display: none;
  font-size: 0.775rem;
  color: #e05252;
  letter-spacing: 0.01em;
  padding-top: 1px;
}

.field-error.visible {
  display: block;
}

/* ---------- Submit button ---------- */
.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  background: #8fcf4d;
  border-color: #8fcf4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 179, 66, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- Success state ---------- */
.contact-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.contact-success.visible {
  display: block;
}

.success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(124, 179, 66, 0.15);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.success-msg {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* ============================================================
   OUR WORK SECTION
   ============================================================ */
.work-section {
  background: var(--color-surface);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(138, 158, 133, 0.1);
  border-bottom: 1px solid rgba(138, 158, 133, 0.1);
}

/* ---------- Before / After Sliders ---------- */
.ba-sliders-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ba-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--color-bg);
  /* Subtle ring so it reads as interactive */
  box-shadow: 0 0 0 1px rgba(138, 158, 133, 0.15);
  transition: box-shadow var(--transition-base);
}

.ba-slider:hover {
  box-shadow: 0 0 0 1px rgba(124, 179, 66, 0.35),
              0 8px 32px rgba(0, 0, 0, 0.4);
}

/* After image — base layer, always full width */
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Before wrapper — clips at the divider position */
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;   /* JS overrides this */
  overflow: hidden;
}

/* Before image — full container width (set by JS) so it doesn't squish */
.ba-before {
  position: absolute;
  inset: 0;
  height: 100%;
  /* width set inline by JS */
  object-fit: cover;
  pointer-events: none;
}

/* Divider line */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;   /* JS overrides this */
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Circular drag handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  /* Pulse 3 times after a short delay to hint draggability */
  animation: handlePulse 1.3s ease-in-out 1.2s 3 both;
}

.ba-handle.interacted {
  animation: none;
}

.ba-handle svg {
  width: 100%;
  height: 100%;
}

@keyframes handlePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.55);
  }
}

/* Before / After labels */
.ba-label {
  position: absolute;
  top: 0.75rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
}

.ba-label-before {
  left: 0.75rem;
  background: rgba(15, 26, 13, 0.75);
  color: var(--color-muted);
}

.ba-label-after {
  right: 0.75rem;
  background: rgba(124, 179, 66, 0.85);
  color: #fff;
}

.ba-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- Photo Grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0.875rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-bg);
}

.photo-item.span-2 {
  grid-row: span 2;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.photo-item:hover .photo-overlay {
  background: rgba(10, 20, 8, 0.58);
}

.photo-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Tabbed Gallery ---------- */
.gallery-tabs {
  margin-top: 0;
}

.gallery-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-tab-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1.5px solid transparent;
  border-radius: 2rem;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.gallery-tab-btn:hover {
  color: var(--color-text);
  border-color: var(--color-accent);
}

.gallery-tab-btn.active {
  color: var(--color-bg);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--color-surface);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.reviews-rating {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

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

.review-card {
  background: var(--color-bg);
  border: 1px solid rgba(138, 158, 133, 0.14);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-quote {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080F07;
  border-top: 1px solid rgba(138, 158, 133, 0.15);
  padding-block: clamp(3rem, 6vw, 5rem) 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(138, 158, 133, 0.12);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 340px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-service-area {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.65rem;
}

.footer-towns {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-towns li {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-bottom {
  padding-block: 1.35rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: var(--color-muted);
  opacity: 0.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Reviews carousel — mobile horizontal snap (before grid overrides below) */
@media (max-width: 767px) {
  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1.25rem;
    /* nudge so first card doesn't sit flush against the edge */
    padding-inline: var(--container-pad);
    margin-inline: calc(-1 * var(--container-pad));
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
}

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact section */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .about-body {
    max-width: none;
  }

  /* Work section */
  .ba-sliders-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Third slider spans full width on tablet */
  .ba-sliders-row .ba-slider-wrap:last-child {
    grid-column: 1 / -1;
    max-width: 540px;
    margin-inline: auto;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

/* Mobile: Jobber iframe taller on narrow screens */
@media (max-width: 767px) {
  .jobber-embed-wrap {
    min-height: 1100px;
  }
  .jobber-embed-wrap iframe {
    height: 1100px;
  }
}

/* Mobile nav threshold: ≤ 768px */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-img {
    height: 80px;
    width: 80px;
  }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .review-meta {
    flex-direction: column;
    gap: 0.2rem;
  }

  /* About section */
  .about-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Contact section */
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  /* background-attachment: fixed doesn't work on iOS — fall back gracefully */
  .contact-section {
    background-attachment: scroll;
  }

  /* Work section */
  .ba-sliders-row {
    grid-template-columns: 1fr;
  }

  .ba-sliders-row .ba-slider-wrap:last-child {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  /* Kill row-spanning on mobile — single column looks better uniform */
  .photo-item.span-2 {
    grid-row: span 1;
  }
}

/* Extra small screens: < 390px */
@media (max-width: 389px) {
  :root {
    --container-pad: 1rem;
    --nav-height: 80px;
  }

  .nav-inner {
    height: var(--nav-height);
  }

  .nav-logo-img {
    height: 70px;
    width: 70px;
  }

  .nav-dropdown-arrow {
    font-size: 0.75rem;
  }

  .service-card {
    padding: 1.25rem 1rem;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .btn {
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }

  .footer-nap-phone {
    font-size: 0.95rem;
  }

  .footer-nap-address {
    font-size: 0.85rem;
  }

  .contact-info-label {
    font-size: 0.75rem;
  }

  .contact-info-value {
    font-size: 0.9rem;
  }

  .field-textarea {
    min-height: 100px;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .photo-grid {
    gap: 0.75rem;
  }

  .reviews-grid {
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .review-card {
    flex: 0 0 80vw;
  }

  h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  h3 {
    font-size: 1.05rem;
  }
}

/* ============================================================
   NAV LOGO IMAGE
   ============================================================ */
.nav-logo-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.25);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(124, 179, 66, 0.4);
}

/* ============================================================
   SERVICE CARD — "Get a Quote" CTA LINK
   ============================================================ */
.service-book-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  transition: color var(--transition-base), gap var(--transition-base);
}

.service-book-link:hover {
  color: var(--color-gold);
}

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.page-hero {
  background: var(--color-surface);
  padding: calc(var(--nav-height) + 4rem) var(--container-pad) 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(124, 179, 66, 0.12);
}

.page-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-page-section {
  padding: 4rem 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.service-page-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 2.5rem 0 0.75rem;
}

.service-page-section h2:first-child {
  margin-top: 0;
}

.service-page-section p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.service-page-section ul {
  color: var(--color-muted);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-page-section ul li {
  margin-bottom: 0.35rem;
}

.service-page-cta {
  background: var(--color-surface);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.service-page-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-text);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.service-page-cta p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.service-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   JOBBER CTA CARD — service pages, end of main content
   ============================================================ */
.jobber-cta-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(26, 43, 23, 0.9) 100%);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.jobber-cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  margin-bottom: 0.6rem;
  margin-top: 0;
}

.jobber-cta-card p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

/* ============================================================
   MID-PAGE CTA — homepage, between Work and Reviews
   ============================================================ */
.mid-cta-section {
  position: relative;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: clamp(4rem, 10vw, 7rem) var(--container-pad);
  text-align: center;
}

.mid-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 7, 0.78);
}

.mid-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.mid-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mid-cta-sub {
  color: rgba(232, 237, 230, 0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 18, 8, 0.97);
    border-top: 1px solid rgba(138, 158, 133, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-cta-call,
  .mobile-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    min-height: 44px;
    text-align: center;
    transition: filter 0.2s ease;
  }

  .mobile-cta-call:hover,
  .mobile-cta-book:hover {
    filter: brightness(1.1);
  }

  .mobile-cta-call {
    background: var(--color-accent);
    color: var(--color-bg);
    border: 2px solid var(--color-accent);
  }

  .mobile-cta-book {
    background: var(--color-gold);
    color: var(--color-bg);
    border: 2px solid var(--color-gold);
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   FOOTER — NEW ELEMENTS
   ============================================================ */
.footer-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline a,
.footer-service-area a {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.footer-tagline a:hover,
.footer-service-area a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition-base);
}

.footer-social-link:hover {
  color: var(--color-accent);
}

.footer-social-link svg {
  flex-shrink: 0;
}

.footer-col-secondary {
  margin-top: 1rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.7;
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: left;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.825rem;
  color: var(--color-muted);
  opacity: 0.8;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.back-to-top {
  font-weight: 500;
}

/* ============================================================
   BOOKING PAGE — STYLES
   ============================================================ */

/* Hero variant for booking page (no video background) */
.hero-booking {
  background-image: linear-gradient(135deg, rgba(10, 20, 8, 0.7) 0%, rgba(10, 20, 8, 0.65) 100%);
  background-color: #0a1408;
}

.hero-booking .hero-video {
  display: none;
}

/* Booking section — main content area */
.booking-section {
  padding: var(--section-pad) var(--container-pad);
  background: var(--color-bg);
}

.booking-wrapper {
  max-width: 900px;
  margin-inline: auto;
}

.booking-form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.booking-note {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(124, 179, 66, 0.06);
  border-left: 4px solid var(--color-accent);
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-form-container {
    padding: 1.75rem;
  }

  .booking-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================================
   BLOG — index + article shared styles
   ============================================================ */

.blog-hero {
  background: var(--color-surface);
  padding: calc(var(--nav-height) + 3.5rem) var(--container-pad) 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(124, 179, 66, 0.12);
}
.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.blog-hero p {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.blog-section {
  padding: 4rem 0 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0 0 0.75rem;
  text-decoration: none;
  display: block;
}
.blog-card-title:hover { color: var(--color-accent); }
.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: rgba(200, 220, 196, 0.45);
}
.blog-card-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.blog-card-read-more:hover { text-decoration: underline; }

/* ── Blog post article ── */
.blog-post-section {
  padding: 3.5rem 0 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
.blog-post-article {
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(200, 220, 196, 0.5);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(124, 179, 66, 0.12);
}
.blog-post-article h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 2.25rem 0 0.75rem;
  line-height: 1.3;
}
.blog-post-article h2:first-child { margin-top: 0; }
.blog-post-article h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 1.75rem 0 0.5rem;
}
.blog-post-article p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}
.blog-post-article ul, .blog-post-article ol {
  color: var(--color-muted);
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-post-article li { margin-bottom: 0.4rem; }
.blog-post-article a { color: var(--color-accent); text-decoration: underline; }
.blog-post-article strong { color: var(--color-text); }

/* Inline callout CTA box */
.blog-callout {
  background: linear-gradient(135deg, rgba(26,43,23,0.95) 0%, rgba(15,26,13,0.98) 100%);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.blog-callout p { margin-bottom: 0.75rem; }
.blog-callout h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

/* End-of-post quote CTA */
.blog-end-cta {
  background: var(--color-surface);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.blog-end-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.blog-end-cta p {
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.blog-end-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-callout { padding: 1.25rem 1.25rem; }
}
