/* ============================================================
   FARKAS FLOORING — editorial / Stryd-inspired UI
   Cormorant Garamond + Outfit, warm paper, charcoal ink
   ============================================================ */

:root {
  --paper:        #f2f0e8;
  --paper-deep:   #e6e4dc;
  --cream:        #faf9f5;
  --white:        #ffffff;
  --ink:          #1c1410;   /* dark wood-brown from card */
  --ink-soft:     #2e2016;
  --muted:        #5f5550;
  --muted-light:  #8a8278;
  --line:         rgba(28, 20, 16, 0.12);
  --line-strong:  rgba(28, 20, 16, 0.22);

  --brand:        #c4601a;   /* burnt orange from business card */
  --brand-dark:   #a34f14;
  --brand-pale:   #f9ede4;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Outfit", system-ui, -apple-system, sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.0625rem;
  --text-xl:   1.125rem;
  --text-2xl:  clamp(1.5rem, 2.5vw, 1.85rem);
  --text-hero: clamp(2.35rem, 5.5vw, 3.75rem);
  --text-section: clamp(1.85rem, 3vw, 2.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --pill: 9999px;

  --shadow-soft: 0 24px 60px rgba(42, 42, 42, 0.08);
  --shadow-card: 0 1px 0 var(--line), 0 18px 40px rgba(42, 42, 42, 0.06);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 220ms var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0.01em;
}

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

a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Skip & focus ─────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 1000;
  padding: var(--space-2) var(--space-4);
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 200ms var(--ease);
}

.skip-nav:focus {
  top: var(--space-2);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

.section {
  padding-block: var(--space-20);
}

.section-title-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-section);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.section h2:not(.section-title-serif) {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-section);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}

.section-head-editorial {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-6);
}

.section-head-editorial .section-sub {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .section-head-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .section-head-editorial .section-sub {
    justify-self: end;
    text-align: right;
    max-width: 42ch;
  }
}

/* ── Buttons & links ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-pill { border-radius: var(--pill); }

.btn-ink {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-ink:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

.btn-header {
  padding: 0.55rem 1.25rem;
  font-size: var(--text-xs);
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-header:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.btn-nav-full {
  width: 100%;
  margin-top: var(--space-2);
}

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

.btn-primary:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.link-underline {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.link-underline:hover {
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.header-end {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.header-social {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-social-link:hover {
  color: var(--ink);
}

.icon-arrow-out {
  opacity: 0.55;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  background: var(--ink);
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--brand);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--brand);
}

/* 3-bar icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 250ms var(--ease), opacity 250ms var(--ease), width 250ms var(--ease);
}

/* middle bar shortens on hover */
.nav-toggle:hover .hamburger span:nth-child(2) {
  width: 70%;
}

/* animate to X when open */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile dropdown */
.primary-nav {
  position: absolute;
  top: calc(100% + 6px);
  left: var(--space-5);
  right: var(--space-5);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5) var(--space-6);
  box-shadow: 0 20px 60px rgba(28,20,16,0.14);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.primary-nav li:not(.nav-mobile-cta) {
  border-bottom: 1px solid var(--line);
}

.primary-nav li:first-child a {
  padding-top: var(--space-2);
}

.primary-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav a:not(.btn)::after {
  content: '→';
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.primary-nav a:not(.btn):hover::after {
  opacity: 0.4;
  transform: translateX(0);
}

.primary-nav a:hover {
  color: var(--brand);
}

.nav-mobile-cta {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  display: flex;
  justify-content: center;
}

.nav-mobile-cta .btn {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: var(--text-base);
  font-weight: 600;
  width: 100%;
  justify-content: center;
  padding: 0.85rem var(--space-6);
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  border-radius: var(--pill);
  box-shadow: 0 4px 18px rgba(196, 96, 26, 0.28);
}

.nav-mobile-cta .btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196, 96, 26, 0.38);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .header-end {
    display: flex;
    flex-shrink: 0;
  }

  /* hide social links until there's real room */
  .header-social { display: none; }

  .primary-nav {
    display: block !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .primary-nav a {
    padding: var(--space-2) var(--space-2);
    font-size: var(--text-xs);
    position: relative;
    white-space: nowrap;
  }

  .primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--space-2);
    right: var(--space-2);
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

  .primary-nav a:hover::after {
    transform: scaleX(1);
  }

  .nav-mobile-cta { display: none; }

  .header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-height: 76px;
  }

  .brand {
    flex-shrink: 0;
    min-width: max-content;
  }

  .primary-nav {
    flex: 1;
    min-width: 0;
  }

  .header-end {
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .header-social { display: flex; }

  .primary-nav a {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
  }

  .primary-nav a::after {
    left: var(--space-3);
    right: var(--space-3);
  }
}

/* ── Hero (editorial) ─────────────────────────────────────── */
.hero-editorial {
  padding-block: var(--space-16) var(--space-12);
  background: var(--paper);
  border-top: 3px solid var(--brand);
}

.hero-editorial-grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .hero-editorial-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto auto;
    column-gap: var(--space-12);
    row-gap: var(--space-10);
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .hero-aside {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .hero-visual {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.hero-kicker::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 1px;
  background: var(--muted);
}

.hero-lede {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5) var(--space-8);
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.hero-figure img {
  width: 100%;
  height: clamp(220px, 48vw, 520px);
  object-fit: cover;
  object-position: center;
}

/* ── About ─────────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr minmax(280px, 420px);
  }
}

.about-text p {
  margin-bottom: var(--space-5);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  max-width: 58ch;
}

.about-text p:last-child { margin-bottom: 0; }

.about-visual img {
  width: 100%;
  height: min(420px, 50vw);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

/* ── Shared section intro ──────────────────────────────────── */
.section-intro {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-intro .section-title-serif {
  margin-bottom: var(--space-3);
}

.section-intro .section-sub {
  margin-bottom: 0;
  max-width: 52ch;
  margin-inline: auto;
}

/* ── Services ──────────────────────────────────────────────── */
.services-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.services-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease);
}

.service-card:hover {
  box-shadow: 0 20px 56px rgba(42,42,42,.10);
}

@media (prefers-reduced-motion: no-preference) {
  .service-card:hover { transform: translateY(-4px); }
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.service-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.service-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* Advantage strip */
.advantage-strip {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .advantage-strip {
    grid-template-columns: 280px 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.advantage-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.advantage-strip-sub {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(250,249,245,.65);
  line-height: 1.65;
}

.advantage-strip-sub a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.advantage-strip-sub a:hover {
  color: #e0782a;
}

.advantage-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding-block: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.advantage-item:first-child {
  padding-top: 0;
}

.advantage-number {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  min-width: 2.5ch;
}

.advantage-item strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.advantage-item p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(250,249,245,.6);
  line-height: 1.65;
}

/* ── Packages ──────────────────────────────────────────────── */
.packages-section {
  background: var(--paper);
}

.tier-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* base card */
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease);
}

.tier-card:hover {
  box-shadow: 0 20px 56px rgba(42,42,42,.11);
}

@media (prefers-reduced-motion: no-preference) {
  .tier-card:hover { transform: translateY(-4px); }
}

/* top row: dot + tier name + badge */
.tier-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dot-color, var(--muted-light));
}

.tier-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.tier-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--white);
  padding: 3px 9px;
  border-radius: var(--pill);
}

/* heading */
.tier-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--line);
}

/* feature list */
.tier-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-10);
}

.tier-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: 0.7rem;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.tier-list li:last-child {
  border-bottom: none;
}

.tier-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dot-color, var(--muted-light));
  margin-top: 0.35em;
}

/* CTA */
.tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--pill);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.tier-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* per-tier accent colours */
.tier-card--silver { --dot-color: #9aa0ab; }

.tier-card--gold {
  --dot-color: var(--brand);
  background: var(--ink);
  border-color: var(--ink);
}

.tier-card--gold .tier-name    { color: rgba(250,249,245,.5); }
.tier-card--gold .tier-title   { color: var(--cream); border-bottom-color: rgba(255,255,255,.1); }
.tier-card--gold .tier-list li { color: rgba(250,249,245,.65); border-bottom-color: rgba(255,255,255,.08); }
.tier-card--gold .tier-list li:last-child { border-bottom: none; }
.tier-card--gold .tier-cta     { border-color: var(--brand); color: var(--brand); }
.tier-card--gold .tier-cta:hover { background: var(--brand); color: var(--white); }

.tier-card--platinum { --dot-color: #5f5e5a; }

/* ── Materials ─────────────────────────────────────────────── */
.materials-section {
  background: var(--paper-deep);
}

.mat-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .mat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .mat-grid { grid-template-columns: repeat(3, 1fr); }
}

.mat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease);
}

.mat-card:hover {
  box-shadow: 0 20px 56px rgba(42,42,42,.11);
}

@media (prefers-reduced-motion: no-preference) {
  .mat-card:hover { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .mat-card:hover { transform: none; }
}

.mat-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.mat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease);
}

.mat-card:hover .mat-img-wrap img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .mat-card:hover .mat-img-wrap img { transform: none; }
}

.mat-body {
  padding: var(--space-8) var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mat-tag {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: var(--space-3);
}

.mat-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.mat-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-6);
}

.mat-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--line-strong);
  width: fit-content;
  transition: color var(--transition), border-color var(--transition);
}

.mat-link:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.mat-link svg {
  transition: transform var(--transition);
}

.mat-link:hover svg {
  transform: translate(2px, -2px);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease);
}

.review-card:hover {
  box-shadow: 0 16px 48px rgba(42,42,42,.10);
}

@media (prefers-reduced-motion: no-preference) {
  .review-card:hover { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .review-card:hover { transform: none; }
}

.review-stars {
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.review-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.review-body {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: auto;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  margin-top: var(--space-3);
}

.review-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.review-location {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--muted-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Why ───────────────────────────────────────────────────── */
.why-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.why-grid {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr minmax(300px, 440px);
  }
}

.why-text > p {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.why-list li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line);
}

.why-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 3px;
}

.why-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-1);
}

.why-list p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual img {
  width: 100%;
  height: min(460px, 55vw);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.review-cta {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.85rem var(--space-8);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--pill);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(42,42,42,.06);
}

.btn-google-review:hover {
  background: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 6px 24px rgba(42,42,42,.10);
  color: var(--ink);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-lede {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: var(--space-5);
}

.contact-area {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: var(--space-8);
}

.contact-right {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding-top: 3px;
}

.contact-row dd {
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
}

.contact-row dd a {
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.contact-map-placeholder {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  text-align: center;
  padding: var(--space-10) var(--space-8);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.6;
  box-shadow: var(--shadow-card);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(250, 249, 245, 0.72);
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
}

.footer-inner {
  display: grid;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-3);
}

.footer-brand p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
}

.footer-brand a {
  color: rgba(250, 249, 245, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.55);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(250, 249, 245, 0.65);
}

.footer-social a:hover {
  color: var(--cream);
}

.footer-credits {
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(250, 249, 245, 0.42);
  line-height: 1.75;
}

.footer-credits a {
  color: rgba(250, 249, 245, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credits a:hover {
  color: var(--cream);
}

.footer-legal {
  margin-top: var(--space-3);
  letter-spacing: 0.04em;
}

/* ── Trust / Accreditation Badges ───────────────────────── */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-trust-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.45);
  margin: 0 0 var(--space-1);
}

.trust-badge {
  display: inline-flex;
  text-decoration: none;
  border: 1px solid rgba(250, 249, 245, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(250, 249, 245, 0.25);
}

.trust-badge-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge-logo {
  flex-shrink: 0;
  height: auto;
  display: block;
  border-radius: 4px;
}

.trust-badge-logo--light {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.trust-badge-logo--dark {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-badge-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(250, 249, 245, 0.85);
  line-height: 1.2;
}

.trust-badge-rating {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: rgba(250, 249, 245, 0.65);
  line-height: 1.2;
}

.trust-badge-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(250, 249, 245, 0.35);
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════
   INSTAGRAM / GALLERY
══════════════════════════════════════════════════ */
.gallery-section {
  background: var(--paper);
}

.insta-handle {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.insta-handle:hover {
  color: var(--brand-dark);
}

.insta-feed-wrap {
  width: 100%;
  min-height: 300px;
}

.insta-feed-wrap behold-widget {
  display: block;
  width: 100%;
}

/* Mobile: tighter padding so feed fills the screen edge-to-edge */
@media (max-width: 640px) {
  .gallery-section .container {
    padding-inline: var(--space-4);
  }

  .insta-feed-wrap {
    border-radius: var(--radius-lg);
    /* reduce side gap so photos are larger on small screens */
    margin-inline: calc(-1 * var(--space-1));
  }
}

.insta-fallback {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

/* ══════════════════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════════════════ */
.service-area-section {
  background: var(--ink);
  color: var(--cream);
}

.service-area-section .section-title-serif {
  color: var(--cream);
}

.service-area-section .section-sub {
  color: rgba(250, 249, 245, 0.65);
}

.area-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .area-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.area-counties {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .area-counties {
    grid-template-columns: repeat(3, 1fr);
  }
}

.area-county-name {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 var(--space-3);
}

.area-towns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.area-towns li {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(250, 249, 245, 0.75);
  padding-left: var(--space-3);
  position: relative;
}

.area-towns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}

.area-note-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.area-note-card svg {
  color: var(--brand);
  flex-shrink: 0;
}

.area-note-card p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(250, 249, 245, 0.75);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-section {
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-item:first-of-type {
  border-top: 1px solid var(--stone);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

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

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 1v8M1 5h8' stroke='%231c1410' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.2s;
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
  background-color: var(--brand);
  border-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 1v8M1 5h8' stroke='white' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq-question:hover {
  color: var(--brand);
}

.faq-answer {
  padding: 0 0 var(--space-5);
  padding-right: var(--space-10);
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(28, 20, 16, 0.72);
  line-height: 1.75;
  margin: 0;
}
