:root {
  --paper: #f4f0e8;
  --paper-strong: #ebe3d7;
  --surface: #fffdfa;
  --ink: #1d211e;
  --muted: #667068;
  --line: #d8d0c3;
  --charcoal: #151815;
  --stone: #4f5752;
  --stone-dark: #2f3632;
  --water: #0b7f92;
  --water-dark: #075f70;
  --moss: #526f5d;
  --clay: #b6633d;
  --clay-dark: #8d472d;
  --danger: #b23b3b;
  --shadow-soft: 0 18px 44px rgba(24, 27, 23, 0.12);
  --shadow-strong: 0 28px 80px rgba(10, 13, 11, 0.28);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --header-height: 78px;
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grain:
    radial-gradient(1px 1px at 25% 30%, rgba(0, 0, 0, 0.04) 50%, transparent 51%),
    radial-gradient(1px 1px at 75% 65%, rgba(0, 0, 0, 0.035) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 55% 20%, rgba(0, 0, 0, 0.03) 50%, transparent 51%);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 100% -10%, rgba(182, 99, 61, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(82, 111, 93, 0.07), transparent 60%);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(24px, calc((100vw - 1200px) / 2));
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 18, 15, 0.72), rgba(15, 18, 15, 0.4));
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    right 420ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  left: max(14px, calc((100% - 1140px) / 2));
  right: max(14px, calc((100% - 1140px) / 2));
  min-height: 60px;
  padding: 8px 12px 8px 16px;
  background: rgba(15, 18, 15, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.32),
    0 2px 6px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.nav-open .site-header,
body.nav-open .site-header.is-scrolled {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .top-nav {
  gap: 2px;
}

.site-header.is-scrolled .top-nav a {
  padding: 8px 12px;
  font-size: 0.92rem;
}

.site-header.is-scrolled .brand-stamp {
  width: 34px;
  height: 34px;
}

.site-header.is-scrolled .brand-mark small {
  opacity: 0;
  max-height: 0;
  margin: 0;
  transform: translateY(-4px);
}

.brand-mark small {
  max-height: 24px;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-mark,
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-stamp {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #f4f0e8;
  background: transparent;
  border: 0;
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms ease,
    color 220ms ease;
}

.admin-body .brand-stamp {
  color: #1d211e;
}

.brand-mark:hover .brand-stamp {
  transform: rotate(-4deg) scale(1.06);
}

.brand-mark strong,
.admin-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand-mark small,
.admin-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.admin-body .brand-mark small,
.admin-body .admin-brand small {
  color: var(--muted);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.top-nav a {
  position: relative;
  min-height: 42px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.top-nav a:hover::after {
  width: 18px;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clay);
  border-radius: 999px;
  transition: width 220ms ease;
}

.menu-toggle {
  display: none !important;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-bars {
  position: relative;
  display: block;
  width: 26px;
  height: 14px;
}

.menu-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: 50% 50%;
  transition:
    transform 380ms cubic-bezier(0.7, -0.4, 0.3, 1.4),
    top 280ms cubic-bezier(0.7, 0, 0.3, 1) 100ms,
    width 280ms cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-bar:nth-child(1) {
  top: 4px;
}

.menu-bar:nth-child(2) {
  top: auto;
  bottom: 4px;
  width: 70%;
  margin-left: 30%;
}

.menu-toggle:hover .menu-bar:nth-child(2) {
  width: 100%;
  margin-left: 0;
}

.nav-open .menu-bar {
  transition:
    transform 380ms cubic-bezier(0.7, 0, 0.3, 1) 80ms,
    top 280ms cubic-bezier(0.7, 0, 0.3, 1),
    bottom 280ms cubic-bezier(0.7, 0, 0.3, 1),
    width 280ms cubic-bezier(0.7, 0, 0.3, 1),
    margin-left 280ms cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-open .menu-bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.nav-open .menu-bar:nth-child(2) {
  top: calc(50% - 1px);
  bottom: auto;
  width: 100%;
  margin-left: 0;
  transform: rotate(-45deg);
}

.nav-scrim {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  align-items: end;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1200px) / 2)) 96px;
  color: #fff;
  background: var(--charcoal);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 7000ms ease;
}

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

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(1200px 700px at 18% 70%, rgba(11, 127, 146, 0.18), transparent 70%),
    linear-gradient(90deg, rgba(15, 18, 15, 0.94) 0%, rgba(15, 18, 15, 0.72) 45%, rgba(15, 18, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 18, 15, 0.78) 0%, rgba(15, 18, 15, 0) 45%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-size: 6px 6px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.7;
}

.hero .eyebrow {
  color: #f0b08f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 144;
}

h3 {
  font-family: var(--font-body);
  font-weight: 800;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.hero-controls,
.admin-header-actions,
.media-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-proof span {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  transition: background 220ms ease, transform 220ms ease;
}

.hero-proof span:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

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

.hero-proof strong {
  font-size: 0.94rem;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.btn,
.icon-button,
.slide-button,
.media-expand,
.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  transition:
    transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 220ms ease,
    opacity 200ms ease;
}

.icon-button,
.media-expand,
.lightbox-close,
.slide-button {
  border-radius: 12px;
}

.btn {
  position: relative;
  padding: 14px 22px;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.btn svg,
.icon-button svg,
.contact-link svg,
.menu-toggle svg,
.slide-button svg,
.media-expand svg,
.lightbox-close svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.btn:hover,
.icon-button:hover,
.slide-button:hover,
.media-expand:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
.slide-button:focus-visible,
.media-expand:focus-visible,
.lightbox-close:focus-visible,
.contact-link:focus-visible {
  outline: 3px solid rgba(11, 127, 146, 0.34);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  box-shadow: 0 14px 28px rgba(141, 71, 45, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(141, 71, 45, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-controls {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 38px;
  z-index: 3;
}

.hero-controls[hidden] {
  display: none;
}

.slide-button {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.slide-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
}

.slide-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 999px;
}

.slide-dot.is-active {
  width: 28px;
  background: #fff;
}

.section-pad {
  padding: 92px 0;
}

.intro-band,
.process-band {
  background: var(--surface);
}

.gallery-band {
  position: relative;
  background: #e8ece7;
  background-image:
    radial-gradient(800px 400px at 0% 0%, rgba(82, 111, 93, 0.12), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(182, 99, 61, 0.1), transparent 60%);
}

.guarantee-band {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(11, 127, 146, 0.32), transparent 60%),
    linear-gradient(90deg, rgba(18, 21, 18, 0.4), rgba(18, 21, 18, 0)),
    var(--moss);
}

.guarantee-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 6px 6px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.contact-band {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(11, 127, 146, 0.28), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(182, 99, 61, 0.22), transparent 60%),
    var(--charcoal);
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 6px 6px;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.contact-band > .container,
.guarantee-band > .container {
  position: relative;
  z-index: 1;
}

.two-column,
.guarantee-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.lead,
.guarantee-layout p,
.contact-layout .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.guarantee-layout p,
.contact-layout .lead {
  color: rgba(255, 255, 255, 0.82);
}

.benefit-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

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

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

.benefit-card,
.service-card,
.media-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.benefit-card,
.service-card {
  padding: 28px;
}

.benefit-card {
  box-shadow: 0 12px 34px rgba(31, 37, 33, 0.06);
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 99, 61, 0.4);
  box-shadow: 0 22px 50px rgba(31, 37, 33, 0.1);
}

.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.service-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--clay), var(--water));
  border-radius: 999px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(closest-side, rgba(11, 127, 146, 0.08), transparent 70%);
  pointer-events: none;
  transition: opacity 260ms ease;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 127, 146, 0.32);
  box-shadow: 0 22px 50px rgba(11, 50, 60, 0.12);
}

.service-card:hover::after {
  opacity: 1;
}

.benefit-card p,
.service-card p,
.media-copy p,
.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--stone), var(--stone-dark));
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(47, 54, 50, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benefit-card:nth-child(2) .card-icon {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--clay), var(--clay-dark));
}

.benefit-card:nth-child(3) .card-icon {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--moss), #3a4a40);
}

.card-icon svg {
  width: 21px;
  height: 21px;
}

.section-heading {
  max-width: 760px;
}

.media-card {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(24, 27, 23, 0.18);
  border-color: rgba(11, 127, 146, 0.24);
}

.media-card-featured {
  grid-column: 1 / -1;
}

.media-card-featured .media-frame {
  aspect-ratio: 21 / 9;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #252824;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.media-card:hover .media-frame img {
  transform: scale(1.035);
}

.media-expand {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(21, 24, 21, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.media-type {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  background: rgba(21, 24, 21, 0.72);
  border-radius: 8px;
}

.media-copy {
  padding: 20px;
}

.process-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.contact-link:not(.passive):hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(182, 99, 61, 0.5);
  transform: translateY(-2px);
}

.passive {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  position: relative;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0c0e0c;
  background-image:
    radial-gradient(700px 400px at 0% 0%, rgba(82, 111, 93, 0.14), transparent 60%),
    radial-gradient(500px 300px at 100% 0%, rgba(182, 99, 61, 0.1), transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #f4f0e8;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f0e8;
}

.footer-brand small {
  display: block;
  margin-top: 6px;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
}

.footer-label {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  outline: 0;
}

.footer-info p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-info .footer-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-divider {
  opacity: 0.4;
}

.footer-back {
  margin-left: auto;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-back:hover,
.footer-back:focus-visible {
  color: #fff;
  border-color: rgba(182, 99, 61, 0.5);
  background: rgba(182, 99, 61, 0.12);
  outline: 0;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-back {
    margin-left: 0;
  }
}

.empty-state {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

::selection {
  background: rgba(182, 99, 61, 0.28);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(47, 54, 50, 0.3);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 54, 50, 0.5);
}

.media-lightbox {
  width: min(1040px, calc(100% - 28px));
  padding: 0;
  color: #fff;
  background: #111310;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.media-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(21, 24, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-frame {
  background: #080908;
}

.lightbox-frame img,
.lightbox-frame video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lightbox-copy {
  padding: 20px;
}

.lightbox-copy h2 {
  font-size: 1.45rem;
}

.lightbox-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  min-height: 100vh;
  background: #ece7dc;
}

.admin-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.login-panel,
.admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.login-panel {
  width: min(440px, 100%);
  margin: 12vh auto 0;
  padding: 28px;
}

.admin-body .admin-brand small {
  color: var(--muted);
}

.login-form,
.upload-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--charcoal);
  border-radius: 8px;
  color: #fff;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.admin-header .icon-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-button:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
}

.icon-button.danger {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  padding: 22px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel-heading h1,
.panel-heading h2 {
  font-size: 1.55rem;
}

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

.span-2 {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--stone);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfc8bc;
  border-radius: 8px;
  outline: 0;
}

input {
  height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 11px 12px;
}

input:focus,
textarea:focus {
  border-color: var(--water);
  box-shadow: 0 0 0 3px rgba(11, 127, 146, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-type="error"] {
  color: var(--danger);
}

.form-status[data-type="success"] {
  color: var(--moss);
}

.admin-media-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-media-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f7f4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-media-preview {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #242722;
  border-radius: 8px;
}

.admin-media-preview img,
.admin-media-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 9px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  background: rgba(23, 26, 23, 0.72);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex !important;
    color: #fff;
    z-index: 80;
  }

  .top-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 110px max(28px, calc((100vw - 1200px) / 2)) 64px;
    background:
      radial-gradient(900px 600px at 100% 0%, rgba(182, 99, 61, 0.18), transparent 60%),
      radial-gradient(700px 500px at 0% 100%, rgba(82, 111, 93, 0.16), transparent 60%),
      rgba(12, 14, 12, 0.97);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 420ms;
  }

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

  .top-nav a {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 540ms cubic-bezier(0.22, 1, 0.36, 1),
      color 220ms ease,
      padding-left 220ms ease;
  }

  .top-nav a::before {
    content: counter(navitem, decimal-leading-zero);
    counter-increment: navitem;
    color: var(--clay);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.22em;
    align-self: start;
    margin-top: 0.6em;
    transition: transform 220ms ease, color 220ms ease;
  }

  .top-nav a::after {
    display: none;
  }

  .top-nav a:hover::before,
  .top-nav a:focus-visible::before {
    transform: translateX(4px);
    color: #f0b08f;
  }

  .top-nav a:hover,
  .top-nav a:focus-visible {
    padding-left: 6px;
  }

  .top-nav {
    counter-reset: navitem;
  }

  .top-nav a:hover,
  .top-nav a:focus-visible {
    color: var(--clay);
    background: transparent;
    outline: 0;
  }

  .top-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .top-nav.is-open a:nth-child(1) { transition-delay: 240ms, 240ms, 0ms; }
  .top-nav.is-open a:nth-child(2) { transition-delay: 320ms, 320ms, 0ms; }
  .top-nav.is-open a:nth-child(3) { transition-delay: 400ms, 400ms, 0ms; }
  .top-nav.is-open a:nth-child(4) { transition-delay: 480ms, 480ms, 0ms; }

  .nav-scrim {
    display: none;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero {
    min-height: 84vh;
    padding-top: 138px;
  }

  .two-column,
  .guarantee-layout,
  .contact-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .media-card-featured {
    grid-column: span 1;
  }

  .media-card-featured .media-frame {
    aspect-ratio: 16 / 10;
  }

  .admin-grid {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark small {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 88vh;
    padding: 126px 16px 80px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 18, 15, 0.9), rgba(15, 18, 15, 0.62)),
      linear-gradient(0deg, rgba(15, 18, 15, 0.82) 0%, rgba(15, 18, 15, 0.1) 56%);
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.76rem;
  }

  .hero-copy,
  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-proof span {
    padding: 11px 12px;
  }

  .hero-controls {
    right: auto;
    left: 16px;
    bottom: 28px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .benefit-card,
  .service-card,
  .media-copy {
    padding: 20px;
  }

  .process-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .site-footer,
  .admin-header,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
