:root {
  --cream: #f4f1ec;
  --warm-white: #fffdf8;
  --white: #ffffff;
  --linen: #eee5d8;
  --stone: #d5d1c9;
  --red: #e21b2d;
  --red-deep: #a90918;
  --red-soft: #fff0f2;
  --wine: #65141a;
  --wine-soft: #8a2a2f;
  --brass: #b9975b;
  --brass-dark: #806436;
  --gold-soft: #f3ddac;
  --charcoal: #1f1d1c;
  --charcoal-soft: #3b3431;
  --sage: #607160;
  --text: #211f1d;
  --muted: #6e6762;
  --line: rgba(31, 29, 28, 0.14);
  --shadow: 0 24px 70px rgba(31, 29, 28, 0.14);
  --soft-shadow: 0 14px 34px rgba(31, 29, 28, 0.1);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(226, 27, 45, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 29, 28, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 28px), 1220px);
  margin: 14px auto 0;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(31, 29, 28, 0.1);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 46px rgba(31, 29, 28, 0.16);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(226, 27, 45, 0.18);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 4px rgba(226, 27, 45, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  max-width: 320px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--charcoal-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(226, 27, 45, 0.1);
  color: var(--red-deep);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  border-radius: 3px;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 92px);
  padding-top: 66px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.about-section::before,
.contact-section::before,
.transformation-section::before {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  content: "";
}

.hero::after {
  right: -90px;
  bottom: 90px;
  width: min(38vw, 460px);
  height: 220px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(100deg, rgba(101, 20, 26, 0.11) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, rgba(243, 221, 172, 0.34), rgba(255, 253, 248, 0));
  filter: blur(0.2px);
  transform: rotate(-10deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Hero curtain reveal */
.hero-curtain {
  position: absolute;
  display: none;
  top: 0;
  bottom: 64px;
  z-index: 8;
  width: 51%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 14%, rgba(0, 0, 0, 0.12) 24%, transparent 33%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 8px, rgba(68, 12, 18, 0.32) 8px 18px, rgba(255, 255, 255, 0.04) 18px 28px),
    linear-gradient(135deg, var(--wine), var(--wine-soft) 52%, #3b1013);
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.08), inset 0 -40px 80px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  transition: transform 1400ms cubic-bezier(0.76, 0, 0.24, 1);
}

.motion-ready .hero-curtain {
  display: block;
}

.hero-curtain-left {
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transform-origin: left center;
}

.hero-curtain-right {
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  transform-origin: right center;
}

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

.motion-ready .hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease 520ms, transform 900ms ease 520ms;
}

.curtains-open .hero-curtain-left {
  transform: translateX(-104%) skewX(-2deg);
}

.curtains-open .hero-curtain-right {
  transform: translateX(104%) skewX(2deg);
}

.curtains-open .hero-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(43px, 7vw, 76px);
  overflow-wrap: break-word;
}

.hero-copy p {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--charcoal-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.fabric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fabric-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(226, 27, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(31, 29, 28, 0.06);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(226, 27, 45, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-deep);
}

.button-secondary {
  background: var(--charcoal);
  color: var(--warm-white);
  box-shadow: 0 14px 30px rgba(31, 29, 28, 0.2);
}

.button-whatsapp {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(88, 105, 74, 0.24);
}

.button-instagram {
  background: #c13584;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(193, 53, 132, 0.2);
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 174px;
  gap: 16px;
  align-items: stretch;
  z-index: 1;
}

.hero-media::before {
  position: absolute;
  inset: 22px -18px -18px 38px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(226, 27, 45, 0.12), transparent 44%),
    repeating-linear-gradient(90deg, rgba(31, 29, 28, 0.06) 0 1px, transparent 1px 14px);
  content: "";
}

.hero-media img,
.about-card,
.service-card,
.gallery-card,
.process-grid article,
.contact-panel,
.estimate-form {
  border: 1px solid rgba(78, 51, 33, 0.12);
  box-shadow: var(--shadow);
}

.hero-image-main,
.hero-image-stack img,
.about-card img,
.service-card img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
  background: var(--linen);
}

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

/* Reveal on scroll */
.reveal-on-scroll {
  --reveal-y: 26px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y, 0px)), 0);
  transition: opacity 720ms ease, transform 720ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.hero-image-main {
  min-height: 520px;
  border-radius: var(--radius-lg);
  border-top: 8px solid var(--red);
}

.hero-image-stack {
  display: grid;
  gap: 16px;
}

.hero-image-stack img {
  min-height: 252px;
  border-radius: var(--radius-md);
}

.trust-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.trust-bar div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 240, 242, 0.85), rgba(255, 255, 255, 0.78));
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.25;
}

.trust-bar span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.transformation-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 34px;
  align-items: center;
  padding-top: 74px;
}

.transformation-section::before {
  right: -110px;
  bottom: 42px;
  width: 420px;
  height: 170px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(98deg, rgba(101, 20, 26, 0.1) 0 7px, transparent 7px 18px),
    linear-gradient(135deg, rgba(243, 221, 172, 0.34), rgba(255, 253, 248, 0));
  transform: rotate(-8deg);
}

.transformation-copy {
  position: relative;
  z-index: 1;
}

.transformation-copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.transformation-copy p {
  max-width: 460px;
  margin: 18px 0 26px;
  color: var(--charcoal-soft);
  font-size: 18px;
}

/* Drapes transformation block */
.transformation-stage {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 430px;
  padding: 0;
  border: 1px solid rgba(101, 20, 26, 0.16);
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.transformation-stage img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.drape-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 15%, rgba(0, 0, 0, 0.18) 28%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 10px, rgba(82, 16, 22, 0.33) 10px 22px, rgba(255, 255, 255, 0.04) 22px 34px),
    linear-gradient(135deg, var(--wine), #7b2028 54%, #411015);
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.08), inset 0 -55px 90px rgba(0, 0, 0, 0.24);
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
}

.drape-panel-left {
  left: 0;
}

.drape-panel-right {
  right: 0;
}

.transformation-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(31, 29, 28, 0.76);
  color: var(--warm-white);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.transformation-stage:hover img,
.transformation-stage:focus-visible img,
.transformation-stage.is-open img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.06);
}

.transformation-stage:hover .drape-panel-left,
.transformation-stage:focus-visible .drape-panel-left,
.transformation-stage.is-open .drape-panel-left {
  transform: translateX(-88%) skewX(-3deg);
}

.transformation-stage:hover .drape-panel-right,
.transformation-stage:focus-visible .drape-panel-right,
.transformation-stage.is-open .drape-panel-right {
  transform: translateX(88%) skewX(3deg);
}

.transformation-stage:hover .transformation-hint,
.transformation-stage:focus-visible .transformation-hint,
.transformation-stage.is-open .transformation-hint {
  opacity: 0;
  transform: translateY(8px);
}

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

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-number {
  display: block;
  margin-bottom: 12px;
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 800;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.about-section {
  position: relative;
  padding-top: 64px;
}

.about-section::before {
  top: 48px;
  left: -120px;
  width: 360px;
  height: 150px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(95deg, rgba(128, 100, 54, 0.12) 0 8px, transparent 8px 20px),
    rgba(255, 253, 248, 0.38);
  transform: rotate(12deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.about-copy {
  padding: 36px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.about-copy p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 18px;
}

.about-copy p + p {
  margin-top: 18px;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-list span {
  padding: 9px 12px;
  border: 1px solid rgba(226, 27, 45, 0.2);
  border-radius: 999px;
  background: rgba(226, 27, 45, 0.08);
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 800;
}

.about-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.about-card img {
  height: 310px;
}

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

.about-card strong,
.about-card span {
  display: block;
}

.about-card strong {
  color: var(--charcoal);
  font-size: 19px;
}

.about-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.services-section,
.process-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(16px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 27, 45, 0.08), transparent 28%),
    linear-gradient(180deg, var(--warm-white), #f7f4ef);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(226, 27, 45, 0.24);
  box-shadow: 0 28px 68px rgba(101, 20, 26, 0.16);
  transform: translateY(-6px);
}

.service-card img {
  aspect-ratio: 1.55 / 1;
  transition: transform 520ms ease, filter 520ms ease;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.service-card h3,
.service-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.service-card h3 {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.25;
}

.service-card p {
  margin-top: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

.service-card a {
  align-self: flex-start;
  margin: auto 22px 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(226, 27, 45, 0.08);
  color: var(--red-deep);
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover a,
.service-card:focus-within a {
  background: rgba(101, 20, 26, 0.1);
  color: var(--wine);
  transform: translateX(5px);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--linen);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.gallery-wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 536px;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  margin-top: 28px;
}

.gallery-card:nth-child(3),
.gallery-card:nth-child(6) {
  margin-top: -12px;
}

.gallery-card img {
  height: 100%;
  min-height: 260px;
  transition: transform 620ms ease, filter 620ms ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  border-color: rgba(185, 151, 91, 0.38);
  box-shadow: 0 28px 70px rgba(31, 29, 28, 0.18);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(44, 27, 18, 0.82);
  color: var(--warm-white);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  opacity: 0.92;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.gallery-card:hover figcaption,
.gallery-card:focus-within figcaption {
  background: rgba(31, 29, 28, 0.88);
  opacity: 1;
  transform: translateY(0);
}

.instagram-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}

.instagram-strip span {
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 800;
}

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

.process-grid article {
  position: relative;
  min-height: 245px;
  padding: 26px;
  background: linear-gradient(160deg, #ffffff, #f7eee1);
  border-radius: var(--radius-md);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--warm-white);
  font-weight: 800;
}

.process-grid h3 {
  margin: 24px 0 10px;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.25;
}

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

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  gap: 32px;
  align-items: start;
}

.contact-section::before {
  left: -160px;
  bottom: 90px;
  width: 430px;
  height: 170px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(96deg, rgba(185, 151, 91, 0.13) 0 9px, transparent 9px 22px),
    rgba(255, 253, 248, 0.42);
  transform: rotate(13deg);
}

.quote-notes {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.quote-notes div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 24px rgba(31, 29, 28, 0.06);
}

.quote-notes span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 900;
}

.quote-notes strong {
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.25;
}

.quote-notes p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-panel,
.estimate-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
}

.contact-panel {
  padding: 28px;
}

.contact-panel h3 {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.2;
}

.contact-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-panel div {
  min-width: 0;
}

.contact-panel dt {
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: var(--charcoal-soft);
  font-size: 16px;
}

.contact-panel dd a {
  font-weight: 800;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.estimate-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--brass), var(--charcoal));
  content: "";
}

.form-intro {
  grid-column: 1 / -1;
  padding-bottom: 4px;
}

/* Quote builder grouping */
.quote-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(101, 20, 26, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 240, 242, 0.72), rgba(255, 255, 255, 0.78));
}

.quote-steps span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  color: var(--charcoal-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.quote-steps span:first-child {
  background: var(--wine);
  color: var(--warm-white);
}

.quote-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(31, 29, 28, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.quote-group > legend {
  padding: 0 8px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.form-intro span,
.quote-preview span {
  display: block;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-intro h3 {
  margin: 6px 0 0;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1.15;
}

.form-intro p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.style-picker,
.form-row-wide,
.quote-preview,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-row-compact {
  grid-column: auto;
}

.form-row label {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(78, 51, 33, 0.18);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.style-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.style-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.style-picker label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 29, 28, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal-soft);
  font-size: 14px;
  font-weight: 800;
}

.style-picker input {
  accent-color: var(--red);
}

.quote-preview {
  padding: 16px;
  border: 1px solid rgba(226, 27, 45, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 240, 242, 0.92), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.quote-preview p {
  margin: 6px 0 0;
  color: var(--charcoal-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(226, 27, 45, 0.12);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--charcoal);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero,
  .about-grid,
  .transformation-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .hero-image-main {
    min-height: 430px;
  }

  .hero-image-stack img {
    min-height: 207px;
  }

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

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

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

  .transformation-stage,
  .transformation-stage img {
    min-height: 360px;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    width: min(calc(100% - 20px), 1220px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 190px;
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .section {
    width: min(calc(100% - 24px), var(--max-width));
    max-width: calc(100vw - 24px);
    padding: 66px 0;
  }

  .hero {
    gap: 30px;
    padding-top: 44px;
  }

  .hero-curtain {
    bottom: 42px;
    animation-duration: 900ms;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    width: 100%;
    max-width: 320px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.08;
  }

  .hero-copy p {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .instagram-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .instagram-strip {
    align-items: stretch;
  }

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

  .hero-media::before {
    inset: 18px 0 -14px 18px;
  }

  .hero-image-main,
  .hero-image-stack img {
    min-height: auto;
  }

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

  .transformation-section {
    gap: 24px;
  }

  .transformation-copy p {
    font-size: 16px;
  }

  .transformation-stage,
  .transformation-stage img {
    min-height: 285px;
  }

  .drape-panel {
    width: 54%;
  }

  .style-picker {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .trust-bar div {
    padding: 13px;
  }

  .trust-bar strong {
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .section-heading p,
  .about-copy p {
    font-size: 16px;
  }

  .about-copy,
  .contact-panel,
  .estimate-form {
    padding: 22px;
  }

  .services-section,
  .process-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .services-grid,
  .gallery-grid,
  .process-grid,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .style-picker {
    grid-template-columns: 1fr 1fr;
  }

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

  .quote-group {
    padding: 15px;
  }

  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6) {
    margin-top: 0;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 230px;
  }

  .process-grid article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
    width: min(calc(100% - 24px), var(--max-width));
  }
}

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

  .hero-curtain,
  .drape-panel {
    display: none;
  }

  .hero-reveal,
  .reveal-on-scroll,
  [data-parallax],
  .service-card:hover,
  .gallery-card:hover,
  .transformation-stage:hover img,
  .transformation-stage.is-open img {
    opacity: 1 !important;
    transform: none !important;
  }

  .transformation-hint {
    display: none;
  }
}
