/* Pincel Vegano — identidade visual provisória baseada nas referências da marca */
:root {
  --sage-800: #435540;
  --sage-700: #53664f;
  --sage-600: #687e62;
  --sage-500: #7f9874;
  --sage-300: #b9c9b2;
  --sage-100: #e5ece1;
  --ivory: #faf6ee;
  --paper: #fffdf8;
  --rose: #c98078;
  --terracotta: #b96652;
  --gold: #b18a58;
  --ink: #30372f;
  --muted: #687067;
  --line: rgba(48, 55, 47, 0.14);
  --white-line: rgba(255, 253, 248, 0.22);
  --shadow-sm: 0 14px 35px rgba(58, 68, 54, 0.08);
  --shadow-lg: 0 32px 80px rgba(48, 55, 47, 0.15);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 48px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-height: 88px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

::selection {
  color: var(--paper);
  background: var(--sage-700);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius-pill);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--sage-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--sage-300);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--sage-700);
  box-shadow: 0 12px 30px rgba(83, 102, 79, 0.2);
}

.button-primary:hover {
  background: var(--sage-800);
  box-shadow: 0 16px 36px rgba(67, 85, 64, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.87rem;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--sage-700);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 102, 82, 0.4);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgba(48, 55, 47, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 30px rgba(48, 55, 47, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.brand-name {
  color: var(--sage-700);
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-tagline {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.main-nav a:not(.nav-cta):hover {
  color: var(--ink);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  padding: 11px 18px;
  color: var(--paper);
  background: var(--sage-700);
  border-radius: var(--radius-pill);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 160px 0 64px;
  background:
    linear-gradient(105deg, rgba(250, 246, 238, 0.92), rgba(255, 253, 248, 0.65)),
    radial-gradient(circle at 18% 70%, rgba(127, 152, 116, 0.13), transparent 34%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.9fr);
  gap: clamp(50px, 8vw, 120px);
}

.hero-copy {
  padding-bottom: 36px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 7.4vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.hero h1 em,
.section-heading h2 em,
.manifesto h2 em,
.about h2 em,
.process h2 em,
.budget h2 em {
  color: var(--terracotta);
  font-weight: 500;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 54px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-meta span + span {
  position: relative;
  padding-left: 24px;
}

.hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--terracotta);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 73%;
  height: 570px;
  margin: 0;
  overflow: hidden;
  border: 12px solid rgba(255, 253, 248, 0.78);
  border-radius: 46% 46% 22px 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

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

.hero-main-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px;
  color: var(--sage-800);
  background: rgba(255, 253, 248, 0.9);
  border-radius: var(--radius-pill);
  font-family: var(--font-script);
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
}

.hero-detail-image {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 0;
  width: 41%;
  height: 280px;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 46% 46% 22px 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-5deg);
}

.hero-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.hero-script {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: -42px;
  color: var(--sage-700);
  font-family: var(--font-script);
  font-size: 2rem;
  transform: rotate(-10deg);
}

.hero-wash {
  position: absolute;
  pointer-events: none;
  border-radius: 45% 55% 60% 40%;
  filter: blur(2px);
}

.hero-wash-one {
  top: 100px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: rgba(127, 152, 116, 0.12);
  transform: rotate(24deg);
}

.hero-wash-two {
  bottom: -180px;
  left: -170px;
  width: 540px;
  height: 400px;
  background: rgba(201, 128, 120, 0.1);
  transform: rotate(-15deg);
}

.hero-ribbon {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  color: var(--paper);
  background: var(--sage-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-ribbon i {
  width: 5px;
  height: 5px;
  background: var(--rose);
  border-radius: 50%;
}

/* Manifesto */
.manifesto {
  color: var(--paper);
  background: var(--sage-800);
}

.manifesto::after {
  position: absolute;
  right: 7%;
  bottom: -70px;
  width: 230px;
  height: 230px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 50%;
}

.manifesto-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 70px 1.15fr 0.75fr;
  gap: 50px;
}

.section-index {
  align-self: start;
  color: var(--sage-300);
  font-family: var(--font-display);
  font-size: 1rem;
}

.manifesto h2,
.section-heading h2,
.about h2,
.process h2,
.budget h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.manifesto h2 em {
  color: #d9b0a7;
}

.manifesto-copy {
  max-width: 440px;
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.73);
  font-size: 1rem;
}

/* Shared section heading */
.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 68px;
  grid-template-columns: 1.1fr 0.52fr;
  gap: 80px;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading-compact {
  margin-bottom: 54px;
}

/* Intentions */
.intentions {
  overflow: hidden;
  background: var(--ivory);
}

.intention-grid {
  display: grid;
  gap: 38px;
}

.intention-card {
  display: grid;
  min-height: 590px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(48, 55, 47, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 0.96fr 1.04fr;
}

.intention-card:nth-child(even) {
  grid-template-columns: 1.04fr 0.96fr;
}

.intention-card:nth-child(even) .intention-image {
  order: 2;
}

.intention-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.intention-image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intention-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(48, 55, 47, 0.25), transparent 40%);
}

.intention-collage > img:first-child {
  position: absolute;
  inset: 0;
}

.intention-collage > img:nth-child(2) {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 37%;
  height: 54%;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: 110px 110px 20px 20px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}

.image-note {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 28px;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border-radius: var(--radius-pill);
  font-family: var(--font-script);
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
}

.intention-collage .image-note {
  bottom: auto;
  top: 28px;
}

.intention-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
}

.intention-number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: var(--sage-300);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.intention-content h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.intention-content > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 28px;
  color: var(--muted);
}

.service-list {
  margin: 0 0 34px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.service-list strong {
  color: var(--sage-700);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.service-list-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-list-compact li {
  justify-content: flex-start;
}

.service-list-compact li:nth-child(odd) {
  margin-right: 20px;
}

/* Products */
.priced-products {
  background: var(--paper);
}

.product-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-card-offset {
  margin-top: 44px;
}

.product-image {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: var(--sage-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-intention {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  color: var(--sage-800);
  background: rgba(255, 253, 248, 0.9);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.product-info > div:first-child > p {
  min-height: 54px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.price {
  display: flex;
  margin: 0;
  align-items: baseline;
  flex-wrap: wrap;
  color: var(--sage-700);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.price > span {
  margin-right: 5px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
}

.price small {
  flex-basis: 100%;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.round-button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--sage-700);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

.round-button:hover {
  background: var(--terracotta);
  transform: rotate(8deg);
}

.delivery-note {
  max-width: 660px;
  margin: 54px auto 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
}

/* About */
.about {
  overflow: hidden;
  background: var(--sage-100);
}

.about-wash {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 620px;
  height: 560px;
  pointer-events: none;
  background: rgba(201, 128, 120, 0.12);
  border-radius: 54% 46% 40% 60%;
  transform: rotate(20deg);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(64px, 9vw, 130px);
}

.about-portrait {
  position: relative;
  max-width: 480px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.77;
  border: 12px solid rgba(255, 253, 248, 0.8);
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow-lg);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 80px rgba(48, 55, 47, 0.07);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-signature {
  position: absolute;
  right: -18px;
  bottom: 34px;
  margin: 0;
  padding: 9px 18px;
  color: var(--paper);
  background: var(--terracotta);
  border-radius: var(--radius-pill);
  font-family: var(--font-script);
  font-size: 1.5rem;
  transform: rotate(-4deg);
}

.portrait-caption {
  margin: 20px 0 0 32px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about h2 {
  max-width: 680px;
  margin-bottom: 28px;
}

.about-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--sage-800);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-story {
  color: var(--muted);
  column-count: 2;
  column-gap: 34px;
  font-size: 0.88rem;
}

.about-story p {
  break-inside: avoid;
  margin-bottom: 18px;
}

.about-now {
  display: grid;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(48, 55, 47, 0.18);
  grid-template-columns: 70px 1fr;
  gap: 20px;
}

.about-now span {
  color: var(--terracotta);
  font-family: var(--font-script);
  font-size: 1.5rem;
}

.about-now p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Gallery */
.gallery {
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 10px 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--paper);
  border-color: var(--sage-700);
  background: var(--sage-700);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 235px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  grid-column: span 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--sage-100);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 6;
}

.gallery-open {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.gallery-open img,
.gallery-open > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gallery-open:hover img,
.gallery-open:hover > video {
  filter: saturate(0.9);
  transform: scale(1.035);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  min-height: 92px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 20px 18px;
  background: linear-gradient(to top, rgba(34, 41, 32, 0.72), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.gallery-open:hover .gallery-overlay,
.gallery-open:focus-visible .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.gallery-overlay small {
  flex: 0 0 auto;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding-left: 3px;
  color: var(--sage-800);
  background: rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

/* Lightbox */
.lightbox {
  width: min(1000px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: visible;
  color: var(--paper);
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(27, 31, 26, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox-media {
  display: grid;
  max-height: calc(100dvh - 110px);
  place-items: center;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: calc(100dvh - 110px);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-media video {
  width: auto;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0 0 3px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.8rem;
}

.lightbox > p {
  margin: 14px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

/* Process */
.process {
  overflow: hidden;
  color: var(--paper);
  background: var(--sage-800);
}

.process::before {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 48% 52% 44% 56%;
}

.process-heading {
  margin-bottom: 74px;
}

.process h2 em {
  color: #d9b0a7;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-list li {
  min-height: 250px;
  padding: 28px 28px 12px 0;
  border-right: 1px solid var(--white-line);
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  display: block;
  margin-bottom: 58px;
  color: var(--sage-300);
  font-family: var(--font-display);
  font-size: 1rem;
}

.process-list h3 {
  max-width: 230px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.process-list p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Budget */
.budget {
  overflow: hidden;
  background: var(--ivory);
}

.budget-wash {
  position: absolute;
  right: -190px;
  bottom: -220px;
  width: 700px;
  height: 600px;
  pointer-events: none;
  background: rgba(127, 152, 116, 0.13);
  border-radius: 60% 40% 48% 52%;
  transform: rotate(-22deg);
}

.budget-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
}

.budget-intro {
  position: sticky;
  top: 118px;
}

.budget h2 {
  margin-bottom: 28px;
}

.budget-intro > p:not(.eyebrow, .budget-small) {
  max-width: 480px;
  color: var(--muted);
}

.location-card {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
}

.location-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--terracotta);
  border: 4px solid rgba(185, 102, 82, 0.18);
  border-radius: 50%;
  box-sizing: content-box;
}

.location-card strong,
.location-card small {
  display: block;
}

.location-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.location-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.budget-small {
  margin: 14px 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.budget-form {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(48, 55, 47, 0.08);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

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

.form-row:has(.field-small) {
  grid-template-columns: 1fr 0.42fr;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin: 0 0 7px 2px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(48, 55, 47, 0.18);
  border-radius: 14px;
  outline: 0;
  background: #fffefa;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 128px;
  padding: 13px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ba098;
  font-size: 0.78rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage-600);
  box-shadow: 0 0 0 4px rgba(127, 152, 116, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--terracotta);
}

.field-error {
  display: block;
  min-height: 15px;
  margin: 4px 0 -15px 2px;
  color: var(--terracotta);
  font-size: 0.62rem;
}

.event-fields[hidden] {
  display: none;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #753d34;
  background: #f6e3df;
}

.form-status.is-success {
  color: var(--sage-800);
  background: var(--sage-100);
}

/* Footer */
.site-footer {
  padding: 80px 0 24px;
  color: var(--paper);
  background: #2e382c;
}

.footer-main {
  display: grid;
  align-items: start;
  padding-bottom: 70px;
  grid-template-columns: 1.4fr 0.55fr 0.8fr 0.35fr;
  gap: 54px;
}

.footer-brand .brand-name {
  color: var(--paper);
  font-size: 3rem;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column a,
.footer-column > p:not(.footer-label) {
  margin: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.74rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-label {
  margin-bottom: 10px;
  color: var(--sage-300);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--white-line);
  border-radius: 48% 52% 47% 53%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  transform: rotate(8deg);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: rgba(255, 253, 248, 0.42);
  border-top: 1px solid var(--white-line);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 16px;
  text-align: right;
}

.studio-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px 7px 12px;
  color: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(132, 218, 226, 0.26);
  border-radius: 999px;
  background: rgba(132, 218, 226, 0.08);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.studio-credit::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #84dae2;
  box-shadow: 0 0 12px rgba(132, 218, 226, 0.65);
}

.studio-credit span {
  color: rgba(255, 253, 248, 0.44);
}

.studio-credit strong {
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-credit:hover {
  color: var(--paper);
  border-color: rgba(132, 218, 226, 0.58);
  background: rgba(132, 218, 226, 0.13);
  transform: translateY(-1px);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
    gap: 54px;
  }

  .hero-art {
    min-height: 560px;
  }

  .hero-main-image {
    height: 510px;
  }

  .hero-detail-image {
    height: 230px;
  }

  .intention-content {
    padding: 56px;
  }

  .about-grid {
    gap: 64px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 100px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    opacity: 0;
    background: rgba(250, 246, 238, 0.98);
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 2rem;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 12vw, 6.4rem);
  }

  .hero-art {
    width: min(620px, 100%);
    min-height: 650px;
    margin: 0 auto 40px;
  }

  .hero-main-image {
    height: 600px;
  }

  .hero-detail-image {
    height: 280px;
  }

  .manifesto-grid {
    align-items: start;
    grid-template-columns: 48px 1fr;
  }

  .manifesto-copy {
    grid-column: 2;
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .intention-card,
  .intention-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .intention-card:nth-child(even) .intention-image {
    order: 0;
  }

  .intention-image {
    min-height: 500px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
  }

  .about-grid {
    align-items: start;
    grid-template-columns: 0.7fr 1fr;
    gap: 48px;
  }

  .about-story {
    column-count: 1;
  }

  .gallery-item {
    grid-column: span 4;
  }

  .gallery-wide {
    grid-column: span 8;
  }

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

  .process-list li {
    border-bottom: 1px solid var(--white-line);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .process-list li:nth-child(4) {
    border-bottom: 0;
  }

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

  .budget-intro {
    position: static;
    max-width: 720px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.6fr 0.9fr;
  }

  .footer-mark {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 38px;
  }

  .hero-meta span + span {
    padding-left: 0;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .hero-art {
    min-height: 510px;
  }

  .hero-main-image {
    width: 78%;
    height: 460px;
    border-width: 8px;
  }

  .hero-detail-image {
    width: 42%;
    height: 210px;
    border-width: 7px;
  }

  .hero-script {
    top: 18px;
    left: -4px;
    font-size: 1.5rem;
  }

  .hero-ribbon {
    justify-content: flex-start;
    padding-inline: 24px;
    overflow: hidden;
    white-space: nowrap;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .manifesto-copy {
    grid-column: 1;
  }

  .section-index {
    display: none;
  }

  .manifesto h2,
  .section-heading h2,
  .about h2,
  .process h2,
  .budget h2 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .intention-card {
    border-radius: 32px;
  }

  .intention-image {
    min-height: 390px;
  }

  .intention-content {
    padding: 42px 28px;
  }

  .intention-content h3 {
    font-size: 2.7rem;
  }

  .intention-number {
    top: 24px;
    right: 26px;
  }

  .service-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .service-list strong {
    text-align: left;
  }

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

  .service-list-compact li {
    display: block;
  }

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

  .product-card-offset {
    margin-top: 0;
  }

  .product-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .product-image {
    height: 430px;
  }

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

  .about-portrait {
    width: min(88%, 450px);
    margin-inline: auto;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-tall,
  .gallery-wide:nth-of-type(2) {
    grid-row: span 2;
  }

  .gallery-wide:nth-of-type(6) {
    grid-column: 1 / -1;
  }

  .gallery-overlay {
    opacity: 1;
    transform: none;
  }

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

  .process-list li,
  .process-list li + li,
  .process-list li:nth-child(3) {
    display: grid;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list > li > span {
    margin: 0;
  }

  .process-list h3,
  .process-list p {
    max-width: none;
  }

  .budget-form {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .form-row,
  .form-row:has(.field-small) {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 1.7rem;
  }

  .brand-tagline {
    font-size: 0.5rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-art {
    min-height: 450px;
  }

  .hero-main-image {
    height: 405px;
  }

  .hero-detail-image {
    height: 185px;
  }

  .product-image {
    height: 370px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 390px;
    margin-bottom: 14px;
  }

  .gallery-wide {
    height: 270px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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