:root {
  --charcoal: #121212;
  --matte: #1a1a1a;
  --oak: #d8b27a;
  --cream: #f5f1eb;
  --gray: #eaeaea;
  --muted: #a7a19a;
  --line: rgba(216, 178, 122, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  color-scheme: dark;
  font-family: "Inter", system-ui, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
}

html.coming-soon,
html.coming-soon body {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.site-ready .site-header,
body.site-ready main,
body.site-ready .site-footer {
  opacity: 1;
}

.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px) 24px;
  isolation: isolate;
  background: #121212;
}

.coming-soon .site-header,
.coming-soon body > .skip-link,
.coming-soon main,
.coming-soon .site-footer,
.coming-soon .media-lightbox,
.coming-soon .floating-cta {
  display: none !important;
}

.launch-screen__loader,
.launch-screen__content {
  grid-area: 1 / 1;
}

.launch-screen__loader {
  display: grid;
  place-items: center;
  background: #141414;
  opacity: 1;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.launch-screen__loader img {
  width: min(320px, 68vw);
  height: auto;
}

.launch-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(620px, 100%);
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms ease 220ms, transform 900ms ease 220ms;
}

.launch-screen.is-ready .launch-screen__loader {
  opacity: 0;
  visibility: hidden;
}

.launch-screen.is-ready .launch-screen__content {
  opacity: 1;
  transform: translateY(0);
}

.launch-screen__logo {
  width: min(210px, 52vw);
  height: auto;
  margin-bottom: 28px;
}

.launch-screen h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.launch-screen__message {
  margin: 24px 0 30px;
  color: rgba(245, 241, 235, 0.68);
  font-size: clamp(0.92rem, 1.7vw, 1.04rem);
  line-height: 1.8;
}

.launch-screen__contact {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(216, 178, 122, 0.68);
  color: var(--cream);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}

.launch-screen__contact:hover,
.launch-screen__contact:focus-visible {
  border-color: var(--oak);
  color: var(--oak);
}

@media (max-height: 680px) {
  .launch-screen__logo {
    width: min(170px, 44vw);
    margin-bottom: 19px;
  }

  .launch-screen__message {
    margin-block: 17px 21px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-screen__loader {
    display: none;
  }

  .launch-screen__content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.icon {
  display: block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 25px clamp(20px, 5vw, 72px) 24px;
  background: transparent;
  transition: background 250ms ease, min-height 250ms ease, padding 250ms ease;
}

.site-header.scrolled {
  min-height: 84px;
  padding-block: 14px;
  background: rgba(28, 28, 26, 0.92);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.site-footer .brand img {
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(245, 241, 235, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links a,
.site-footer a,
.social-actions a {
  transition: color 200ms ease;
}

.nav-links a:hover,
.site-footer a:hover,
.social-actions a:hover {
  color: var(--oak);
}

.header-cta {
  justify-self: end;
  align-self: center;
  border: 1px solid rgba(216, 178, 122, 0.56);
  background: rgba(18, 18, 18, 0.82);
  color: var(--oak);
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 92px) 72px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.82)),
    linear-gradient(0deg, rgba(18, 18, 18, 0.94), rgba(18, 18, 18, 0.1) 48%, rgba(18, 18, 18, 0));
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--oak);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-title {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  line-height: 0.95;
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 560px;
  color: rgba(245, 241, 235, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

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

.button-primary {
  background: var(--oak);
  color: #17110b;
}
form .button-primary {
  margin-top: 20px;
  max-height: 65px
}

.button-secondary {
  border: 1px solid rgba(245, 241, 235, 0.42);
  background: rgba(245, 241, 235, 0.08);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
  color: rgba(245, 241, 235, 0.82);
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-list li::before {
  content: "✓";
  color: var(--oak);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 44px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 241, 235, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 200ms ease, transform 200ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--cream);
  transform: translateY(-2px);
}

.scroll-cue:focus-visible {
  outline: 1px solid var(--oak);
  outline-offset: 8px;
  border-radius: 999px;
}

.scroll-cue__line {
  position: relative;
  width: 1px;
  height: 74px;
  overflow: hidden;
  background: rgba(245, 241, 235, 0.22);
}

.scroll-cue__line::before {
  content: "";
  position: absolute;
  inset: -74px 0 auto;
  height: 74px;
  background: var(--oak);
  animation: scrollCue 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 1px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--oak);
  border-bottom: 1px solid var(--oak);
  transform: rotate(45deg);
}

@keyframes scrollCue {
  0% { transform: translateY(0); }
  100% { transform: translateY(148px); }
}

.section {
  padding: clamp(76px, 10vw, 144px) clamp(20px, 6vw, 92px);
}

.intro-band {
  background: #181816;
  color: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat {
  border-left: 1px solid rgba(216, 178, 122, 0.26);
  padding: 8px 0 8px 26px;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--oak);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
}

.stat strong.stat-location {
  color: rgba(245, 241, 235, 0.88);
  font-size: clamp(2.45rem, 5vw, 4.65rem);
}

.stat span:last-child {
  color: rgba(245, 241, 235, 0.68);
  font-weight: 700;
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(245, 241, 235, 0.62);
  font-size: 1.03rem;
  line-height: 1.75;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 1;
}

.section-heading.light {
  color: var(--cream);
  padding-inline: clamp(20px, 6vw, 92px);
}

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

@media (min-width: 1800px) {
  .portfolio-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--matte);
  box-shadow: var(--shadow);
}

.portfolio-item.project-secondary {
  display: none;
}

.portfolio-media {
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.portfolio-item img,
.showcase-media,
.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.parallax-image img {
  height: 124%;
}

img.placeholder-img {
  background: #6e6e6e;
  object-fit: cover;
  object-position: center;
}

img.placeholder-img--dark {
  background: #484848;
}

.portfolio-item:hover img,
.insta-post:hover .showcase-media {
  transform: scale(1.035);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.portfolio-media:focus-visible {
  outline: 2px solid var(--oak);
  outline-offset: -6px;
}

.portfolio-info {
  position: absolute;
  left: 15px;
  right: 25px;
  bottom: 30px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0.86;
  transition: transform 250ms ease, opacity 250ms ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--oak);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-info strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.video-label {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 241, 235, 0.32);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(18, 18, 18, 0.82);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--oak);
}

.services {
  background: #171717;
}

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

.service-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    var(--matte);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.service-icon {
  color: var(--oak);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.service-card h3,
.timeline-step h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.service-card p,
.timeline-step p,
.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: rgba(245, 241, 235, 0.68);
  line-height: 1.75;
}

.service-card p {
  margin-bottom: 24px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--oak);
  font-weight: 800;
}

.service-card a::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0) translateX(-6px);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card a::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  transform: translateX(-16px) rotate(45deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card a:hover::after,
.service-card a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1) translateX(0);
}

.service-card a:hover::before,
.service-card a:focus-visible::before {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: var(--cream);
  color: var(--charcoal);
}

.about-image {
  display: block;
  height: min(70vw, 760px);
  min-height: 420px;
  line-height: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 28px 90px rgba(18, 18, 18, 0.18);
}

.about-copy > p:not(.eyebrow) {
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(18, 18, 18, 0.64);
  font-size: 1.04rem;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.highlight-list span {
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 8px;
  padding: 14px;
  color: rgba(18, 18, 18, 0.76);
  font-weight: 800;
}

.before-after {
  padding: clamp(76px, 10vw, 144px) 0;
  background: #101010;
}

.comparison {
  position: relative;
  width: min(100% - 40px, 1500px);
  aspect-ratio: 16 / 8;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
  --position: 52%;
}

.comparison-img,
.comparison-before img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
}

.comparison-before img {
  max-width: none;
  width: min(1500px, calc(100vw - 40px));
  min-width: min(1500px, calc(100vw - 40px));
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--oak);
  transform: translateX(-50%);
}

.comparison-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid var(--oak);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.82);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.comparison input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  top: 20px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(18, 18, 18, 0.82);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  padding-top: 78px;
}

.timeline-step span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--oak);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--oak);
  font-family: "Playfair Display", serif;
}

.testimonials {
  overflow: hidden;
  padding: clamp(76px, 10vw, 144px) 0;
  background: var(--matte);
}

.testimonial-track {
  width: 100%;
  padding-inline: clamp(20px, 6vw, 92px);
}

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

.testimonial-row.clone {
  display: none;
}

.review-card {
  width: auto;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.055);
}

.review-card span {
  color: var(--oak);
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 22px 0;
  color: rgba(245, 241, 235, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

@keyframes testimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.inline-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  max-width: none;
}

.inline-heading h2 {
  max-width: 840px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-actions a,
.instagram-cta {
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 178, 122, 0.45);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--oak);
  font-size: 0.86rem;
  font-weight: 800;
}

.instagram-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, 18vw);
  gap: 16px;
}

.insta-post {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--matte);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.insta-post:focus-visible,
.instagram-cta:focus-visible,
.social-actions a:focus-visible {
  outline: 1px solid var(--oak);
  outline-offset: 5px;
}

.insta-post.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.insta-post.wide {
  grid-column: span 2;
}

.insta-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 24%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.3), rgba(18, 18, 18, 0));
}

.media-badge,
.insta-caption {
  position: absolute;
  z-index: 2;
}

.media-badge {
  top: 14px;
  right: 14px;
  border: 1px solid rgba(245, 241, 235, 0.3);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(18, 18, 18, 0.82);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.insta-caption {
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.insta-caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--oak);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insta-caption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
}

.instagram-cta {
  display: inline-flex;
  margin-top: 50px;
}

.contact {
  padding: clamp(76px, 10vw, 144px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(rgba(18, 18, 18, 0.74), rgba(18, 18, 18, 0.9)),
    url("img/showcase/web/hardwood-wide-plank.jpg") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--oak);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 235, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  padding: 14px 15px;
  outline: none;
}

.quote-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--oak) 50%), linear-gradient(135deg, var(--oak) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--oak);
}

.form-note {
  margin: -4px 0 0;
  color: rgba(245, 241, 235, 0.48);
  font-size: 0.76rem;
}

.map-strip {
  height: 330px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.08);
}

.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  padding: 58px clamp(20px, 6vw, 92px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--oak);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer > div {
  min-width: 0;
}

.site-footer a,
.site-footer > div > span,
.footer-brand p {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 241, 235, 0.66);
  line-height: 1.65;
}

.site-footer .icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-footer .icon {
  width: 1rem;
  height: 1rem;
  color: var(--oak);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 22px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.32em;
  margin: 28px 0 0;
  color: rgba(245, 241, 235, 0.62);
  font-size: 0.8rem;
  line-height: 1.65;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--oak);
  color: #17110b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  font-size: 0.82rem;
  font-weight: 900;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(8, 8, 8, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.media-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.media-lightbox__content {
  width: min(100%, 1180px);
  max-height: 84vh;
}

.media-lightbox__content img,
.media-lightbox__content video {
  display: block;
  width: 100%;
  max-height: 84vh;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.media-lightbox__close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(245, 241, 235, 0.24);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.media-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 5vw, 62px);
  height: clamp(46px, 5vw, 62px);
  border: 1px solid rgba(245, 241, 235, 0.24);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.68);
  color: var(--cream);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.media-lightbox__nav:hover {
  border-color: rgba(216, 178, 122, 0.72);
  background: rgba(18, 18, 18, 0.86);
  transform: translateY(-50%) scale(1.04);
}

.media-lightbox__nav--prev {
  left: clamp(14px, 3vw, 34px);
}

.media-lightbox__nav--next {
  right: clamp(14px, 3vw, 34px);
}

.media-lightbox__nav .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.65;
}

.reveal-up,
.reveal-text {
  opacity: 0;
}

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

  .reveal-up,
  .reveal-text {
    opacity: 1;
  }
}

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

  .nav-links {
    display: none;
  }

  .stats-grid,
  .service-grid,
  .about,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    padding: 0 0 0 96px;
  }

  .timeline-step span {
    left: 0;
  }

  .inline-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(210px, 34vw);
  }

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

@media (max-width: 760px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 82px;
    padding: 14px 16px;
    background: transparent;
  }

  .site-header.scrolled {
    min-height: 68px;
    padding-block: 11px;
  }

  .brand {
    width: max-content;
  }

  .brand img {
    height: 58px;
    transition: height 250ms ease;
  }

  .site-header.scrolled .brand img {
    height: 42px;
  }

  .site-footer .brand img {
    height: 58px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 100dvh;
    align-items: center;
    padding: 104px 18px 48px;
  }

  .hero-title {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 13vw, 4.25rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .testimonial-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    line-height: 1.08;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 17px;
  }

  .scroll-cue {
    display: none;
  }

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

  .portfolio-item {
    aspect-ratio: 1 / 1;
  }

  .service-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .highlight-list,
  .instagram-showcase {
    grid-template-columns: 1fr;
  }

  .instagram-showcase {
    grid-auto-rows: auto;
  }

  .insta-post,
  .insta-post.featured,
  .insta-post.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .comparison {
    width: calc(100% - 28px);
    aspect-ratio: 4 / 5;
  }

  .comparison-before img {
    width: calc(100vw - 28px);
    min-width: calc(100vw - 28px);
  }

  .site-footer {
    gap: 28px;
    padding-bottom: 94px;
    text-align: left;
  }

  .site-footer h3 {
    margin-bottom: 10px;
  }

  .site-footer a,
  .site-footer > div > span,
  .footer-brand p {
    margin-bottom: 8px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    margin-top: 4px;
  }

  .parallax-image img {
    height: 100%;
  }

  .media-lightbox {
    align-items: center;
    padding: 68px 14px 92px;
  }

  .media-lightbox__content {
    max-height: calc(100dvh - 180px);
  }

  .media-lightbox__content img,
  .media-lightbox__content video {
    max-height: calc(100dvh - 180px);
  }

  .media-lightbox__nav {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .media-lightbox__nav:hover {
    transform: scale(1.04);
  }

  .media-lightbox__nav--prev {
    left: calc(50% - 58px);
  }

  .media-lightbox__nav--next {
    right: calc(50% - 58px);
  }
}
