:root {
  color-scheme: light;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: Arial, Helvetica, sans-serif;
  --bg: #f2eee7;
  --page: #fffdfa;
  --section: #ffffff;
  --soft: #f0eadf;
  --tile: #ffffff;
  --ink: #171514;
  --muted: #625d55;
  --subtle: #8a8177;
  --line: #e5ddcf;
  --accent: #6f8f45;
  --accent-strong: #4f7134;
  --accent-contrast: #ffffff;
  --hero-accent: #6f8f45;
  --shadow: 0 18px 48px rgba(71, 55, 35, 0.11);
  --header-bg: rgba(255, 253, 250, 0.94);
  --image-fade: linear-gradient(90deg, var(--page) 0%, rgba(255, 253, 250, 0.86) 19%, rgba(255, 253, 250, 0.14) 52%, transparent 76%);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1010;
  --page: #111315;
  --section: #151719;
  --soft: #1b1d1c;
  --tile: #181a1a;
  --ink: #eee8dc;
  --muted: #b9ad9d;
  --subtle: #8e8373;
  --line: #2d2b25;
  --accent: #91b66f;
  --accent-strong: #b3d693;
  --accent-contrast: #111315;
  --hero-accent: #d6e8c7;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  --header-bg: rgba(17, 19, 21, 0.94);
  --image-fade: linear-gradient(90deg, var(--page) 0%, rgba(17, 19, 21, 0.9) 18%, rgba(17, 19, 21, 0.25) 52%, transparent 76%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 14px;
  border-radius: 0;
  transition: transform 160ms ease;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-grid {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 186px;
  height: auto;
}

.brand.small img {
  width: 150px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 27px 0 24px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-theme {
  display: none;
}

.nav-theme > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--tile);
}

.theme-choice {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.theme-choice.is-active {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.swatch {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
}

.swatch-light {
  background: linear-gradient(135deg, #fffdfa 0 50%, #6f8f45 50% 100%);
}

.swatch-dark {
  background: linear-gradient(135deg, #111315 0 50%, #91b66f 50% 100%);
}

.header-cta,
.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
}

.header-cta {
  min-width: 154px;
  padding: 0 17px;
  background: var(--accent);
  color: var(--accent-contrast);
}

.header-cta svg,
.btn svg,
.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--ink);
  padding: 0;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hero {
  overflow: hidden;
  padding: 0;
  background: var(--page);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1fr);
  align-items: stretch;
  min-height: 336px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 24px 46px 0;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
}

.accent-line {
  color: var(--hero-accent);
}

.hero p {
  width: min(100%, 445px);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  min-width: 164px;
  padding: 0 22px;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  color: var(--ink);
  border-color: transparent;
}

.btn-outline {
  min-height: 38px;
  color: var(--accent-strong);
  border-color: var(--accent);
  background: transparent;
}

.hero-media {
  position: relative;
  min-height: 336px;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 58%;
  background: var(--image-fade);
  pointer-events: none;
}

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

[data-theme="dark"] .hero-grid,
[data-theme="dark"] .hero-media {
  min-height: 370px;
}

.proof-band {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 15px 26px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.line-icon,
.service-icon {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon {
  width: 36px;
  height: 36px;
}

.proof-item h2,
.service-card h3,
.step h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.proof-item h2 {
  font-weight: 900;
  text-transform: uppercase;
}

.proof-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.services {
  background: var(--page);
}

.section-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.section-line h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-line span {
  flex: 0 0 54px;
  height: 1px;
  background: var(--accent);
}

.section-line.compact {
  margin-bottom: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 12px;
  text-align: center;
  background: var(--tile);
  border: 1px solid var(--line);
}

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  width: 36px;
  height: 36px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.about {
  background: var(--section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.85fr) minmax(220px, 0.6fr);
  gap: 34px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-media img {
  width: 100%;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
}

.about-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.about-copy p,
.contact-copy p,
.film-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.about-copy .btn,
.film-card .btn {
  margin-top: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(-45deg);
}

.portfolio {
  background: var(--page);
}

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

.section-heading-row .section-line {
  margin-bottom: 0;
}

.text-link {
  min-height: auto;
  color: var(--accent-strong);
  font-size: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
}

.process,
.film-section {
  background: var(--section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 23px;
  height: 1px;
  background: var(--line);
}

.step {
  position: relative;
  min-height: 118px;
  padding-top: 46px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--section);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 24px;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.film-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.film-media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
}

.film-media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.film-media span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--accent-contrast);
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.film-media svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
}

.film-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.testimonials {
  background:
    linear-gradient(90deg, var(--page) 0 68%, rgba(111, 143, 69, 0.08) 68% 100%),
    var(--page);
}

[data-theme="dark"] .testimonials {
  background: var(--page);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.testimonials-grid > .section-line {
  align-self: start;
}

.quote-card {
  min-height: 138px;
  padding: 22px;
  background: var(--tile);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card::before {
  content: "\201C";
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.7;
}

.quote-card p {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
}

.quote-card footer {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.stars {
  margin-top: 7px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.contact {
  background: var(--section);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-list {
  margin-top: 20px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  border-radius: 0;
  font-size: 14px;
}

select {
  min-height: 45px;
}

textarea {
  resize: vertical;
  min-height: 112px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  background: #171717;
  color: #f4eee6;
}

[data-theme="dark"] .site-footer {
  background: #0b0c0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 76px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #bcb3a8;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
  color: #a99e93;
  font-size: 12px;
  text-align: right;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

  .main-nav {
    gap: 17px;
  }

  .brand img {
    width: 168px;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .about-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  }

  .check-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonials-grid > .section-line {
    grid-column: 1 / -1;
  }
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    background: var(--header-bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 13px 24px;
  }

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

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: grid;
  }

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

  .hero-copy {
    padding: 42px 0 34px;
  }

  .hero-media,
  [data-theme="dark"] .hero-media {
    min-height: 315px;
    margin-right: 0;
  }

  .hero-media::before {
    width: 100%;
    background: linear-gradient(180deg, var(--page) 0%, transparent 30%);
  }

  .proof-band {
    margin-top: 0;
  }

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

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

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

  .steps::before {
    display: none;
  }

  .film-grid,
  .film-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 20px 0;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

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

  .header-grid {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .header-cta {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .theme-toggle {
    display: none;
  }

  .main-nav .nav-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 24px 16px;
    border-top: 1px solid var(--line);
  }

  .main-nav .nav-theme .theme-toggle {
    display: inline-flex;
  }

  .main-nav .nav-theme .theme-choice {
    width: 38px;
    height: 34px;
  }

  .main-nav .nav-theme .swatch {
    width: 20px;
    height: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .gallery,
  .about-grid,
  .testimonials-grid,
  .form-row,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 106px;
  }

  .about-copy h3,
  .film-card h3 {
    font-size: 25px;
  }

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

  .gallery {
    gap: 10px;
  }

  .gallery img {
    aspect-ratio: 1.8 / 1;
  }

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

  .step {
    min-height: auto;
    padding: 0 0 0 62px;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}


/* Premium motion layer */
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.text-link,
.theme-choice,
.service-card,
.quote-card,
.film-media,
.gallery img,
input,
select,
textarea {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-media img {
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.015);
  transition: transform 700ms ease, opacity 220ms ease;
}

.service-card:hover,
.quote-card:hover,
.film-media:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-card:hover,
.quote-card:hover {
  box-shadow: var(--shadow);
}

.gallery img:hover {
  border-color: var(--accent);
  filter: saturate(1.05) contrast(1.04);
  transform: translateY(-2px);
}

.film-media span {
  box-shadow: 0 0 0 0 rgba(111, 143, 69, 0.28);
  animation: playPulse 2600ms ease-out infinite;
}

.form-status.is-flash {
  animation: flashStatus 900ms ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

html.theme-transition,
html.theme-transition * {
  transition-property: background-color, border-color, color, fill, stroke, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: ease;
}

body.motion-ready .hero-copy > * {
  animation: heroRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.motion-ready .hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

body.motion-ready .hero-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 143, 69, 0.28);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(111, 143, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 143, 69, 0);
  }
}

@keyframes flashStatus {
  0%, 100% {
    opacity: 1;
  }
  45% {
    opacity: 0.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Zbyszek premium upgrade */
.hero-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 470px);
  margin-top: 20px;
}

.hero-metrics span {
  display: grid;
  gap: 2px;
  min-height: 62px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--tile) 86%, transparent);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  min-width: 142px;
  padding: 16px 18px;
  background: rgba(17, 19, 21, 0.86);
  color: #fffdfa;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: #b9d893;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.craft-bar {
  background: #111315;
  color: #eee8dc;
  border-top: 1px solid #272927;
  border-bottom: 1px solid #272927;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 58px;
}

.craft-grid span {
  display: grid;
  place-items: center;
  border-left: 1px solid #272927;
  color: #b9ad9d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.craft-grid span:last-child {
  border-right: 1px solid #272927;
  color: #91b66f;
}

.craft-bar + .proof-band {
  margin-top: 0;
}

[data-theme="dark"] .hero {
  background: #050605;
  border-bottom: 1px solid #252720;
}

[data-theme="dark"] .hero-grid,
[data-theme="dark"] .hero-media {
  min-height: 430px;
}

[data-theme="dark"] .hero-copy {
  padding-top: 58px;
  padding-bottom: 58px;
}

[data-theme="dark"] .hero h1 {
  font-size: 54px;
  max-width: 560px;
}

[data-theme="dark"] .hero p {
  color: #c6baaa;
}

[data-theme="dark"] .hero-kicker {
  color: #b3d693;
}

[data-theme="dark"] .hero-metrics span {
  background: rgba(16, 18, 17, 0.78);
  border-color: #303429;
}

[data-theme="dark"] .hero-metrics strong {
  color: #f3efe6;
}

[data-theme="dark"] .hero-badge {
  background: rgba(5, 6, 5, 0.9);
  border-color: rgba(179, 214, 147, 0.32);
}

[data-theme="dark"] .proof-grid {
  background: #0d0e0d;
}

[data-theme="dark"] .proof-item,
[data-theme="dark"] .service-card,
[data-theme="dark"] .quote-card,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  box-shadow: none;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.reviews-score {
  display: grid;
  gap: 2px;
  min-width: 250px;
  padding: 14px 18px;
  background: var(--tile);
  border: 1px solid var(--line);
  text-align: right;
}

.reviews-score strong {
  color: var(--accent-strong);
  font-size: 18px;
  line-height: 1.1;
}

.reviews-score span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.reviews-grid .quote-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
}

.reviews-grid .quote-card p {
  flex: 1;
  font-size: 13px;
}

.featured-review {
  grid-column: span 2;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--tile)) 0%, var(--tile) 58%);
}

.reviews-link {
  display: flex;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-link:hover {
  background: var(--accent-strong);
}

[data-theme="dark"] .testimonials {
  background: #0b0c0b;
  border-top: 1px solid #252720;
  border-bottom: 1px solid #252720;
}

[data-theme="dark"] .featured-review {
  background:
    linear-gradient(135deg, rgba(145, 182, 111, 0.16) 0%, #151716 62%);
}

[data-theme="dark"] .reviews-score {
  background: #111312;
  border-color: #303429;
}

@media (max-width: 900px) {
  .hero-metrics,
  .reviews-head,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .featured-review {
    grid-column: auto;
  }

  .reviews-score {
    min-width: 0;
    text-align: left;
  }

  [data-theme="dark"] .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 680px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    right: 20px;
    bottom: 20px;
    min-width: 120px;
  }

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

  .craft-grid span {
    min-height: 42px;
    border-right: 1px solid #272927;
    border-bottom: 1px solid #272927;
  }
}

/* Editorial showroom v3 */
.studio-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 72px;
  background:
    linear-gradient(90deg, var(--page) 0 47%, #eef0eb 47% 100%);
}

.studio-hero::before {
  content: "1995";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: -44px;
  color: rgba(23, 21, 20, 0.035);
  font-family: var(--font-display);
  font-size: 190px;
  line-height: 1;
  pointer-events: none;
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.32fr);
  gap: 62px;
  align-items: center;
}

.studio-copy {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.studio-copy .hero-kicker {
  margin-bottom: 22px;
  color: var(--accent-strong);
}

.studio-copy h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 500;
  line-height: 0.98;
}

.studio-copy h1 span {
  display: block;
}

.studio-copy h1 .accent-line {
  margin-top: 8px;
  color: var(--accent-strong);
  font-style: italic;
}

.studio-copy > p:not(.hero-kicker) {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.studio-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.studio-proof span {
  min-width: 0;
  padding: 15px 13px 15px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-proof span + span {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.studio-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.studio-copy .hero-actions {
  margin-top: 28px;
}

.studio-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  min-height: 620px;
  isolation: isolate;
}

.studio-board::before {
  content: "";
  position: absolute;
  inset: 5% 4% 2% 8%;
  z-index: -1;
  border: 1px solid rgba(23, 21, 20, 0.14);
}

.studio-board figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d9dcd5;
  box-shadow: 0 22px 54px rgba(25, 26, 23, 0.16);
}

.studio-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-board figure:hover img {
  transform: scale(1.025);
}

.studio-main {
  z-index: 1;
  grid-column: 1 / 10;
  grid-row: 1 / 10;
}

.studio-main img {
  transform: translateY(var(--hero-shift, 0));
}

.studio-main:hover img {
  transform: translateY(var(--hero-shift, 0)) scale(1.02);
}

.studio-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 10px;
  background: rgba(13, 15, 13, 0.84);
  color: #f5f3ed;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.studio-tall {
  z-index: 3;
  grid-column: 9 / 13;
  grid-row: 2 / 8;
  border: 8px solid var(--page);
}

.studio-wide {
  z-index: 2;
  grid-column: 3 / 10;
  grid-row: 9 / 13;
  border: 8px solid var(--page);
}

.studio-mark {
  z-index: 4;
  grid-column: 10 / 13;
  grid-row: 9 / 13;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  background: #151815;
  color: #f4f1ea;
}

.studio-mark span {
  color: #a7c88a;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-mark strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.05;
}

.signature-strip {
  background: #151815;
  color: #f2eee6;
  border-top: 1px solid #2a2d28;
  border-bottom: 1px solid #2a2d28;
}

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

.signature-grid span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 22px 0 38px;
  border-left: 1px solid #2d302c;
  color: #c7c0b5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-grid span:last-child {
  border-right: 1px solid #2d302c;
}

.signature-grid span::before {
  content: "";
  position: absolute;
  left: 19px;
  width: 7px;
  height: 7px;
  background: #91b66f;
}

.services {
  padding-top: 58px;
  padding-bottom: 66px;
}

.services .section-line {
  margin-bottom: 28px;
}

.services .service-grid {
  counter-reset: service;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services .service-card {
  counter-increment: service;
  position: relative;
  min-height: 206px;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 32px 34px 28px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  box-shadow: none;
}

.services .service-card::before {
  content: "0" counter(service);
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--subtle);
  font-family: var(--font-display);
  font-size: 13px;
}

.services .service-card:hover {
  background: var(--soft);
  border-color: var(--line);
  transform: none;
}

.services .service-icon {
  width: 42px;
  height: 42px;
}

.services .service-card h3 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.services .service-card p {
  max-width: 290px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.about {
  padding: 0;
  background: #171a17;
  color: #f3efe7;
  border: 0;
}

.about .shell {
  width: min(1180px, calc(100% - 48px));
}

.about-grid {
  grid-template-columns: minmax(430px, 1.1fr) minmax(320px, 0.78fr);
  grid-template-areas:
    "media copy"
    "media checks";
  gap: 0 58px;
  min-height: 540px;
  align-items: center;
}

.about-media {
  grid-area: media;
  align-self: stretch;
  margin-left: 0;
  overflow: hidden;
  border: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.about-copy {
  grid-area: copy;
  align-self: end;
  padding-top: 64px;
}

.about-copy .section-line h2 {
  color: #b5d198;
}

.about-copy .section-line span {
  background: #91b66f;
}

.about-copy h3 {
  max-width: 470px;
  color: #f5f1e9;
  font-size: 38px;
}

.about-copy p {
  max-width: 510px;
  color: #c2bbaf;
  line-height: 1.75;
}

.about-copy .btn {
  color: #f5f1e9;
  border-color: #64705f;
}

.about-copy .btn:hover {
  color: #151815;
  background: #b5d198;
  border-color: #b5d198;
}

.about .check-list {
  grid-area: checks;
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding: 26px 0 62px;
  border-top: 1px solid #383c36;
}

.about .check-list li {
  color: #c2bbaf;
  font-size: 11px;
}

.editorial-portfolio {
  padding: 84px 0;
  background: #f8f8f5;
}

.editorial-head {
  align-items: end;
  margin-bottom: 44px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-head h2,
.reels-grid h2,
.reviews-head h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.08;
}

.editorial-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.project-feature {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(320px, 0.76fr);
  min-height: 520px;
  background: #171a17;
  color: #f5f1e9;
}

.project-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.project-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.project-feature span,
.project-note span {
  color: #a8c98a;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-feature h3 {
  margin: 13px 0 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
}

.project-feature p {
  margin: 18px 0 0;
  color: #beb8ad;
  font-size: 12px;
  line-height: 1.7;
}

.project-pair {
  grid-column: 1 / 9;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: end;
  padding-top: 42px;
}

.project-pair figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.project-pair figure:first-child {
  height: 500px;
}

.project-pair figure:last-child {
  height: 380px;
}

.project-pair img,
.project-grid-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-pair figure:hover img,
.project-grid-mini img:hover {
  transform: scale(1.025);
}

.project-pair figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 9px 12px;
  background: #f8f8f5;
  color: #171a17;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-note {
  grid-column: 9 / 13;
  align-self: end;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: #dfe6d8;
}

.project-note span {
  color: #4f7134;
}

.project-note p {
  margin: 12px 0 0;
  color: #30352e;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.28;
}

.project-grid-mini {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1.25fr 0.68fr 1fr;
  gap: 18px;
  margin-top: 42px;
}

.project-grid-mini img {
  height: 280px;
}

.process {
  padding: 64px 0;
  background: var(--page);
}

.steps {
  gap: 0;
}

.steps::before {
  left: 23px;
  right: 23px;
}

.step {
  min-height: 146px;
  padding: 64px 28px 0 0;
}

.step + .step {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.step + .step .step-number {
  left: 28px;
}

.step-number {
  border-radius: 0;
  background: var(--page);
}

.reels-section {
  padding: 82px 0;
  overflow: hidden;
  background: #111411;
  color: #f4f1ea;
  border: 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(580px, 1.28fr);
  gap: 76px;
  align-items: center;
}

.reels-grid > div:first-child {
  position: relative;
  z-index: 2;
}

.reels-grid h2 {
  color: #f5f1e9;
}

.reels-grid > div:first-child > p:not(.section-eyebrow) {
  max-width: 470px;
  margin: 20px 0 0;
  color: #bdb7ac;
  font-size: 13px;
  line-height: 1.75;
}

.reels-grid .btn {
  margin-top: 28px;
  color: #f5f1e9;
  border-color: #5c6558;
}

.reels-grid .btn:hover {
  color: #111411;
  background: #b1d092;
  border-color: #b1d092;
}

.reel-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  transform: rotate(-1deg);
}

.reel-wall a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #060706;
  border: 1px solid #373b35;
}

.reel-wall a:nth-child(2) {
  transform: translateY(24px);
}

.reel-wall img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 220ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reel-wall a:hover img {
  opacity: 1;
  transform: scale(1.025);
}

.reel-wall span {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  padding: 9px 10px;
  background: rgba(7, 8, 7, 0.82);
  color: #f4f1ea;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.testimonials {
  padding: 82px 0;
  background: #f6f4ef;
  border: 0;
}

.reviews-head.calm {
  align-items: end;
  margin-bottom: 46px;
}

.reviews-head.calm h2 {
  max-width: 720px;
}

.reviews-score {
  min-width: 230px;
  padding: 0 0 4px 24px;
  background: transparent;
  border: 0;
  border-left: 1px solid #9ebc80;
  box-shadow: none;
  text-align: left;
}

.reviews-score strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.review-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 70px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-lead {
  position: relative;
  padding-left: 64px;
}

.review-lead::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -18px;
  color: #91b66f;
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 1;
}

.review-lead p {
  max-width: 690px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.28;
}

.review-lead footer,
.review-side footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-side {
  display: grid;
  gap: 28px;
  align-content: center;
}

.review-side article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-side p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.review-side footer {
  margin-top: 11px;
}

.review-archive {
  margin-top: 24px;
  border-bottom: 1px solid var(--line);
}

.review-archive summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 38px 0 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.review-archive summary::-webkit-details-marker {
  display: none;
}

.review-archive summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.review-archive[open] summary::after {
  content: "−";
}

.review-archive > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  padding: 0 0 28px;
}

.review-archive p {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.review-archive strong {
  color: var(--ink);
}

.reviews-luxury .reviews-link {
  display: inline-flex;
  min-height: auto;
  margin-top: 24px;
  padding: 0 0 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-strong);
  font-size: 10px;
}

.reviews-luxury .reviews-link:hover {
  background: transparent;
  color: var(--ink);
}

/* The dark version behaves like a private showroom, not a recolored page. */
[data-theme="dark"] .studio-hero {
  background:
    linear-gradient(90deg, #080a08 0 47%, #111511 47% 100%);
  border-bottom: 0;
}

[data-theme="dark"] .studio-hero::before {
  color: rgba(255, 255, 255, 0.022);
}

[data-theme="dark"] .studio-copy h1 {
  color: #f4f0e8;
}

[data-theme="dark"] .studio-copy h1 .accent-line {
  color: #bad99d;
}

[data-theme="dark"] .studio-board::before {
  border-color: rgba(186, 217, 157, 0.2);
}

[data-theme="dark"] .studio-tall,
[data-theme="dark"] .studio-wide {
  border-color: #080a08;
}

[data-theme="dark"] .signature-strip {
  background: #dfe6d8;
  color: #171a17;
  border-color: #c3ccb9;
}

[data-theme="dark"] .signature-grid span {
  color: #30352e;
  border-color: #c3ccb9;
}

[data-theme="dark"] .signature-grid span::before {
  background: #4f7134;
}

[data-theme="dark"] .services {
  background: #101210;
}

[data-theme="dark"] .services .service-card:hover {
  background: #181b18;
}

[data-theme="dark"] .about {
  background: #070907;
}

[data-theme="dark"] .editorial-portfolio {
  background: #151815;
}

[data-theme="dark"] .project-feature {
  background: #080a08;
}

[data-theme="dark"] .project-pair figcaption {
  background: #151815;
  color: #f4f0e8;
}

[data-theme="dark"] .project-note {
  background: #253022;
}

[data-theme="dark"] .project-note p {
  color: #e0e8d8;
}

[data-theme="dark"] .process {
  background: #0e110e;
}

[data-theme="dark"] .step-number {
  background: #0e110e;
}

[data-theme="dark"] .reels-section {
  background: #060806;
}

[data-theme="dark"] .testimonials {
  background: #101210;
}

[data-theme="dark"] .reviews-score {
  background: transparent;
  border-color: #627b51;
}

[data-theme="dark"] .contact {
  background: #151815;
}

@media (max-width: 1120px) {
  .studio-hero-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.2fr);
    gap: 36px;
  }

  .studio-copy h1 {
    font-size: 52px;
  }

  .studio-board {
    min-height: 540px;
  }

  .about-grid {
    grid-template-columns: minmax(380px, 1fr) minmax(300px, 0.86fr);
    gap: 0 38px;
  }

  .about-media {
    margin-left: -24px;
  }

  .reels-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.2fr);
    gap: 44px;
  }

  .reel-wall img {
    height: 370px;
  }
}

@media (max-width: 900px) {
  .studio-hero {
    padding: 44px 0 58px;
    background: var(--page);
  }

  [data-theme="dark"] .studio-hero {
    background: #080a08;
  }

  .studio-hero-grid {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    max-width: 680px;
  }

  .studio-copy h1 {
    font-size: 54px;
  }

  .studio-board {
    min-height: 600px;
  }

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

  .signature-grid span:nth-child(2) {
    border-right: 1px solid #2d302c;
  }

  .signature-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid #2d302c;
  }

  [data-theme="dark"] .signature-grid span {
    border-color: #c3ccb9;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "checks";
    gap: 0;
  }

  .about-media {
    height: 440px;
    margin: 0 -24px;
  }

  .about-copy {
    padding-top: 46px;
  }

  .editorial-head {
    display: grid;
    align-items: start;
  }

  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature img {
    min-height: 430px;
  }

  .project-feature > div {
    padding: 34px;
  }

  .project-pair {
    grid-column: 1 / 13;
  }

  .project-note {
    grid-column: 1 / 13;
    min-height: 180px;
  }

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

  .reel-wall {
    max-width: 700px;
  }

  .review-composition {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .studio-hero {
    padding: 34px 0 42px;
  }

  .studio-hero::before {
    display: none;
  }

  .studio-copy h1 {
    font-size: 40px;
  }

  .studio-copy > p:not(.hero-kicker) {
    font-size: 13px;
  }

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

  .studio-proof span {
    padding: 12px 7px 12px 0;
    font-size: 8px;
  }

  .studio-proof span + span {
    padding-left: 8px;
  }

  .studio-proof strong {
    font-size: 21px;
  }

  .studio-board {
    min-height: 440px;
  }

  .studio-main {
    grid-column: 1 / 11;
    grid-row: 1 / 9;
  }

  .studio-tall {
    grid-column: 9 / 13;
    grid-row: 2 / 7;
    border-width: 5px;
  }

  .studio-wide {
    grid-column: 2 / 10;
    grid-row: 8 / 12;
    border-width: 5px;
  }

  .studio-mark {
    grid-column: 9 / 13;
    grid-row: 8 / 12;
    padding: 14px 10px;
  }

  .studio-mark strong {
    font-size: 15px;
  }

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

  .signature-grid span {
    min-height: 48px;
    border-right: 1px solid #2d302c;
    border-bottom: 1px solid #2d302c;
  }

  .services {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .services .service-grid {
    grid-template-columns: 1fr;
  }

  .services .service-card {
    min-height: 168px;
    padding: 26px 28px 24px;
  }

  .about-media {
    height: 310px;
  }

  .about-copy h3,
  .editorial-head h2,
  .reels-grid h2,
  .reviews-head h2 {
    font-size: 31px;
  }

  .about .check-list {
    grid-template-columns: 1fr;
  }

  .editorial-portfolio,
  .reels-section,
  .testimonials {
    padding: 58px 0;
  }

  .editorial-showcase {
    gap: 12px;
  }

  .project-feature {
    min-height: 0;
  }

  .project-feature img {
    min-height: 0;
    height: 300px;
  }

  .project-feature > div {
    padding: 28px 24px;
  }

  .project-feature h3 {
    font-size: 26px;
  }

  .project-pair {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 12px;
    padding-top: 22px;
  }

  .project-pair figure:first-child {
    height: 330px;
  }

  .project-pair figure:last-child {
    height: 250px;
  }

  .project-note {
    padding: 26px 24px;
  }

  .project-grid-mini {
    grid-template-columns: 1fr 0.72fr;
    gap: 12px;
    margin-top: 22px;
  }

  .project-grid-mini img {
    height: 230px;
  }

  .project-grid-mini img:last-child {
    grid-column: 1 / 3;
    height: 200px;
  }

  .steps {
    display: grid;
  }

  .step {
    padding: 58px 0 24px;
  }

  .step + .step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .step + .step .step-number {
    left: 0;
    top: 12px;
  }

  .steps::before {
    display: none;
  }

  .reels-grid {
    gap: 36px;
  }

  .reel-wall {
    gap: 8px;
    transform: none;
  }

  .reel-wall a:nth-child(2) {
    transform: translateY(14px);
  }

  .reel-wall img {
    height: 300px;
  }

  .reel-wall span {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 7px 6px;
    font-size: 7px;
  }

  .reviews-head.calm {
    gap: 26px;
    margin-bottom: 32px;
  }

  .reviews-score {
    padding-left: 16px;
  }

  .review-composition {
    padding: 34px 0;
  }

  .review-lead {
    padding-left: 40px;
  }

  .review-lead::before {
    font-size: 58px;
  }

  .review-lead p {
    font-size: 24px;
  }

  .review-archive > div {
    grid-template-columns: 1fr;
  }
}


/* Brand-safe header: the supplied logo contains white lettering. */
.site-header,
[data-theme="dark"] .site-header {
  background: rgba(16, 18, 16, 0.96);
  border-bottom-color: #30342e;
}

.main-nav,
[data-theme="dark"] .main-nav {
  color: #f1ede5;
}

.theme-toggle,
.menu-toggle,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .menu-toggle {
  background: #1b1e1a;
  border-color: #3a3f37;
  color: #f1ede5;
}

.theme-choice,
[data-theme="dark"] .theme-choice {
  color: #f1ede5;
}

.nav-theme > span,
[data-theme="dark"] .nav-theme > span {
  color: #bdb7ac;
}

@media (max-width: 900px) {
  .main-nav,
  [data-theme="dark"] .main-nav {
    background: rgba(16, 18, 16, 0.99);
    border-color: #30342e;
  }

  .main-nav .nav-theme {
    border-color: #30342e;
  }
}


/* Warm concept imagery supporting the real portfolio. */
.studio-tall figcaption,
.studio-wide figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 6px 7px;
  background: rgba(13, 15, 13, 0.82);
  color: #f5f3ed;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.material-vision {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  align-items: end;
  color: #f6f2ea;
  background: #151815;
}

.material-vision > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.material-vision:hover > img {
  transform: scale(1.018);
}

.material-vision-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.88) 0%, rgba(12, 14, 12, 0.62) 42%, rgba(12, 14, 12, 0.12) 75%, rgba(12, 14, 12, 0.04) 100%);
}

.material-vision-copy {
  position: relative;
  z-index: 1;
  padding-top: 68px;
  padding-bottom: 62px;
}

.material-vision-copy .section-eyebrow {
  color: #b8d89c;
}

.material-vision-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 500;
  line-height: 1.08;
}

.material-vision-copy > span {
  display: block;
  max-width: 540px;
  margin-top: 18px;
  color: #d1cbc0;
  font-size: 12px;
  line-height: 1.7;
}

[data-theme="dark"] .material-vision-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 4, 0.92) 0%, rgba(4, 6, 4, 0.68) 44%, rgba(4, 6, 4, 0.18) 78%, rgba(4, 6, 4, 0.08) 100%);
}

@media (max-width: 900px) {
  .material-vision {
    min-height: 390px;
  }

  .material-vision > img {
    object-position: 62% center;
  }
}

@media (max-width: 680px) {
  .studio-tall figcaption,
  .studio-wide figcaption {
    left: 5px;
    bottom: 5px;
    padding: 5px;
    font-size: 6px;
  }

  .material-vision {
    min-height: 370px;
  }

  .material-vision > img {
    object-position: 66% center;
  }

  .material-vision-overlay {
    background:
      linear-gradient(90deg, rgba(12, 14, 12, 0.9) 0%, rgba(12, 14, 12, 0.66) 58%, rgba(12, 14, 12, 0.24) 100%);
  }

  .material-vision-copy {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .material-vision-copy h2 {
    max-width: 330px;
    font-size: 31px;
  }

  .material-vision-copy > span {
    max-width: 310px;
    font-size: 11px;
  }
}


/* Bedroom concept series */
.bedroom-concepts {
  padding: 82px 0 90px;
  overflow: hidden;
  background: #e9e8e3;
  color: #171916;
}

.bedroom-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.62fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

.bedroom-head h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.bedroom-head > p {
  margin: 0 0 3px;
  color: #5d6159;
  font-size: 12px;
  line-height: 1.72;
}

.bedroom-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: 14px;
  min-height: 660px;
}

.bedroom-scene {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #171916;
}

.bedroom-scene-main {
  grid-column: 1 / 8;
  grid-row: 1 / 11;
}

.bedroom-scene-storage {
  grid-column: 8 / 13;
  grid-row: 1 / 6;
}

.bedroom-scene-detail {
  grid-column: 7 / 13;
  grid-row: 6 / 11;
  border-left: 14px solid #e9e8e3;
}

.bedroom-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bedroom-scene-main img {
  object-position: center;
}

.bedroom-scene:hover img {
  transform: scale(1.025);
}

.bedroom-scene figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  background: rgba(11, 13, 11, 0.82);
  color: #f5f1e9;
  backdrop-filter: blur(10px);
}

.bedroom-scene figcaption span,
.bedroom-scene figcaption strong {
  display: block;
}

.bedroom-scene figcaption span {
  color: #b6d497;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.bedroom-scene figcaption strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

[data-theme="dark"] .bedroom-concepts {
  background: #0d0f0d;
  color: #f3efe7;
}

[data-theme="dark"] .bedroom-head > p {
  color: #bdb7ac;
}

[data-theme="dark"] .bedroom-scene-detail {
  border-left-color: #0d0f0d;
}

@media (max-width: 900px) {
  .bedroom-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bedroom-head > p {
    max-width: 620px;
  }

  .bedroom-gallery {
    min-height: 590px;
  }
}

@media (max-width: 680px) {
  .bedroom-concepts {
    padding: 58px 0 64px;
  }

  .bedroom-head {
    margin-bottom: 30px;
  }

  .bedroom-head h2 {
    font-size: 31px;
  }

  .bedroom-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 10px;
    min-height: 0;
  }

  .bedroom-scene-main {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 410px;
  }

  .bedroom-scene-storage,
  .bedroom-scene-detail {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
  }

  .bedroom-scene-detail {
    border-left: 0;
  }

  .bedroom-scene figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 9px 10px;
  }

  .bedroom-scene figcaption strong {
    font-size: 14px;
  }
}


/* Black premium showroom */
[data-theme="dark"] {
  --bg: #050605;
  --page: #090a09;
  --section: #10110f;
  --soft: #171713;
  --tile: #131411;
  --ink: #f1ece3;
  --muted: #c2b8aa;
  --subtle: #968876;
  --line: #302b24;
  --accent: #91b66f;
  --accent-strong: #d5ad79;
  --hero-accent: #ddb783;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
  --header-bg: rgba(8, 9, 8, 0.96);
}

[data-theme="dark"] .theme-img {
  filter: saturate(1.06) contrast(1.035);
}

[data-theme="dark"] .studio-hero {
  background:
    linear-gradient(90deg, #050605 0 47%, #15120e 47% 100%);
}

[data-theme="dark"] .studio-copy .hero-kicker,
[data-theme="dark"] .section-eyebrow {
  color: #d9b17e;
}

[data-theme="dark"] .studio-copy h1 .accent-line {
  color: #e0ba86;
}

[data-theme="dark"] .studio-proof {
  border-color: #3b3329;
}

[data-theme="dark"] .studio-proof span + span {
  border-color: #3b3329;
}

[data-theme="dark"] .studio-board figure {
  background: #17130f;
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.58),
    0 0 38px rgba(190, 132, 72, 0.08);
}

[data-theme="dark"] .studio-board::before {
  border-color: rgba(221, 183, 131, 0.28);
}

[data-theme="dark"] .studio-mark {
  background: #100d0a;
  border: 1px solid #3c3025;
}

[data-theme="dark"] .studio-mark span {
  color: #d9b17e;
}

[data-theme="dark"] .signature-strip {
  background: #110f0c;
  color: #eee6da;
  border-color: #332b23;
}

[data-theme="dark"] .signature-grid span {
  color: #c7b9a8;
  border-color: #332b23;
}

[data-theme="dark"] .signature-grid span::before {
  background: #d1a46d;
  box-shadow: 0 0 14px rgba(209, 164, 109, 0.5);
}

[data-theme="dark"] .services {
  background: #090a09;
}

[data-theme="dark"] .services .service-grid {
  border-color: #302b24;
}

[data-theme="dark"] .services .service-card {
  border-color: #302b24;
}

[data-theme="dark"] .services .service-card:hover {
  background: #17130f;
}

[data-theme="dark"] .services .service-card::before {
  color: #9f8b73;
}

[data-theme="dark"] .material-vision {
  background: #090a09;
}

[data-theme="dark"] .material-vision-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.94) 0%, rgba(10, 8, 6, 0.72) 46%, rgba(24, 17, 11, 0.2) 78%, rgba(8, 7, 5, 0.08) 100%);
}

[data-theme="dark"] .material-vision-copy h2 {
  color: #f4eee5;
}

[data-theme="dark"] .about {
  background: #0c0d0b;
}

[data-theme="dark"] .about-media {
  box-shadow: 24px 0 70px rgba(199, 138, 75, 0.08);
}

[data-theme="dark"] .about-copy .section-line h2 {
  color: #d9b17e;
}

[data-theme="dark"] .about-copy .section-line span {
  background: #d9b17e;
}

[data-theme="dark"] .about .check-list {
  border-color: #352f27;
}

[data-theme="dark"] .bedroom-concepts {
  background: #080908;
}

[data-theme="dark"] .bedroom-scene {
  background: #120f0c;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
}

[data-theme="dark"] .bedroom-scene-detail {
  border-left-color: #080908;
}

[data-theme="dark"] .bedroom-scene figcaption {
  background: rgba(8, 7, 5, 0.86);
  border: 1px solid rgba(216, 174, 121, 0.18);
}

[data-theme="dark"] .bedroom-scene figcaption span {
  color: #d9b17e;
}

[data-theme="dark"] .editorial-portfolio {
  background: #10110f;
}

[data-theme="dark"] .editorial-head .text-link {
  color: #d9b17e;
}

[data-theme="dark"] .project-feature {
  background: #080907;
  border: 1px solid #302920;
}

[data-theme="dark"] .project-feature span,
[data-theme="dark"] .project-note span {
  color: #d9b17e;
}

[data-theme="dark"] .project-pair figure,
[data-theme="dark"] .project-grid-mini img {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .project-pair figcaption {
  background: #100d0a;
  color: #eee6da;
}

[data-theme="dark"] .project-note {
  background: #241c14;
  border: 1px solid #493522;
}

[data-theme="dark"] .project-note p {
  color: #eee3d4;
}

[data-theme="dark"] .process {
  background: #080908;
}

[data-theme="dark"] .step + .step {
  border-color: #302b24;
}

[data-theme="dark"] .step-number {
  background: #0d0e0c;
  border-color: #b98a55;
  color: #d9b17e;
}

[data-theme="dark"] .reels-section {
  background:
    linear-gradient(90deg, #050605 0 45%, #100d0a 45% 100%);
}

[data-theme="dark"] .reel-wall a {
  border-color: #433426;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .reel-wall span {
  background: rgba(8, 7, 5, 0.86);
  color: #f2eadf;
  border: 1px solid rgba(217, 177, 126, 0.18);
}

[data-theme="dark"] .testimonials {
  background: #0d0e0c;
}

[data-theme="dark"] .reviews-score {
  border-color: #b98a55;
}

[data-theme="dark"] .reviews-score strong,
[data-theme="dark"] .review-lead::before {
  color: #d9b17e;
}

[data-theme="dark"] .review-composition,
[data-theme="dark"] .review-side article,
[data-theme="dark"] .review-archive,
[data-theme="dark"] .review-archive p {
  border-color: #302b24;
}

[data-theme="dark"] .contact {
  background: #11120f;
}

[data-theme="dark"] .contact-form {
  background: #0b0c0a;
  border-color: #342d24;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: #11120f;
  border-color: #3a3127;
}

[data-theme="dark"] .site-footer {
  background: #050605;
  border-top: 1px solid #2d271f;
}

@media (max-width: 680px) {
  [data-theme="dark"] .studio-hero {
    background: #050605;
  }

  [data-theme="dark"] .reels-section {
    background: #070806;
  }

  [data-theme="dark"] .bedroom-scene-detail {
    border-left: 0;
  }
}


/* Warm ambient control */
.ambient-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  overflow: visible;
  border: 1px solid #3a3f37;
  background: #1b1e1a;
  color: #f1ede5;
}

.ambient-toggle::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  pointer-events: none;
}

.ambient-toggle:hover,
.ambient-toggle:focus-visible {
  border-color: #91b66f;
  color: #b9d99d;
}

.ambient-toggle.is-active {
  border-color: #c79a64;
  color: #e1bc89;
  background: #211911;
}

.ambient-toggle.is-active::after {
  border-color: rgba(225, 188, 137, 0.42);
  box-shadow: 0 0 18px rgba(198, 141, 77, 0.26);
  animation: ambientGlow 2.8s ease-in-out infinite;
}

.ambient-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambient-icon-on {
  display: none;
}

.ambient-toggle.is-active .ambient-icon-off {
  display: none;
}

.ambient-toggle.is-active .ambient-icon-on {
  display: block;
}

@keyframes ambientGlow {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .ambient-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-toggle.is-active::after {
    animation: none;
  }
}
