:root {
  --ink: #171411;
  --charcoal: #2a2622;
  --paper: #fbfaf7;
  --bone: #f1ede5;
  --stone: #e5ded2;
  --line: #d8d0c3;
  --muted: #6f6860;
  --rust: #a6532f;
  --clay: #c1764c;
  --gold: #e0b24a;
  --green: #496a58;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(23, 20, 17, 0.16);
  --texture-photo: url("./assets/photos/textured-concrete-finish-close.jpg");
  --paper-wash: rgba(251, 250, 247, 0.93);
  --bone-wash: rgba(241, 237, 229, 0.9);
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 130ms;
  --motion-medium: 360ms;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--paper-wash), var(--paper-wash)),
    var(--texture-photo);
  background-position: center top, center top;
  background-repeat: repeat, repeat;
  background-size: auto, min(760px, 118vw) auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.2vw, 5.75rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.15rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.16;
}

section {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(23, 20, 17, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(138px, 13vw, 184px);
  height: auto;
}

.top-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.top-nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  font-weight: 780;
}

.top-nav a:hover,
.header-call:hover {
  color: var(--gold);
}

.header-actions {
  gap: 12px;
}

.header-call {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 880;
}

.header-quote,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.header-quote {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
}

.button {
  padding: 13px 20px;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover,
.header-quote:hover {
  background: #edc565;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.button-outline:hover {
  border-color: rgba(166, 83, 47, 0.38);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.84) 0%, rgba(23, 20, 17, 0.64) 42%, rgba(23, 20, 17, 0.2) 100%),
    linear-gradient(0deg, rgba(23, 20, 17, 0.58) 0%, rgba(23, 20, 17, 0.04) 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1220px, calc(100% - 36px));
  min-height: 86svh;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 116px 0 50px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.88rem;
  font-weight: 920;
  text-transform: uppercase;
}

.hero .eyebrow,
.light .eyebrow,
.testimonial-band .eyebrow {
  color: var(--gold);
}

.hero-copy {
  max-width: 740px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(900px, 100%);
  margin-top: 34px;
}

.hero-proof div {
  min-height: 100px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(23, 20, 17, 0.48);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading > p:not(.eyebrow),
.intro-copy p:not(.eyebrow),
.guide-copy p:not(.eyebrow),
.booking-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.form-row label,
.consent {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
}

.section,
.booking-section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 870px;
  margin-bottom: 34px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.section-actions-light .button-primary {
  color: var(--ink);
}

.section-actions-light .button-secondary {
  color: var(--white);
}

.light {
  color: var(--white);
}

.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.proof-panel {
  display: grid;
  gap: 12px;
}

.proof-panel div,
.guide-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 14px;
  padding: 22px;
}

.proof-panel span {
  grid-row: span 2;
  color: var(--rust);
  font-weight: 950;
}

.proof-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.proof-panel p,
.service-card p,
.process-list p,
.guide-grid p,
.faq p {
  color: var(--muted);
}

.proof-panel p {
  margin-bottom: 0;
}

.service-area-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) 1fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  padding: clamp(42px, 6vw, 62px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(rgba(73, 106, 88, 0.88), rgba(73, 106, 88, 0.88)),
    var(--texture-photo),
    var(--green);
  background-position: center, center, center;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, 780px auto, auto;
}

.service-area-band > div,
.service-area-band > p,
.area-list {
  width: min(1220px, 100%);
}

.service-area-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.service-area-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.area-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.service-band {
  padding: clamp(78px, 10vw, 124px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(73, 106, 88, 0.16), rgba(73, 106, 88, 0)),
    linear-gradient(rgba(42, 38, 34, 0.89), rgba(42, 38, 34, 0.91)),
    var(--texture-photo),
    var(--charcoal);
  background-position: center, center, center, center;
  background-repeat: repeat, repeat, repeat, repeat;
  background-size: auto, auto, 820px auto, auto;
}

.service-band .section-heading,
.service-grid,
.process-band .section-heading,
.process-list,
.testimonial-band {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.service-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, 100%);
  margin: 22px auto 0;
  padding: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(23, 20, 17, 0.42);
}

.service-cta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.service-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card .image-focus-wall {
  object-position: 50% 68%;
}

.service-card .image-focus-foundation {
  object-position: 50% 84%;
}

.service-card div {
  padding: 22px;
}

.service-kicker {
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 920;
  text-transform: uppercase;
}

.work-section {
  padding-bottom: clamp(70px, 9vw, 104px);
}

.gallery-categories {
  display: grid;
  width: min(1220px, 100%);
  margin: 34px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-category {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 20, 17, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-category:hover,
.gallery-category:focus-visible {
  border-color: rgba(166, 83, 47, 0.46);
  box-shadow: 0 22px 54px rgba(23, 20, 17, 0.13);
  transform: translateY(-2px);
}

.gallery-category-wide {
  grid-column: span 2;
}

.gallery-category img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.gallery-category-wide img {
  height: 286px;
}

.gallery-category-copy {
  display: flex;
  min-height: 176px;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.gallery-count {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-category strong {
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  line-height: 1.08;
}

.gallery-category-copy > span:not(.gallery-count):not(.gallery-open) {
  color: var(--muted);
}

.gallery-open {
  margin-top: auto;
  color: var(--rust);
  font-weight: 930;
}

.gallery-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: min(88vh, 900px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.gallery-dialog::backdrop {
  background: rgba(23, 20, 17, 0.72);
  backdrop-filter: blur(6px);
}

.gallery-dialog-panel {
  min-width: 0;
  max-height: min(88vh, 900px);
  overflow: hidden;
  overflow-y: auto;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  width: max-content;
  margin-left: auto;
  padding: 9px 13px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-dialog-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.gallery-dialog-head h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.gallery-dialog-head p {
  color: var(--muted);
}

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

.gallery-dialog-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.09);
  border-radius: 8px;
}

.gallery-dialog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ece8df;
}

.gallery-dialog-card figcaption {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.gallery-dialog-card strong {
  line-height: 1.15;
}

.gallery-dialog-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.process-band {
  padding: clamp(78px, 10vw, 118px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(var(--bone-wash), var(--bone-wash)),
    var(--texture-photo),
    var(--bone);
  background-position: center, center, center;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, 780px auto, auto;
}

.process-list {
  display: grid;
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 8px;
  background: var(--paper);
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.process-actions {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.testimonial-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) 1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(rgba(73, 106, 88, 0.88), rgba(73, 106, 88, 0.88)),
    var(--texture-photo),
    var(--green);
  background-position: center, center, center;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, 780px auto, auto;
}

.testimonial-band h2 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

blockquote {
  margin: 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 820;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-style: normal;
  font-weight: 720;
}

.testimonial-actions {
  grid-column: 2;
  margin-top: -36px;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.guide-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.guide-grid article {
  padding: 24px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding-top: clamp(50px, 7vw, 78px);
}

.booking-copy {
  position: sticky;
  top: 100px;
}

.contact-panel {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel a {
  color: var(--gold);
  font-size: 1.22rem;
  font-weight: 950;
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.66);
}

.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.form-row .label-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.optional-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 3px 8px;
  color: var(--rust);
  background: rgba(166, 83, 47, 0.1);
  border: 1px solid rgba(166, 83, 47, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 920;
  text-transform: uppercase;
}

.form-row input[type="file"] {
  padding: 10px;
  color: var(--muted);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(224, 178, 74, 0.35);
  border-color: var(--rust);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.consent a {
  color: var(--rust);
  font-weight: 930;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.field-note {
  min-height: 46px;
  margin: 0;
  padding: 11px 12px;
  color: var(--muted);
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
}

.form-error {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(73, 106, 88, 0.28);
  border-radius: 8px;
  background: rgba(73, 106, 88, 0.1);
}

.form-success.is-visible {
  display: grid;
}

.success-step {
  margin: 0;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 930;
  text-transform: uppercase;
}

.form-success strong {
  font-size: 1.12rem;
}

.form-success span {
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.form-success small {
  color: var(--muted);
  font-size: 0.82rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(100% - 36px, 980px);
  margin: 0 auto;
  padding: 132px 0 clamp(70px, 8vw, 108px);
}

.legal-hero {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding-top: 30px;
}

.legal-content article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--rust);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  padding-top: 0;
}

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

details {
  padding: 22px;
}

summary {
  cursor: pointer;
  font-weight: 930;
}

details p {
  margin: 12px 0 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 58px) 94px;
  color: var(--white);
  background:
    linear-gradient(rgba(23, 20, 17, 0.91), rgba(23, 20, 17, 0.91)),
    var(--texture-photo),
    var(--ink);
  background-position: center, center, center;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, 820px auto, auto;
}

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

.footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

.footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.55);
}

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

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

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

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

@media (max-width: 900px) {
  .intro-section,
  .service-area-band,
  .guide-section,
  .booking-section,
  .testimonial-band {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-category-wide {
    grid-column: span 2;
  }

  .booking-copy {
    position: static;
  }

  .testimonial-actions {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand-logo {
    width: 126px;
  }

  .header-call {
    display: none;
  }

  .header-quote {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.18rem, 12vw, 3.18rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(23, 20, 17, 0.86) 0%, rgba(23, 20, 17, 0.66) 100%),
      linear-gradient(0deg, rgba(23, 20, 17, 0.58) 0%, rgba(23, 20, 17, 0.08) 64%);
  }

  .hero-inner {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 28px;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .hero-actions .button,
  .section-actions,
  .section-actions .button {
    width: 100%;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .section,
  .booking-section,
  .legal-main {
    width: min(100% - 32px, 1220px);
  }

  .legal-main {
    padding-top: 104px;
  }

  .service-grid,
  .guide-grid,
  .process-list,
  .gallery-categories,
  .gallery-dialog-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .service-cta-actions,
  .service-cta-actions .button {
    width: 100%;
  }

  .gallery-category-wide {
    grid-column: auto;
  }

  .gallery-category {
    min-height: auto;
  }

  .gallery-category img,
  .gallery-category-wide img {
    height: 220px;
  }

  .gallery-category-copy {
    min-height: 0;
  }

  .gallery-dialog {
    width: calc(100% - 20px);
    max-height: 92vh;
  }

  .gallery-dialog-panel {
    max-height: 92vh;
    padding: 18px;
  }

  .gallery-dialog-actions,
  .gallery-dialog-actions .button {
    width: 100%;
  }

  .proof-panel div {
    grid-template-columns: 1fr;
  }

  .proof-panel span {
    margin-bottom: 18px;
  }

  .quote-form {
    padding: 20px;
  }

  .success-actions,
  .success-actions .button {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

}

.motion-ready body {
  animation: page-fade-in 120ms var(--motion-ease) both;
}

.motion-ready .hero-image {
  animation: hero-image-settle 640ms var(--motion-soft) both;
}

.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero-copy,
.motion-ready .hero-actions,
.motion-ready .hero-proof {
  opacity: 0;
  animation: hero-copy-rise 340ms var(--motion-soft) both;
}

.motion-ready .hero h1 {
  animation-delay: 30ms;
}

.motion-ready .hero-copy {
  animation-delay: 60ms;
}

.motion-ready .hero-actions {
  animation-delay: 90ms;
}

.motion-ready .hero-proof {
  animation-delay: 120ms;
}

.motion-ready .motion-reveal {
  opacity: 0;
  scale: 0.985;
  translate: 0 14px;
  transition:
    opacity var(--motion-medium) var(--motion-soft),
    scale var(--motion-medium) var(--motion-soft),
    translate var(--motion-medium) var(--motion-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

.button,
.top-nav a,
.header-call,
.header-quote,
.hero-proof div,
.proof-panel div,
.area-list span,
.service-card,
.service-cta,
.gallery-category,
.process-list li,
.guide-grid article,
.quote-form,
details {
  transition:
    color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    box-shadow 240ms var(--motion-ease),
    transform 240ms var(--motion-ease);
}

.service-card img,
.gallery-category img,
.gallery-dialog-card img {
  transition: transform 280ms var(--motion-soft);
}

.button:hover,
.button:focus-visible,
.header-quote:hover,
.header-quote:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(23, 20, 17, 0.18);
}

.button:active,
.header-quote:active {
  transform: translateY(0);
  box-shadow: none;
}

.hero-proof div:hover,
.proof-panel div:hover,
.area-list span:hover,
.service-card:hover,
.process-list li:hover,
.guide-grid article:hover,
  details:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(23, 20, 17, 0.12);
}

.service-card:hover img,
.gallery-category:hover img,
.gallery-category:focus-visible img,
.gallery-dialog-card:hover img {
  transform: scale(1.025);
}

.gallery-category:hover .gallery-open,
.gallery-category:focus-visible .gallery-open {
  color: var(--ink);
}

.quote-form:focus-within {
  border-color: rgba(166, 83, 47, 0.42);
  box-shadow: 0 26px 72px rgba(23, 20, 17, 0.18);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(224, 178, 74, 0.42);
  outline-offset: 2px;
}

details[open] {
  box-shadow: 0 12px 32px rgba(23, 20, 17, 0.08);
}

.gallery-dialog[open] .gallery-dialog-panel {
  animation: dialog-rise 180ms var(--motion-soft) both;
}

@keyframes page-fade-in {
  from {
    opacity: 0.94;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-image-settle {
  from {
    filter: brightness(0.92);
    transform: scale(1.028);
  }
  to {
    filter: brightness(1);
    transform: scale(1.005);
  }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialog-rise {
  from {
    opacity: 0;
    transform: translateY(5px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .motion-reveal {
    opacity: 1 !important;
    scale: 1 !important;
    translate: 0 0 !important;
  }

  .hero-image,
  .service-card:hover img,
  .gallery-category:hover img,
  .gallery-category:focus-visible img,
  .gallery-dialog-card:hover img {
    transform: none !important;
  }
}
