:root {
  --background: #e8e8e8;
  --foreground: #050505;
  --panel: #f4f4f4;
  --muted: #303036;
  --line: rgba(5, 5, 5, 0.14);
  --brand: #3b1922;
  --brand-soft: #ece1e4;
  --accent: #53572e;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(15, 15, 24, 0.12);
  --radius-lg: 1.6rem;
  --radius: 1.1rem;
  --radius-sm: 0.85rem;
  --container: 92rem;
  --display-font: Impact, "Arial Narrow", "Franklin Gothic Condensed", sans-serif;
  --body-font: Montserrat, Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body-font);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

img {
  max-width: 100%;
}

.site-shell {
  overflow-x: hidden;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  isolation: isolate;
  color: var(--white);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0) 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 0.65rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.9));
  white-space: nowrap;
}

.brand-logo {
  display: block;
  height: clamp(2.3rem, 6vw, 3.1rem);
  width: auto;
  border-radius: 999px;
}

.brand-name {
  display: inline-block;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
  max-width: 62rem;
  flex-wrap: wrap;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-link {
  position: relative;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.9));
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: currentColor;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--brand-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-button {
  display: inline-flex;
  order: 2;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -0.45rem;
}

.menu-button span::after {
  top: 0.45rem;
}

.phone-button {
  display: none;
  order: 1;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  background: var(--white);
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-family: var(--display-font);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.phone-button:hover,
.phone-button:focus-visible {
  color: var(--brand);
  transform: translateX(0.55rem);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: min(92vw, 34rem);
  height: 100vh;
  padding: 0.75rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-close {
  font-family: var(--display-font);
  font-size: 3rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.mobile-nav a {
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--brand);
  transform: translateX(0.55rem);
}

.mobile-nav a.is-active {
  color: var(--brand);
}

.mobile-phone {
  display: inline-flex;
  margin-top: 2rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  background: #000;
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.mobile-phone:hover,
.mobile-phone:focus-visible {
  background: var(--brand);
  transform: translateX(0.55rem);
}

.menu-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .mobile-panel {
  transform: translateX(0);
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(93deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.55) 34%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0.44) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 16%, rgba(59, 25, 34, 0.16) 38%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-block: 8rem 4rem;
}

.hero-copy {
  max-width: 64rem;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
}

.display-title {
  font-family: var(--display-font);
  font-size: clamp(3.35rem, 10vw, 7.5rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title {
  margin-top: 1rem;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-text {
  max-width: 56rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.hero-text + .hero-text {
  margin-top: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.65rem;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(59, 25, 34, 0.45);
}

.button-secondary {
  background: var(--white);
  color: #000;
}

.button-outline {
  border: 1px solid var(--brand);
  color: var(--foreground);
}

.button-dark-outline {
  border: 1px solid var(--brand);
  color: var(--white);
}

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

/* ---------- Subpage hero ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.62) 100%);
}

.page-hero.no-image {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(59, 25, 34, 0.85), transparent 60%),
    #161015;
}

.page-hero.no-image::before {
  background: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 9rem 3.5rem;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .display-title {
  margin-top: 0.75rem;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Split section ---------- */
.split-section {
  display: grid;
  gap: 3rem;
  padding-block: 6rem;
}

.image-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #dcdcdc;
}

.image-card > img,
.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 100%);
  pointer-events: none;
}

.image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
}

.caption-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.72);
}

.caption-text {
  max-width: 24rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.75;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.mini-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.mini-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.mini-card h3,
.service-card h3,
.benefit-card h3,
.contact-block h3 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mini-card:nth-child(2) h3 {
  color: var(--brand);
}

.mini-card p,
.service-card p,
.benefit-card p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---------- Services grid ---------- */
.services {
  padding-block: 6rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.services .section-title {
  color: var(--accent);
}

.service-grid {
  display: grid;
  gap: 3.5rem 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-image {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d5d5d5;
  box-shadow: var(--shadow);
}

.service-card.is-link .service-image img {
  transition: transform 0.5s ease;
}

.service-card.is-link:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  margin-top: 1.25rem;
}

.service-card p {
  font-size: 1.06rem;
  line-height: 1.75;
}

.service-more {
  margin-top: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--brand);
}

.service-card.is-link:hover .service-more {
  text-decoration: underline;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--brand);
  color: var(--white);
  padding-block: 6rem;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
}

.benefits .eyebrow,
.benefits .lead {
  color: rgba(255, 255, 255, 0.84);
}

.benefit-panel {
  background: #000;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  padding: 2rem;
}

.benefit-card {
  border-left: 4px solid var(--brand);
  padding: 0.9rem 0 0.9rem 1.5rem;
}

.benefit-card + .benefit-card {
  margin-top: 0.8rem;
}

.benefit-card h3 {
  color: var(--white);
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.86);
}

.benefit-panel .button {
  margin-top: 1.75rem;
}

/* ---------- Prose / content pages ---------- */
.section {
  padding-block: 5.5rem;
}

.section.tight {
  padding-block: 4rem;
}

.content-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.prose {
  max-width: 60rem;
}

.prose p {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

.prose p:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  font-family: var(--display-font);
  text-transform: uppercase;
  line-height: 1.12;
  margin-top: 2.6rem;
  color: var(--brand);
}

.prose h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.prose a.inline-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.prose ul {
  margin: 1.3rem 0 0;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.prose li {
  margin-top: 0.55rem;
}

.prose li::marker {
  color: var(--brand);
}

.prose li strong {
  color: var(--foreground);
}

.feature-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 3.2rem;
  background: var(--panel);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(59, 25, 34, 0.14);
}

.side-card {
  background: #000;
  color: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.side-card h3 {
  font-family: var(--display-font);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.side-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.side-card .button {
  margin-top: 1.6rem;
}

.note-card {
  margin-top: 2.2rem;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  padding: 1.4rem 1.6rem;
  color: var(--brand);
  font-size: 1.02rem;
  line-height: 1.7;
}

.note-card a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d5d5d5;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

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

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

/* ---------- Contact ---------- */
.contact {
  padding-block: 6rem 4rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-block h3 {
  color: var(--brand);
  font-size: 2rem;
}

.contact-block p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.5vw, 1.55rem);
  line-height: 1.45;
}

.contact-card {
  display: block;
  background: #000;
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card .small-title {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.contact-card .big-line {
  margin-top: 1rem;
  font-family: var(--display-font);
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.contact-card .supporting {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.map-frame {
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
}

/* ---------- Contact form ---------- */
.contact-form {
  margin-top: 1.5rem;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.85rem;
}

.contact-form-title {
  margin-bottom: 1.25rem;
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--brand);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.contact-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0.9rem 1.05rem;
  font: inherit;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field::placeholder {
  color: rgba(5, 5, 5, 0.45);
}

.contact-field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(59, 25, 34, 0.12);
}

textarea.contact-field {
  min-height: 7.5rem;
  resize: vertical;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}

.contact-consent input {
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  accent-color: var(--brand);
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.98rem;
}

.form-status:empty {
  margin-top: 0;
}

.form-status.is-error {
  color: #b3261e;
}

.button:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0d0a0c;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 1.5rem 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.footer-col h4 {
  font-family: var(--display-font);
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1rem;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.8;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--brand);
  color: var(--white);
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: 3rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom .footer-links a {
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 4px;
}

.footer-legal {
  width: min(100%, var(--container));
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  display: grid;
  gap: 1.25rem 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal p {
  margin: 0.15rem 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal-name {
  margin: 0 0 0.45rem;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  color: var(--white);
}

@media (min-width: 48rem) {
  .footer-legal {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 40rem) {
  .container,
  .header-inner {
    padding-inline: 2rem;
  }

  .header-inner {
    padding-block: 0.8rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .phone-button {
    display: inline-flex;
  }

  .section-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .section-head .section-title {
    max-width: 46rem;
  }
}

@media (min-width: 64rem) {
  .container,
  .header-inner {
    padding-inline: 3rem;
  }

  .split-section,
  .benefits-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .content-grid.with-aside {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  }

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

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

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

@media (min-width: 80rem) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 39.9375rem) {
  .button-row {
    flex-wrap: nowrap;
  }

  .button {
    flex: 1;
    min-width: 0;
    padding-inline: 1rem;
    font-size: 1.15rem;
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    transition: opacity 0.4s ease;
    transform: none;
  }
}

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.reveal-zoom {
  transform: translateY(30px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Hero intro (plays on page load) ---------- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1);
  }
}

.hero-media,
.page-hero > img {
  animation: heroZoomOut 7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *,
.page-hero-inner > * {
  animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1),
.page-hero-inner > *:nth-child(1) {
  animation-delay: 0.25s;
}
.hero-copy > *:nth-child(2),
.page-hero-inner > *:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-copy > *:nth-child(3),
.page-hero-inner > *:nth-child(3) {
  animation-delay: 0.55s;
}
.hero-copy > *:nth-child(4),
.page-hero-inner > *:nth-child(4) {
  animation-delay: 0.7s;
}
.hero-copy > *:nth-child(5),
.page-hero-inner > *:nth-child(5) {
  animation-delay: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .page-hero > img,
  .hero-copy > *,
  .page-hero-inner > * {
    animation: none !important;
  }
}
