/* ============================================
   Northern Rock Septic — Site Styles
   Aesthetic: Editorial Northwoods
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter+Tight:wght@400;500;600&display=swap');

:root {
  /* Palette — deep forest, warm paper, charcoal, brass */
  --pine: #1f3d2e;
  --pine-deep: #152a20;
  --moss: #4a6b52;
  --sage: #c8d5bb;
  --sage-soft: #e4ebdc;
  --paper: #f6f1e8;
  --paper-warm: #ede5d3;
  --ink: #1a1a17;
  --ink-soft: #3a3a35;
  --brass: #b08a4a;
  --line: rgba(26, 26, 23, 0.12);
  --line-strong: rgba(26, 26, 23, 0.25);

  /* Type */
  --display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --body: 'Inter Tight', -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ============================================
   Top Call Bar — sticky, always visible
   ============================================ */

.call-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pine-deep);
  color: var(--paper);
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}

.call-bar__tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--sage);
  font-weight: 500;
}

.call-bar__phone {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-bar__phone::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 var(--sage);
  animation: pulse 2.4s infinite;
}

.call-bar__phone:hover {
  color: var(--sage);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 213, 187, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(200, 213, 187, 0); }
}

/* ============================================
   Header / Nav
   ============================================ */

.header {
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.header__nav--right {
  justify-content: flex-end;
}

.header__nav a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pine);
  transition: width 0.35s var(--ease);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--pine);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.wordmark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.1;
  color: var(--pine-deep);
}

.wordmark__sub {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 96px 48px 120px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--moss);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--pine-deep);
  margin-bottom: 32px;
}

.hero__title em {
  font-style: italic;
  color: var(--moss);
  font-weight: 400;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 44px;
}

.hero__cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border-radius: 0;
}

.btn--primary {
  background: var(--pine-deep);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(21, 42, 32, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--pine-deep);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--pine-deep);
  background: var(--pine-deep);
  color: var(--paper);
}

.btn__arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Hero visual — compass */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}

.compass__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compass__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--display);
}

.compass__center-primary {
  font-size: 42px;
  font-weight: 500;
  color: var(--pine-deep);
  line-height: 1;
  font-style: italic;
}

.compass__center-secondary {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moss);
  font-family: var(--body);
  margin-top: 10px;
  font-weight: 500;
}

/* Hero decorative rings */
.hero__rings {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.hero__rings svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   Trust Marquee
   ============================================ */

.trust-bar {
  background: var(--pine-deep);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(246, 241, 232, 0.08);
}

.trust-bar__track {
  display: flex;
  gap: 72px;
  animation: marquee 42s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.trust-bar__item {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 72px;
}

.trust-bar__item::after {
  content: '✦';
  color: var(--sage);
  font-style: normal;
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Section Primitives
   ============================================ */

.section {
  padding: 128px 48px;
  position: relative;
}

.section--paper-warm {
  background: var(--paper-warm);
}

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

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section__header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.section__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--pine-deep);
}

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

.section__title em {
  font-style: italic;
  color: var(--moss);
}

.section--pine .section__title em {
  color: var(--sage);
}

.section__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}

.section--pine .section__lede {
  color: rgba(246, 241, 232, 0.75);
}

/* ============================================
   Services Grid
   ============================================ */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: var(--paper);
  padding: 44px 36px 52px;
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: default;
}

.service:hover {
  background: var(--sage-soft);
}

.service__number {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: var(--moss);
  margin-bottom: 28px;
  display: block;
}

.service__title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--pine-deep);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.service__icon {
  position: absolute;
  top: 40px;
  right: 36px;
  width: 28px;
  height: 28px;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
}

.service:hover .service__icon {
  opacity: 1;
}

/* ============================================
   Credentials Block
   ============================================ */

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.credentials__seal {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal {
  width: 100%;
  height: 100%;
  position: relative;
}

.seal svg {
  width: 100%;
  height: 100%;
}

.seal__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.seal__label-main {
  font-family: var(--display);
  font-size: 54px;
  font-style: italic;
  color: var(--sage);
  line-height: 1;
  font-weight: 400;
}

.seal__label-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 12px;
  font-weight: 500;
}

.credentials__list {
  list-style: none;
}

.credentials__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.15);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: baseline;
}

.credentials__item:last-child {
  border-bottom: none;
}

.credentials__num {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--sage);
  font-weight: 400;
}

.credentials__text strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.credentials__text span {
  font-size: 14px;
  color: rgba(246, 241, 232, 0.65);
  line-height: 1.5;
}

/* ============================================
   Feature Callout — Pumper Magazine
   ============================================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}

.feature__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--moss);
  margin-bottom: 18px;
}

.feature__quote {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--pine-deep);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.feature__quote::before {
  content: '"';
  color: var(--moss);
  font-size: 48px;
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 4px;
}

.feature__attribution {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.feature__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--pine-deep);
  border-bottom: 1px solid var(--pine-deep);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature__link:hover {
  color: var(--moss);
  border-color: var(--moss);
}

.feature__visual {
  position: relative;
}

.feature__visual-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 600;
  margin-bottom: 14px;
}

.feature__visual-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
  border: 1px solid var(--line);
}

/* ============================================
   Service Area Map
   ============================================ */

.coverage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.coverage__map {
  aspect-ratio: 5/4;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.coverage__map svg {
  width: 100%;
  height: 100%;
}

/* --- Leaflet service-area map --- */
.coverage__map-canvas {
  position: absolute;
  inset: 0;
  background: var(--paper);
}

.coverage__map-canvas.leaflet-container {
  background: var(--paper);
  font-family: var(--body);
  outline: none;
}

/* Warm + desaturate the Positron tiles to match the cream/green palette */
.coverage__map-canvas .leaflet-tile-pane {
  filter: sepia(0.5) saturate(0.55) hue-rotate(45deg) brightness(1.02) contrast(0.92);
  opacity: 0.75;
}

.coverage__map-canvas .leaflet-control-attribution {
  background: rgba(246, 241, 232, 0.78);
  color: var(--moss);
  font-family: var(--body);
  font-size: 9px;
  padding: 2px 6px;
}

.coverage__map-canvas .leaflet-control-attribution a {
  color: var(--moss);
}

/* Town labels (Leaflet tooltips styled as brand labels) */
.coverage__map-canvas .leaflet-tooltip.town-label,
.coverage__map-canvas .leaflet-tooltip.home-label {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: var(--pine-deep);
  white-space: nowrap;
  pointer-events: none;
}

.coverage__map-canvas .leaflet-tooltip.town-label::before,
.coverage__map-canvas .leaflet-tooltip.home-label::before {
  display: none;
}

.coverage__map-canvas .leaflet-tooltip.town-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  text-shadow:
    -2px -2px 0 var(--paper), 2px -2px 0 var(--paper),
    -2px  2px 0 var(--paper), 2px  2px 0 var(--paper),
     0   -2px 0 var(--paper), 0    2px 0 var(--paper),
    -2px  0   0 var(--paper), 2px  0   0 var(--paper);
}

.coverage__map-canvas .home-label__name {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: var(--pine);
  text-shadow:
    -3px -3px 0 var(--paper), 3px -3px 0 var(--paper),
    -3px  3px 0 var(--paper), 3px  3px 0 var(--paper),
     0   -3px 0 var(--paper), 0    3px 0 var(--paper),
    -3px  0   0 var(--paper), 3px  0   0 var(--paper);
}

.coverage__map-canvas .home-label__sub {
  display: block;
  margin-top: 2px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--moss);
  text-shadow:
    -2px -2px 0 var(--paper), 2px -2px 0 var(--paper),
    -2px  2px 0 var(--paper), 2px  2px 0 var(--paper),
     0   -2px 0 var(--paper), 0    2px 0 var(--paper),
    -2px  0   0 var(--paper), 2px  0   0 var(--paper);
}

/* Home base pulse marker */
.home-base-marker {
  position: relative;
  pointer-events: none;
}

.home-base-marker::before,
.home-base-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--pine);
}

.home-base-marker::before {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  opacity: 0.15;
}

.home-base-marker::after {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  opacity: 0.25;
}

.home-base-marker__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: var(--pine);
  border-radius: 50%;
}

.home-base-marker__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--paper);
  border-radius: 50%;
  z-index: 1;
}

/* Compass overlay */
.coverage__compass {
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  pointer-events: none;
  z-index: 500;
}

.coverage__compass svg {
  width: 100%;
  height: 100%;
}

.coverage__towns {
  columns: 2;
  column-gap: 48px;
  list-style: none;
  margin-top: 32px;
}

.coverage__towns li {
  padding: 10px 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--pine-deep);
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.coverage__towns li span {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  font-style: normal;
}

/* ============================================
   Property Maintenance Strip
   ============================================ */

.property {
  background: var(--paper-warm);
  padding: 96px 48px;
}

.property__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.property__intro h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--pine-deep);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.property__intro h2 em {
  font-style: italic;
  color: var(--moss);
}

.property__intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.property__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.property__item {
  background: var(--paper-warm);
  padding: 28px 24px;
  transition: background 0.3s var(--ease);
}

.property__item:hover {
  background: var(--paper);
}

.property__item-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--moss);
  margin-bottom: 12px;
  display: block;
}

.property__item-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--pine-deep);
  letter-spacing: -0.005em;
}

/* ============================================
   CTA Band
   ============================================ */

.cta-band {
  background: var(--pine-deep);
  color: var(--paper);
  padding: 112px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-band__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.cta-band__title em {
  font-style: italic;
  color: var(--sage);
}

.cta-band__phone {
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--sage);
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}

.cta-band__phone:hover {
  border-color: var(--sage);
}

.cta-band__hours {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
  font-weight: 500;
}

.cta-band__topo {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.cta-band__topo svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--ink);
  color: rgba(246, 241, 232, 0.7);
  padding: 80px 48px 40px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
}

.footer__wordmark {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 18px;
}

.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  margin-bottom: 24px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 50%;
  color: rgba(246, 241, 232, 0.7);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.footer__social a:hover {
  color: var(--ink);
  background: var(--sage);
  border-color: var(--sage);
}

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

.footer__col h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 12px;
}

.footer__col a {
  font-size: 14px;
  transition: color 0.3s var(--ease);
}

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

.footer__phone {
  font-family: var(--display);
  font-size: 22px;
  color: var(--paper);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.footer__address {
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.footer__legal {
  max-width: 1280px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(246, 241, 232, 0.45);
}

/* ============================================
   Page — Services
   ============================================ */

.page-hero {
  padding: 80px 48px 96px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}

.page-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 20px;
}

.page-hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--pine-deep);
}

.page-hero__title em {
  font-style: italic;
  color: var(--moss);
}

.page-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
}

/* Service detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr 300px;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__num {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  color: var(--moss);
  padding-top: 8px;
}

.service-detail__main h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  color: var(--pine-deep);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-detail__main p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
}

.service-detail__price {
  text-align: right;
  padding-top: 8px;
}

.service-detail__price-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 8px;
}

.service-detail__price-amount {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}

.service-detail__price-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-style: italic;
}

/* ============================================
   Page — About
   ============================================ */

.about-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 96px 48px 64px;
  text-align: center;
}

.about-intro p {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}

.about-intro p em {
  font-style: italic;
  color: var(--moss);
}

.about-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 48px 96px;
}

.about-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.about-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--pine-deep);
  font-style: italic;
}

/* ============================================
   Page — Contact
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
}

.contact-info h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--pine-deep);
  margin-bottom: 12px;
  margin-top: 40px;
  letter-spacing: -0.005em;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p,
.contact-info a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.contact-info__phone {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  color: var(--pine-deep);
  display: block;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
}

.contact-info__phone:hover {
  color: var(--moss);
}

.contact-info__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info__social a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.contact-info__social a:hover {
  color: var(--pine-deep);
}

.contact-info__social svg {
  width: 20px;
  height: 20px;
  color: var(--moss);
  fill: currentColor;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}

.contact-info__social a:hover svg {
  color: var(--pine-deep);
}

.form {
  background: var(--paper-warm);
  padding: 56px 48px;
  border: 1px solid var(--line);
}

.form h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  color: var(--pine-deep);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.form h2 em {
  font-style: italic;
  color: var(--moss);
}

.form__intro {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__field {
  margin-bottom: 20px;
}

.form__field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 10px;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--pine-deep);
}

.form__field textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--body);
}

.form__submit {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   Mobile Call Fab
   ============================================ */

.mobile-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--pine-deep);
  color: var(--paper);
  padding: 18px 24px;
  z-index: 200;
  text-align: center;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-call::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero__inner,
  .credentials,
  .coverage,
  .feature,
  .property__inner,
  .contact-grid,
  .page-hero__inner,
  .section__header {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .service-detail {
    grid-template-columns: 60px 1fr;
    gap: 32px;
  }

  .service-detail__price {
    grid-column: 2;
    text-align: left;
    margin-top: 16px;
  }

  .feature {
    padding: 56px 40px;
  }
}

@media (max-width: 720px) {
  .call-bar {
    display: none;
  }

  .header {
    padding: 20px 24px;
    grid-template-columns: 1fr auto;
  }

  .header__nav--left {
    display: none;
  }

  .header__nav--right {
    display: none;
  }

  .wordmark {
    text-align: left;
  }

  .hero {
    padding: 56px 24px 80px;
  }

  .section,
  .property,
  .cta-band {
    padding: 80px 24px;
  }

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

  .footer__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 24px;
  }

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

  .form {
    padding: 40px 28px;
  }

  .about-intro,
  .about-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  .coverage__towns {
    columns: 1;
  }

  .contact-grid {
    padding: 56px 24px;
  }
}

/* ============================================
   Scroll Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
