:root {
  --ink: #25211d;
  --muted: #6d675f;
  --line: #e8e2da;
  --paper: #ffffff;
  --white: #ffffff;
  --cedar: #8c5a34;
  --cedar-dark: #5a351f;
  --sage: #6f7b66;
  --charcoal: #2f3330;
  --soft: #f7f4ef;
  --shadow: 0 24px 70px rgba(68, 50, 32, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f6f2;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 8px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 224, 216, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: min(300px, 38vw);
}

.brand-logo {
  display: block;
  width: clamp(250px, 23vw, 360px);
  height: 86px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.phone-link {
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.site-nav a:hover {
  background: #f1ebe4;
}

.phone-link {
  background: var(--charcoal);
  color: var(--white);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(420px, 680px);
  gap: clamp(20px, 3vw, 54px);
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 82px);
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(140, 90, 52, 0.045) 42px 43px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cedar);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-category {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  background: var(--charcoal);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
}

h3 {
  font-size: 24px;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 15px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 850;
  text-align: center;
}

.button-primary {
  background: var(--charcoal);
  color: var(--white);
}

.button-primary:hover,
.phone-link:hover {
  background: #181b19;
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--cedar);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.hero-media {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1.08 / 1;
  min-height: 0;
  margin-left: 0;
  transform: none;
}

.hero-main,
.hero-small {
  position: absolute;
  object-fit: contain;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-main {
  left: 15%;
  bottom: 0;
  width: 72%;
  height: 78%;
}

.hero-logo-center {
  position: absolute;
  left: 13%;
  bottom: 5%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76%;
  height: 70%;
  padding: clamp(14px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: opacity .55s ease, transform .55s ease;
}

.hero-media.logo-mode .hero-main {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}

.hero-media.logo-mode .hero-logo-center {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-logo-center::before {
  content: "";
  position: absolute;
  inset: 14% 3%;
  background:
    radial-gradient(circle at 50% 46%, rgba(240, 195, 143, 0.34), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(247,244,239,.68));
  border: 1px solid rgba(140, 90, 52, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(68, 50, 32, 0.16);
}

.hero-logo-center img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(68, 50, 32, 0.18));
  animation: logoBreathe 5.6s ease-in-out infinite;
}

.logo-slat,
.logo-spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.logo-slat {
  width: 34%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cedar-dark), #b47445 45%, #e2b17e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 12px 26px rgba(90,52,28,.15);
  animation: shutterSlide 4.8s ease-in-out infinite;
}

.logo-slat-left {
  left: 3%;
  top: 21%;
}

.logo-slat-right {
  right: 3%;
  bottom: 20%;
  animation-delay: .45s;
}

.logo-spark {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(140, 90, 52, 0.48);
  border-radius: 999px;
  animation: logoSpark 4.2s ease-in-out infinite;
}

.logo-spark-one {
  top: 18%;
  right: 16%;
}

.logo-spark-two {
  left: 17%;
  bottom: 20%;
  animation-delay: .8s;
}

.logo-spark-three {
  right: 28%;
  bottom: 13%;
  animation-delay: 1.35s;
}

.hero-small {
  width: 34%;
  height: 31%;
}

.hero-small-top {
  top: 0;
  left: 0;
}

.hero-small-bottom {
  right: -8%;
  bottom: -3%;
}


.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--white);
}


.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

.section-heading p:not(.eyebrow),
.material-band p,
.contact-section p {
  color: var(--muted);
  font-size: 20px;
}

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

.style-card {
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(68, 50, 32, 0.08);
}

.style-card img {
  height: 100%;
  object-fit: cover;
}

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

.style-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.material-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  background: #f3eee8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 560px);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(48px, 7vw, 94px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(111, 123, 102, 0.06) 42px 43px);
}

.reviews-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 23px);
}

.reviews-hero-media {
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews-hero-media img {
  aspect-ratio: 1.05 / 1;
  height: 100%;
  object-fit: cover;
}

.review-summary-section {
  background: #fbf7f1;
}

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

.review-points article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: #eef0ea;
  border-radius: 8px;
  color: var(--charcoal);
  font-weight: 950;
}

.review-points p {
  color: var(--muted);
}

.reviews-google-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  background: #f3eee8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reviews-google-band p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.reviews-redirect {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(140, 90, 52, 0.055) 42px 43px);
  text-align: center;
}

.reviews-redirect::before {
  content: "";
  position: absolute;
  inset: auto 8% -26% auto;
  width: min(52vw, 520px);
  aspect-ratio: 1;
  background: rgba(111, 123, 102, 0.12);
  border-radius: 999px;
  animation: redirectGlow 4s ease-in-out infinite;
}

.reviews-redirect > * {
  position: relative;
}

.reviews-redirect-logo {
  width: min(420px, 82vw);
  height: auto;
  margin-bottom: 28px;
  object-fit: contain;
  animation: redirectFloat 2.8s ease-in-out infinite;
}

.reviews-redirect h1 {
  max-width: 860px;
}

.reviews-redirect p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 23px);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 520px);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: clamp(46px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(140, 90, 52, 0.05) 42px 43px);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(47, 51, 48, 0.05), transparent 44%);
}

.about-copy,
.about-card,
.about-band {
  position: relative;
}

.about-logo {
  width: min(360px, 82vw);
  height: auto;
  margin: 0 0 24px;
  object-fit: contain;
  object-position: center;
  animation: aboutFloat 4.6s ease-in-out infinite;
}

.about-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
}

.about-copy blockquote {
  max-width: 680px;
  margin: 32px 0 0;
  padding: 24px 28px;
  background: var(--white);
  border-left: 6px solid var(--cedar);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--charcoal);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.about-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(47, 51, 48, 0.22);
  color: var(--white);
  isolation: isolate;
}

.credential-orbit {
  position: absolute;
  inset: 20px 22px auto auto;
  display: grid;
  gap: 8px;
  width: 116px;
  opacity: 0.72;
}

.credential-orbit span {
  display: block;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cedar-dark), #ba7a49, #e0b180);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: aboutSlat 2.8s ease-in-out infinite;
}

.credential-orbit span:nth-child(2) {
  width: 82%;
  animation-delay: 160ms;
}

.credential-orbit span:nth-child(3) {
  width: 64%;
  animation-delay: 320ms;
}

.credential-panel {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.055) 28px 29px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.credential-number {
  display: block;
  color: #f0c38f;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 950;
  line-height: 0.86;
}

.credential-panel p {
  margin: 14px 0 0;
  color: #f5ecdf;
  font-size: 20px;
  font-weight: 850;
}

.credential-grid {
  display: grid;
  gap: 12px;
}

.credential-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  color: #f0c38f;
  font-size: 20px;
}

.credential-grid span {
  margin-top: 4px;
  color: #efe7dc;
  font-weight: 700;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) clamp(42px, 6vw, 78px);
  padding: clamp(28px, 5vw, 58px);
  background: #f3eee8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
}

.reviews-loader {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.reviews-loader span {
  width: 14px;
  height: 48px;
  background: var(--cedar);
  border-radius: 999px;
  animation: loaderRise 1.1s ease-in-out infinite;
}

.reviews-loader span:nth-child(2) {
  animation-delay: 140ms;
}

.reviews-loader span:nth-child(3) {
  animation-delay: 280ms;
}

.redirect-progress {
  width: min(480px, 82vw);
  height: 10px;
  margin-top: 34px;
  overflow: hidden;
  background: #e9e0d6;
  border-radius: 999px;
}

.redirect-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cedar), var(--sage), var(--charcoal));
  border-radius: inherit;
  transform-origin: left;
  animation: redirectFill 4s linear forwards;
}

.redirect-note {
  margin: 13px 0 24px;
  font-size: 16px !important;
  font-weight: 850;
}

@keyframes loaderRise {
  0%, 100% { transform: scaleY(0.58); opacity: 0.58; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes redirectFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes redirectFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes redirectGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.58; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes aboutSlat {
  0%, 100% { transform: translateX(0); filter: brightness(1); }
  50% { transform: translateX(10px); filter: brightness(1.12); }
}

.gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(140, 90, 52, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f3ee 100%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 50px;
  padding: 12px 17px;
  border: 1px solid rgba(47, 51, 48, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.filter-button:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.type-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 51, 48, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(47, 51, 48, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.type-card:hover {
  border-color: rgba(140, 90, 52, 0.34);
  box-shadow: 0 30px 80px rgba(47, 51, 48, 0.16);
  transform: translateY(-4px);
}

.type-media {
  position: relative;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #ebe5dc;
}

.type-image-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.type-image-button img {
  height: 100%;
  object-fit: cover;
  transition:
    opacity 520ms ease,
    transform 360ms ease;
}

.type-card:hover .type-image-button img {
  transform: scale(1.04);
}

.type-image-button img.is-changing {
  opacity: 0.46;
}

.empty-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(247,244,239,.36)),
    repeating-linear-gradient(90deg, #d8c6b3 0 18px, #b9885f 18px 20px, #efe5da 20px 38px);
}

.empty-image::before,
.empty-image::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 8px solid rgba(47, 51, 48, .62);
  border-left-width: 12px;
  border-right-width: 12px;
  animation: shutterBreathe 4.8s ease-in-out infinite;
}

.empty-image::after {
  inset: 29% 36%;
  border-width: 0;
  border-left: 8px solid rgba(47, 51, 48, .55);
  border-right: 8px solid rgba(47, 51, 48, .55);
  animation-delay: .45s;
}

.empty-image i {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 8px;
  background: rgba(47, 51, 48, .62);
  box-shadow: 0 16px 0 rgba(47, 51, 48, .28);
  transform: skewY(-8deg);
  animation: slatFloat 3.8s ease-in-out infinite;
}

.empty-image i:nth-child(1) { top: 30%; }
.empty-image i:nth-child(2) { top: 47%; animation-delay: .18s; }
.empty-image i:nth-child(3) { top: 64%; animation-delay: .36s; }

.empty-image b {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.4) 46%, transparent 56%);
  transform: translateX(-120%);
  animation: placeholderSheen 3.6s ease-in-out infinite;
}

@keyframes shutterBreathe {
  0%, 100% { transform: scale(.98); opacity: .72; }
  50% { transform: scale(1.03); opacity: .95; }
}

@keyframes slatFloat {
  0%, 100% { transform: translateY(0) skewY(-8deg); }
  50% { transform: translateY(5px) skewY(-8deg); }
}

@keyframes logoBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.018); }
}

@keyframes shutterSlide {
  0%, 100% { transform: translateX(0); opacity: .76; }
  50% { transform: translateX(14px); opacity: 1; }
}

@keyframes logoSpark {
  0%, 100% { transform: scale(.8); opacity: .35; }
  50% { transform: scale(1.35); opacity: .88; }
}

@keyframes placeholderSheen {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gallery-error {
  grid-column: 1 / -1;
  padding: 24px;
  background: #fff4ef;
  border: 1px solid #e8b7a2;
  border-radius: 8px;
  color: #6f2f1b;
  font-weight: 800;
}

.type-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  opacity: 1;
}

.type-controls button {
  min-width: 48px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(28, 30, 28, 0.82);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.type-controls button:hover {
  background: var(--cedar);
}

.type-controls button {
  font-size: 30px;
  line-height: 1;
}

.type-copy {
  min-height: 150px;
  padding: 20px;
  text-align: center;
}

.type-copy span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--cedar);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.type-copy h3 {
  max-width: 360px;
  margin: 0 auto;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1.08;
}

.type-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.process-section {
  background: #fbf7f1;
}

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

.process-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: #efe5dc;
  border-radius: 8px;
  color: var(--cedar-dark);
  font-weight: 950;
}

.process-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(rgba(47, 51, 48, 0.9), rgba(47, 51, 48, 0.9)),
    url("assets/images/workshop-build.jpg") center / cover;
  color: var(--white);
}

.contact-section .eyebrow {
  color: #d6ad83;
}

.contact-section p {
  max-width: 740px;
  color: #eee7dd;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.contact-card .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.contact-card span {
  color: #e1d9cd;
  font-weight: 700;
  text-align: center;
}

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

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.footer-brand img {
  display: block;
  width: clamp(210px, 17vw, 280px);
  height: 82px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  color: #efe7dc;
  font-weight: 700;
}

.nyral-credit {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 5px;
  border-radius: 8px;
}

.nyral-credit:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nyral-credit img {
  width: clamp(190px, 12vw, 250px);
  height: 76px;
  object-fit: contain;
  border-radius: 6px;
  opacity: 0.96;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: clamp(14px, 3vw, 46px);
  background: rgba(37, 33, 29, 0.68);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: grid;
}

.lightbox-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: min(94vw, 1280px);
  max-height: 92vh;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 239, 0.97)),
    repeating-linear-gradient(90deg, rgba(140, 90, 52, 0.06) 0 1px, transparent 1px 38px);
  border: 1px solid rgba(140, 90, 52, 0.24);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(68, 50, 32, 0.34);
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(140, 90, 52, 0.13), transparent 18%, transparent 82%, rgba(111, 123, 102, 0.14)),
    #f3eee8;
}

.lightbox-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.38)),
    repeating-linear-gradient(90deg, rgba(140, 90, 52, 0.08) 0 1px, transparent 1px 52px);
}

.lightbox-media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(88vw, 1120px);
  max-height: min(68vh, 740px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 60px rgba(68, 50, 32, 0.24);
}

.lightbox-details {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.lightbox-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--cedar);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.lightbox-title {
  font-size: clamp(24px, 2.4vw, 42px);
}

.lightbox-caption {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.lightbox-count {
  margin: 0;
  color: var(--cedar);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px clamp(18px, 3vw, 34px) 16px;
  background: #fbf8f3;
  border-top: 1px solid var(--line);
  scrollbar-color: rgba(140, 90, 52, 0.72) transparent;
}

.lightbox-thumbs button {
  position: relative;
  flex: 0 0 86px;
  width: 86px;
  height: 68px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(68, 50, 32, 0.12);
}

.lightbox-thumbs button.active {
  border-color: var(--cedar);
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumbs span {
  position: absolute;
  right: 5px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: rgba(47, 51, 48, 0.88);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(140, 90, 52, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.lightbox-nav:hover {
  background: var(--charcoal);
  color: var(--white);
}

.lightbox-prev {
  left: clamp(12px, 2vw, 28px);
}

.lightbox-next {
  right: clamp(12px, 2vw, 28px);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(140, 90, 52, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.lightbox-close:hover {
  background: var(--charcoal);
  color: var(--white);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    width: min(100%, 660px);
    min-height: 500px;
    margin: 0 auto;
    transform: none;
  }

  .style-grid,
  .process-grid,
  .review-points {
    grid-template-columns: 1fr;
  }

  .material-band,
  .contact-section,
  .reviews-hero,
  .about-band,
  .reviews-google-band {
    grid-template-columns: 1fr;
  }


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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
    gap: 12px;
    padding: 12px 16px 14px;
  }

  .brand,
  .phone-link {
    width: 100%;
  }

  .brand-logo {
    width: min(290px, 82vw);
    height: 92px;
    transform: none;
  }

  .phone-link {
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    font-size: 15px;
  }

  .site-nav {
    gap: 6px;
    width: calc(100% + 8px);
    margin: 0 -4px;
    padding-bottom: 2px;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .hero {
    padding: 34px 16px 44px;
  }

  .about-hero {
    padding: 36px 16px 44px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  h3 {
    font-size: 22px;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .material-band p,
  .contact-section p,
  .reviews-google-band p {
    font-size: 18px;
  }

  .section,
  .contact-section {
    padding: 54px 16px;
  }

  .material-band,
  .about-band,
  .reviews-google-band {
    margin: 0 16px;
    padding: 24px;
  }

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

  .hero-actions .button,
  .about-actions .button {
    min-height: 62px;
    width: 100%;
  }

  .about-logo {
    width: min(280px, 82vw);
    margin-bottom: 22px;
  }

  .about-lead {
    font-size: 18px;
  }

  .about-copy blockquote {
    margin-top: 24px;
    padding: 20px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .about-card {
    padding: 18px;
  }

  .credential-orbit {
    position: relative;
    inset: auto;
    width: 96px;
    order: -1;
  }

  .credential-panel {
    padding: 22px;
  }

  .credential-panel p {
    font-size: 18px;
  }

  .hero-media {
    width: min(100%, 430px);
    aspect-ratio: 0.92 / 1;
    min-height: 0;
  }

  .hero-main {
    left: 10%;
    width: 80%;
    height: 74%;
    border-width: 7px;
  }

  .hero-logo-center {
    left: 5%;
    bottom: 8%;
    width: 90%;
    height: 66%;
  }

  .hero-logo-center img {
    width: min(100%, 360px);
  }

  .logo-slat {
    width: 30%;
    height: 10px;
  }

  .hero-small {
    width: 42%;
    height: 25%;
    border-width: 6px;
  }

  .hero-small-bottom {
    right: 0;
    bottom: 0;
  }

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

  .style-card {
    grid-template-rows: 260px 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .type-media {
    aspect-ratio: 1.08 / 1;
  }

  .type-copy {
    min-height: auto;
    padding: 18px 16px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -16px 26px;
    padding: 0 16px 4px;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .process-grid article,
  .review-points article {
    padding: 22px;
  }

  .contact-section {
    gap: 24px;
  }

  .contact-card {
    padding: 18px;
  }

  .site-footer,
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .lightbox {
    padding: 8px;
    align-items: start;
    overflow-y: auto;
  }

  .lightbox-panel {
    width: 100%;
    max-height: none;
    margin: 8px 0;
    grid-template-rows: auto auto auto;
  }

  .lightbox-media img {
    max-width: 100%;
    max-height: min(52vh, 440px);
    object-fit: contain;
  }

  .lightbox-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .lightbox-thumbs button {
    flex-basis: 72px;
    width: 72px;
    height: 58px;
  }

  .footer-brand img {
    object-position: center;
  }

  .reviews-redirect {
    min-height: calc(100vh - 198px);
    padding: 42px 16px;
  }

  .reviews-redirect-logo {
    width: min(300px, 82vw);
  }
}

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

  .hero {
    padding-inline: 12px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .button {
    min-height: 56px;
    padding: 13px 16px;
    font-size: 16px;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-media {
    width: 100%;
  }

  .section,
  .contact-section {
    padding-inline: 12px;
  }

  .material-band,
  .about-band,
  .reviews-google-band {
    margin-inline: 12px;
    padding: 20px;
  }

  .about-hero {
    padding-inline: 12px;
  }

  .about-copy blockquote {
    padding: 18px;
  }

  .lightbox-title {
    font-size: 26px;
  }

  .lightbox-caption {
    font-size: 14px;
  }

  .lightbox-thumbs {
    padding-inline: 12px;
  }
}
