:root {
  color-scheme: light;
  --ink: #171411;
  --muted: #645d54;
  --paper: #fbfaf7;
  --soft: #efe8df;
  --sage: #526b5a;
  --sage-deep: #26382d;
  --clay: #a55845;
  --gold: #c79043;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 20, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(248, 243, 236, 0.94);
  border-bottom: 1px solid rgba(23, 20, 17, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-logo {
  width: 82px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  background: #050505;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(23, 20, 17, 0.14);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--sage-deep);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.nav-cta:hover,
.button.primary:hover {
  background: #1b281f;
}

.button.secondary:hover {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(88vh - 72px);
  padding: clamp(52px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.service-hero-copy {
  max-width: 760px;
}

.service-hero-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.service-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.84), rgba(23, 20, 17, 0.48) 45%, rgba(23, 20, 17, 0.12)),
    linear-gradient(0deg, rgba(10, 8, 7, 0.72), rgba(23, 20, 17, 0) 48%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
}

.hero-logo {
  width: min(165px, 36vw);
  height: auto;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 10vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

h3 a {
  text-decoration: none;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 20, 17, 0.12);
  border-bottom: 1px solid rgba(23, 20, 17, 0.12);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.location-note {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 18px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.location-note p {
  margin: 0;
}

.section,
.work-band,
.location-band {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro > p {
  color: var(--muted);
  font-size: 1.1rem;
}

.local-focus {
  background: var(--white);
}

.local-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: 20px;
}

.local-focus-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--sage-deep);
  font-weight: 800;
  text-decoration: none;
  background: var(--soft);
  border: 1px solid rgba(38, 56, 45, 0.16);
  border-radius: 8px;
}

.local-links a:hover {
  color: var(--white);
  background: var(--sage-deep);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-grid article {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.09);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 20, 17, 0.06);
}

.service-grid article img {
  width: 100%;
  background: var(--soft);
  object-fit: contain;
}

.service-grid article span,
.service-grid article h3,
.service-grid article p {
  margin-left: 22px;
  margin-right: 22px;
}

.service-grid article span {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-grid article h3 {
  margin-bottom: 8px;
}

.service-grid article p {
  margin-bottom: 24px;
}

.service-grid article a:hover {
  color: var(--clay);
}

.service-grid p,
.pricing .section-copy p,
.pricing-card p,
.pricing-note p,
.steps span,
.faq p,
.location-copy p,
.location-panel p {
  color: var(--muted);
}

.pricing {
  background: linear-gradient(180deg, rgba(239, 232, 223, 0.72), rgba(251, 250, 247, 0));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.pricing-card {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 20, 17, 0.06);
}

.pricing-card.featured {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.pricing-card p {
  margin: 8px 0 0;
  font-weight: 700;
}

.pricing-card.featured span {
  color: #e0b46d;
}

.pricing-card.featured strong,
.pricing-card.featured p {
  color: var(--white);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 8px;
}

.pricing-note p {
  margin: 0;
}

.work-band {
  background:
    linear-gradient(135deg, rgba(199, 144, 67, 0.12), rgba(255, 255, 255, 0)),
    var(--sage-deep);
  color: var(--white);
}

.work-band .eyebrow {
  color: #e0b46d;
}

.recent-work .section-copy {
  max-width: 860px;
}

.recent-work .section-copy p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gallery-filters button {
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.gallery-filters button:hover,
.gallery-filters button.active {
  color: var(--ink);
  background: #e0b46d;
  border-color: #e0b46d;
}

.recent-work-grid {
  column-count: 4;
  column-gap: 14px;
  margin-top: 24px;
}

.recent-work-grid figure[hidden] {
  display: none;
}

.recent-work-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  min-height: 100%;
  break-inside: avoid;
}

.recent-work-grid figure img {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.recent-work-grid figcaption {
  min-height: 104px;
}

.recent-work-grid figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #e0b46d;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-actions {
  display: flex;
  margin-top: 28px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 220ms ease;
}

figcaption {
  min-height: 76px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

figure:hover img {
  transform: scale(1.035);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 20, 17, 0.06);
}

.steps strong,
.steps span {
  display: block;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  background: var(--soft);
}

.location-panel {
  align-self: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-panel a {
  color: var(--sage-deep);
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.09);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: #e0b46d;
  font-weight: 800;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .intro,
  .local-focus-grid,
  .booking,
  .location-band,
  .service-hero {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-grid,
  .recent-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-work-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 64px;
    height: 38px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0;
  }

  .nav-cta::after {
    content: "Book";
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(94vh - 72px);
  }

  .hero-content {
    padding-top: 52px;
    max-width: 100%;
    width: 100vw;
  }

  .hero-logo {
    width: min(130px, 31vw);
    margin-bottom: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 2.55rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    flex: 1 1 auto;
    padding: 0 10px;
    white-space: normal;
  }

  .trust-strip,
  .service-grid,
  .pricing-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .recent-work-grid {
    column-count: 1;
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filters button {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
