:root {
  --ink: #15120f;
  --ink-soft: #27221e;
  --paper: #fbfaf6;
  --paper-warm: #f0e7dc;
  --cognac: #9a5528;
  --cognac-dark: #693417;
  --brass: #c99a4d;
  --moss: #52694b;
  --steel: #46636f;
  --line: rgba(21, 18, 15, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 13, 9, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(154, 85, 40, 0.12), transparent 34rem),
    linear-gradient(180deg, #fffaf4 0%, var(--paper) 46%, #f7f2ec 100%);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(21, 18, 15, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(21, 18, 15, 0.92);
  border-color: rgba(201, 154, 77, 0.28);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

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

.brand-logo {
  display: block;
  width: clamp(176px, 18vw, 260px);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--ink);
  background: linear-gradient(135deg, #f7d894, var(--brass));
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 750;
}

.header-call svg,
.btn svg,
.service-card svg,
.contact-panel svg,
.check-list svg,
.site-footer svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.92) 0%, rgba(12, 9, 7, 0.78) 34%, rgba(12, 9, 7, 0.24) 68%, rgba(12, 9, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 9, 7, 0.42) 0%, rgba(12, 9, 7, 0.18) 44%, rgba(12, 9, 7, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 150px 0 42px;
}

.hero-kicker,
.hero-title,
.hero-copy,
.hero-actions,
.trust-row {
  animation: riseIn 780ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-title {
  animation-delay: 120ms;
}

.hero-copy {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 320ms;
}

.trust-row {
  animation-delay: 420ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1c872;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--cognac-dark);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.2vw, 4.85rem);
  line-height: 1.02;
  font-weight: 650;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.3vw, 3.15rem);
  line-height: 1.08;
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.24;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-actions,
.site-footer,
.check-list li {
  display: flex;
  align-items: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1b120b;
  background: linear-gradient(135deg, #f2cd7c, #bf7c36);
  box-shadow: 0 16px 34px rgba(157, 91, 35, 0.28);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 56px 0 0;
}

.trust-row div {
  padding: 18px;
  min-height: 112px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-row dt {
  color: #f1c872;
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-row dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 50px;
  align-items: end;
}

.intro p:last-child,
.quote-layout p {
  color: rgba(21, 18, 15, 0.72);
  font-size: 1.06rem;
}

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

.service-grid,
.reference-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.reference-grid article,
.contact-panel,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 35px rgba(35, 24, 17, 0.06);
}

.service-card {
  min-height: 290px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible,
.contact-panel:hover,
.reference-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 85, 40, 0.28);
  box-shadow: var(--shadow);
}

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

.link-card span {
  margin-top: auto;
  color: var(--cognac-dark);
  font-weight: 850;
}

.service-card svg,
.contact-panel svg {
  margin-bottom: 24px;
  color: var(--cognac);
}

.service-card p,
.reference-grid p,
.contact-panel p,
.form-note {
  color: rgba(21, 18, 15, 0.66);
}

.accent-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(82, 105, 75, 0.92), rgba(70, 99, 111, 0.88)),
    var(--moss);
}

.accent-card p,
.accent-card svg,
.accent-card span {
  color: rgba(255, 255, 255, 0.82);
}

.process,
.quote-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 18, 15, 0.96), rgba(46, 31, 22, 0.98)),
    var(--ink);
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--brass);
  border-radius: 8px;
  font-weight: 900;
}

.process-list p,
.quote-layout > div > p {
  color: rgba(255, 255, 255, 0.74);
}

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

.reference-grid article {
  min-height: 240px;
  padding: 28px;
}

.reference-tag {
  display: inline-flex;
  margin-bottom: 48px;
  padding: 7px 10px;
  color: var(--cognac-dark);
  background: rgba(154, 85, 40, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 54px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list svg {
  color: var(--brass);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(201, 154, 77, 0.24);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(18, 13, 9, 0.16);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(21, 18, 15, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 18, 15, 0.15);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input[type="file"] {
  height: auto;
  padding: 12px;
  border: 1px solid rgba(21, 18, 15, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.quote-form input {
  min-height: 46px;
  padding: 0 13px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(154, 85, 40, 0.72);
  box-shadow: 0 0 0 4px rgba(154, 85, 40, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.form-note.is-error {
  color: #9b1c1c;
  font-weight: 760;
}

.quote-form .bot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form .file-field {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px dashed rgba(154, 85, 40, 0.36);
  border-radius: 8px;
  background: rgba(154, 85, 40, 0.07);
}

.file-field small {
  color: rgba(21, 18, 15, 0.56);
  font-size: 0.8rem;
  font-weight: 650;
}

.quote-form .consent-field {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(21, 18, 15, 0.72);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(21, 18, 15, 0.1);
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.quote-form .consent-field input[type="checkbox"] {
  appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 1px 0 0;
  padding: 0;
  border: 2px solid rgba(105, 52, 23, 0.46);
  border-radius: 5px;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}

.quote-form .consent-field input[type="checkbox"]:checked {
  background:
    linear-gradient(135deg, var(--cognac), var(--brass));
  border-color: var(--cognac);
  box-shadow: inset 0 0 0 4px var(--white);
}

.quote-form .consent-field span {
  display: block;
}

.consent-field a,
.legal-content a {
  color: var(--cognac-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-inner {
  max-width: 880px;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 70px;
  padding-bottom: 76px;
}

.thanks-steps article,
.legal-content {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 13, 9, 0.08);
}

.thanks-steps article {
  padding: 28px;
}

.thanks-steps svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--cognac);
}

.thanks-steps h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.thanks-steps p {
  margin: 0;
}

.legal-content {
  margin-top: 70px;
  margin-bottom: 76px;
  padding: clamp(28px, 5vw, 54px);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.contact-panel {
  min-height: 190px;
  padding: 26px;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-panel h3 a {
  text-decoration: underline;
  text-decoration-color: rgba(154, 85, 40, 0.4);
  text-underline-offset: 4px;
}

.site-footer {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(21, 18, 15, 0.98), rgba(44, 31, 23, 0.98)),
    var(--ink);
}

.footer-inner {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(170px, 0.75fr) minmax(230px, 0.95fr) minmax(230px, 0.95fr);
  gap: 42px;
  padding: 58px 0 36px;
  justify-content: center;
}

.footer-brand img {
  width: min(260px, 100%);
  margin-bottom: 18px;
}

.footer-brand p,
.footer-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links,
.footer-contact,
.footer-cta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3,
.footer-cta h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--brass);
}

.footer-cta .btn {
  width: fit-content;
  margin-top: 10px;
}

.footer-bottom {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .footer-legal {
  display: inline;
  width: auto;
  height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom .back-top {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  text-decoration: none;
  background: var(--brass);
  border-radius: 8px;
}

.subhero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.subhero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.92), rgba(16, 12, 9, 0.68), rgba(16, 12, 9, 0.32)),
    url("assets/hero-before-after-upholstery.jpg") center / cover;
  transform: scale(1.04);
  animation: slowZoom 13s ease-out both;
}

.subhero-warm .subhero-bg {
  background:
    linear-gradient(90deg, rgba(35, 20, 13, 0.94), rgba(71, 42, 24, 0.72), rgba(35, 20, 13, 0.34)),
    url("assets/hero-before-after-upholstery.jpg") center / cover;
}

.subhero-cool .subhero-bg {
  background:
    linear-gradient(90deg, rgba(14, 21, 24, 0.94), rgba(36, 61, 70, 0.72), rgba(14, 21, 24, 0.34)),
    url("assets/hero-before-after-upholstery.jpg") center / cover;
}

.subhero-gallery .subhero-bg,
.subhero-contact .subhero-bg {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.95), rgba(65, 45, 30, 0.76), rgba(14, 13, 12, 0.38)),
    url("assets/hero-before-after-upholstery.jpg") center / cover;
}

.subhero-inner {
  position: relative;
  z-index: 1;
  padding-top: 138px;
  padding-bottom: 72px;
}

.subhero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  font-weight: 650;
}

.subhero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.seo-copy p {
  color: rgba(21, 18, 15, 0.72);
}

.seo-panel {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(35, 24, 17, 0.07);
}

.seo-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(21, 18, 15, 0.72);
}

.feature-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(240, 231, 220, 0.74));
}

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

.feature-grid > div {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-grid svg {
  width: 22px;
  height: 22px;
  margin-bottom: 26px;
  color: var(--cognac);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}

.texture-card {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 18, 15, 0.12), rgba(201, 154, 77, 0.18)),
    var(--cognac);
  box-shadow: var(--shadow);
}

.texture-card span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(38deg, rgba(255,255,255,0.10) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.26), transparent 15rem),
    linear-gradient(135deg, #5a2b16, #b46a32 48%, #2b1a13);
  animation: leatherSheen 5s ease-in-out infinite alternate;
}

.cta-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 86px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(154, 85, 40, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.gallery-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-strip div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 18, 15, 0.06), rgba(21, 18, 15, 0.86)),
    linear-gradient(135deg, #8b4d27, #1e1713);
}

.gallery-strip div:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(21, 18, 15, 0.06), rgba(21, 18, 15, 0.86)),
    linear-gradient(135deg, #52694b, #1d241d);
}

.gallery-strip span {
  color: #f1c872;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-strip strong {
  font-size: 1.35rem;
}

.photo-preview-grid,
.real-gallery {
  display: grid;
  gap: 14px;
}

.photo-preview-grid {
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  align-items: stretch;
}

.photo-preview-grid a,
.real-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(35, 24, 17, 0.12);
}

.photo-preview-grid img,
.real-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.photo-preview-grid a:hover img,
.real-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cognac-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(154, 85, 40, 0.32);
  text-underline-offset: 5px;
}

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

.real-gallery figure {
  min-height: 230px;
}

.real-gallery figure:nth-child(1),
.real-gallery figure:nth-child(8) {
  grid-column: span 2;
}

.real-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(21, 18, 15, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes leatherSheen {
  from {
    transform: scale(1.02) translateX(-1%);
    filter: saturate(0.96);
  }

  to {
    transform: scale(1.06) translateX(1%);
    filter: saturate(1.08);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 2px;
    padding-top: 8px;
  }

  .main-nav.is-open a {
    padding: 13px 10px;
  }

  .hero-content {
    padding-top: 132px;
  }

  .trust-row,
  .intro,
  .process-inner,
  .quote-layout,
  .seo-layout,
  .split-section,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .contact-grid,
  .feature-grid,
  .thanks-steps,
  .gallery-strip,
  .photo-preview-grid,
  .real-gallery,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .brand strong {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 176px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 9, 7, 0.92), rgba(12, 9, 7, 0.56)),
      linear-gradient(180deg, rgba(12, 9, 7, 0.46), rgba(12, 9, 7, 0.86));
  }

  h1 {
    font-size: 2.55rem;
  }

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

  .btn {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .reference-grid,
  .contact-grid,
  .quote-form,
  .feature-grid,
  .thanks-steps,
  .gallery-strip,
  .photo-preview-grid,
  .real-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .real-gallery figure:nth-child(1),
  .real-gallery figure:nth-child(8) {
    grid-column: auto;
  }

  .section-shell {
    padding: 72px 0;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}
