:root {
  --blue: #0f4951;
  --teal: #1f6f73;
  --sage: #a7c4bc;
  --taupe: #e6ded6;
  --copper: #a86f52;
  --paper: #fbf8f4;
  --mist: #f3efe9;
  --white: #fff;
  --ink: #253d40;
  --muted: #6a7778;
  --line: rgba(15, 73, 81, 0.14);
  --shadow: 0 20px 55px rgba(23, 39, 41, 0.18);
  --soft-shadow: 0 18px 40px rgba(15, 73, 81, 0.08);
  --card-shadow: 0 24px 50px rgba(15, 73, 81, 0.1);
  --radius: 24px;
  --radius-sm: 18px;
  --display: "Ribeye", Georgia, serif;
  --text: "Mero Thai", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

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

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

.page-shell {
  width: 100%;
  margin: 0;
  padding-top: 86px;
  background: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(5vw, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(15, 73, 81, 0.08);
  background: rgba(251, 248, 244, 0.82);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(15, 73, 81, 0.14);
  background: rgba(251, 248, 244, 0.94);
  box-shadow: 0 10px 28px rgba(15, 73, 81, 0.08);
}

.signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.42rem;
}

.signature-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  transform: translateY(-2px);
}

.site-nav a.is-active {
  color: var(--copper);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 670px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 5vw 118px;
}

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

.wash {
  position: absolute;
  border-radius: 58% 42% 54% 46%;
  filter: blur(0.2px);
}

.wash-a {
  inset: 22px 38px 46px 0;
  background:
    linear-gradient(rgba(167, 196, 188, 0.62), rgba(167, 196, 188, 0.62)),
    url("assets/brand-board.webp") center / cover;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.hero-photo {
  position: absolute;
  top: 28px;
  left: 54px;
  width: 305px;
  height: 385px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 14px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 55px rgba(15, 73, 81, 0.12);
}

.hero-stamp {
  position: absolute;
  right: 28px;
  bottom: 6px;
  width: 98px;
  height: auto;
  opacity: 0.82;
  filter: drop-shadow(0 8px 14px rgba(15, 73, 81, 0.1));
}

.overline,
.section-title span,
.text-panel span,
.newsletter-content span,
.testimonial span,
.contact-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.9vw, 4.5rem);
  font-weight: 400;
  max-width: 640px;
}

h2 {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 400;
}

h3 {
  color: var(--blue);
  font-size: 1.18rem;
}

.hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.26) 45%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 14px 28px rgba(15, 73, 81, 0.16);
  transform: translateY(-3px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button.filled {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 73, 81, 0.14);
}

.button.filled:hover,
.button.filled:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: var(--taupe);
  border-color: var(--copper);
  color: var(--blue);
}

.quote-band {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 94px 5vw;
  text-align: center;
  background:
    linear-gradient(rgba(230, 222, 214, 0.22), rgba(230, 222, 214, 0.7)),
    url("assets/atelier-08.webp") center 52% / cover;
}

.quote-band::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: rgba(255, 255, 255, 0.58);
}

.quote-band::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: none;
  opacity: 0;
}

.quote-band > div {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.quote-band h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.quote-band p {
  color: #556769;
}

.cards-section,
.soft-section,
.editorial-section,
.faq-section,
.contact-section {
  padding: 108px 5vw;
}

.cards-section {
  background: linear-gradient(180deg, #f4f6f3 0%, #edf2ef 100%);
}

.cards-section > *,
.soft-section > *,
.editorial-section > *,
.faq-section > *,
.contact-section > * {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

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

.feature-cards article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.feature-cards img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 420ms ease, filter 420ms ease;
}

.card-label {
  width: calc(100% - 48px);
  min-height: 196px;
  margin: -64px auto 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.card-label p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  transition: opacity 180ms ease, max-height 220ms ease, margin 220ms ease;
}

.card-label a {
  position: relative;
  display: inline-flex;
  margin-top: auto;
  padding-top: 14px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.card-label a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.card-label a:hover,
.card-label a:focus-visible {
  color: var(--teal);
  transform: translateY(-2px);
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 34px 28px 214px;
  background:
    linear-gradient(180deg, rgba(15, 73, 81, 0.06), rgba(15, 73, 81, 0.72)),
    linear-gradient(135deg, rgba(167, 196, 188, 0.12), rgba(168, 111, 82, 0.08));
  color: var(--white);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.card-overlay strong {
  max-width: 280px;
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.16;
}

.card-overlay span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-cards article:hover img,
.feature-cards article:focus-within img {
  filter: saturate(0.9) contrast(0.92);
  transform: scale(1.045);
}

.feature-cards article:hover .card-overlay,
.feature-cards article:focus-within .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.feature-cards article:hover .card-label,
.feature-cards article:focus-within .card-label {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(15, 73, 81, 0.14);
  transform: translateY(-6px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 5vw 108px;
}

.split-section > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.text-panel {
  margin-left: -44px;
  padding: 54px 58px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.text-panel p,
.newsletter-content p,
.testimonial p,
.contact-card p {
  color: var(--muted);
}

.text-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.text-panel li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}

.project-section {
  padding: 8px 5vw 96px;
}

.project-section > * {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

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

.project-gallery article {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--card-shadow);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-gallery article div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  width: auto;
  padding: 18px 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, background 240ms ease;
}

.project-gallery h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

.project-gallery p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.project-gallery article:hover img,
.project-gallery article:focus-within img {
  filter: saturate(0.92) contrast(0.94);
  transform: scale(1.035);
}

.project-gallery article:hover div,
.project-gallery article:focus-within div {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-6px);
}

.soft-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f6f3 0%, #edf2ef 100%);
}

.soft-section::before,
.soft-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.soft-section::before {
  inset: 0;
  z-index: 0;
  background: none;
}

.soft-section::after {
  right: 4vw;
  bottom: -52px;
  z-index: 0;
  width: 210px;
  height: 210px;
  background: none;
  opacity: 0;
  transform: rotate(-12deg);
}

.soft-section > * {
  position: relative;
  z-index: 1;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workshop-grid article {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  border-top: 4px solid var(--sage);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, color 240ms ease, background 240ms ease;
}

.workshop-grid article::before {
  position: absolute;
  inset: auto -38px -58px auto;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  content: "";
  background: var(--sage);
  opacity: 0.22;
  transition: transform 320ms ease, opacity 320ms ease;
}

.workshop-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(145deg, rgba(15, 73, 81, 0.96), rgba(31, 111, 115, 0.9));
  opacity: 0;
  transition: opacity 240ms ease;
}

.workshop-grid article:nth-child(2) {
  border-color: var(--teal);
}

.workshop-grid article:nth-child(2)::before {
  background: var(--teal);
}

.workshop-grid article:nth-child(2)::after {
  background: linear-gradient(145deg, rgba(31, 111, 115, 0.96), rgba(167, 196, 188, 0.88));
}

.workshop-grid article:nth-child(3) {
  border-color: var(--copper);
}

.workshop-grid article:nth-child(3)::before {
  background: var(--copper);
}

.workshop-grid article:nth-child(3)::after {
  background: linear-gradient(145deg, rgba(168, 111, 82, 0.95), rgba(230, 222, 214, 0.9));
}

.workshop-grid article:nth-child(4) {
  border-color: var(--blue);
}

.workshop-grid article:nth-child(4)::before {
  background: var(--blue);
}

.workshop-grid article:nth-child(4)::after {
  background: linear-gradient(145deg, rgba(15, 73, 81, 0.96), rgba(168, 111, 82, 0.82));
}

.workshop-grid h3,
.workshop-grid p,
.workshop-grid span {
  position: relative;
  z-index: 1;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

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

.workshop-grid span {
  display: block;
  max-height: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  opacity: 0;
  overflow: hidden;
}

.workshop-grid article:hover,
.workshop-grid article:focus-within {
  box-shadow: 0 22px 48px rgba(15, 73, 81, 0.14);
  transform: translateY(-6px);
}

.workshop-grid article:hover::before,
.workshop-grid article:focus-within::before {
  opacity: 0.34;
  transform: scale(2.25);
}

.workshop-grid article:hover::after,
.workshop-grid article:focus-within::after {
  opacity: 1;
}

.workshop-grid article:hover h3,
.workshop-grid article:hover p,
.workshop-grid article:focus-within h3,
.workshop-grid article:focus-within p {
  color: var(--white);
  transform: translateY(-3px);
}

.workshop-grid article:nth-child(3):hover h3,
.workshop-grid article:nth-child(3):hover p,
.workshop-grid article:nth-child(3):hover span,
.workshop-grid article:nth-child(3):focus-within h3,
.workshop-grid article:nth-child(3):focus-within p,
.workshop-grid article:nth-child(3):focus-within span {
  color: var(--blue);
}

.workshop-grid article:hover span,
.workshop-grid article:focus-within span {
  max-height: 80px;
  margin-top: 16px;
  opacity: 1;
}

.newsletter-style {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 110px 5vw;
  overflow: hidden;
}

.newsletter-style::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: none;
  mix-blend-mode: multiply;
}

.newsletter-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(167, 196, 188, 0.78), rgba(230, 222, 214, 0.74)),
    url("assets/atelier-04.webp") center / cover;
}

.newsletter-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.36);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 42px 38px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(251, 248, 244, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.mini-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-form strong,
.mini-form a {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-form a {
  background: var(--blue);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mini-form a:hover,
.mini-form a:focus-visible {
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(15, 73, 81, 0.16);
  transform: translateY(-3px);
}

.masonry-gallery {
  column-count: 3;
  column-gap: 24px;
}

.masonry-gallery article {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
  break-inside: avoid;
  box-shadow: var(--card-shadow);
}

.masonry-gallery article:nth-child(2n) img {
  aspect-ratio: 4 / 5;
}

.masonry-gallery article:nth-child(3n) img {
  aspect-ratio: 1 / 1;
}

.masonry-gallery article:nth-child(5n) img {
  aspect-ratio: 3 / 4;
}

.masonry-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform 440ms ease, filter 440ms ease;
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(15, 73, 81, 0.02), rgba(15, 73, 81, 0.9)),
    linear-gradient(135deg, rgba(167, 196, 188, 0.18), rgba(168, 111, 82, 0.1));
  color: var(--white);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-caption h3 {
  max-width: 280px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.gallery-caption p {
  max-width: 310px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.45;
}

.masonry-gallery article:hover img,
.masonry-gallery article:focus-within img {
  filter: saturate(0.9) contrast(0.92);
  transform: scale(1.045);
}

.masonry-gallery article:hover .gallery-caption,
.masonry-gallery article:focus-within .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 76px max(5vw, calc((100vw - 1200px) / 2));
  background: linear-gradient(180deg, #f3f5f2 0%, #edf1ee 100%);
  overflow: hidden;
}

.testimonial::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: none;
}

.service-area-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--card-shadow);
  line-height: 0;
}

.service-area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.testimonial img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 48px 54px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

details::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: var(--sage);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 180ms ease, background 180ms ease;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  color: var(--blue);
  font-weight: 900;
  list-style: none;
  transition: color 180ms ease, transform 180ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 73, 81, 0.18);
  border-radius: 50%;
  content: "+";
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

details p {
  position: relative;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

details:hover,
details:focus-within {
  border-color: rgba(31, 111, 115, 0.38);
  background: rgba(167, 196, 188, 0.08);
  box-shadow: 0 12px 28px rgba(15, 73, 81, 0.08);
  transform: translateY(-3px);
}

details:hover::before,
details:focus-within::before,
details[open]::before {
  transform: scaleY(1);
}

details:hover summary,
details:focus-within summary {
  color: var(--teal);
  transform: translateX(4px);
}

details:hover summary::after,
details:focus-within summary::after {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-50%) rotate(90deg);
}

details[open] {
  border-color: rgba(168, 111, 82, 0.38);
}

details[open]::before {
  background: var(--copper);
}

details[open] summary::after {
  content: "−";
  background: var(--copper);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: none;
}

.contact-section::after {
  position: absolute;
  right: 6vw;
  top: 44px;
  z-index: 0;
  width: 150px;
  height: 150px;
  content: "";
  pointer-events: none;
  background: none;
  opacity: 0;
  transform: rotate(9deg);
}

.contact-card,
.contact-form {
  position: relative;
  z-index: 1;
  background: var(--white);
  width: 100%;
  padding: 42px;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--card-shadow);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  color: var(--blue);
  font-weight: 900;
}

.contact-item svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(15, 73, 81, 0.18);
  background: rgba(167, 196, 188, 0.2);
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

a.contact-item:hover svg {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

a.contact-item {
  transition: color 180ms ease, transform 180ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  color: var(--teal);
  transform: translateX(3px);
}

.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  opacity: 0.7;
  cursor: progress;
}

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

.form-status {
  min-height: 3em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

label {
  display: grid;
  gap: 5px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 12px;
  background: #fffdfb;
  color: var(--ink);
  font: inherit;
}

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

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.45;
  text-transform: none;
}

.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0.15rem 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.consent-field a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 30px 5vw;
  background: #edf1ee;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: none;
}

footer p {
  position: relative;
  margin: 0;
}

.footer-link {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--teal);
  transform: translateY(-1px);
}

.legal-page {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.legal-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 5vw 112px;
}

.legal-back-button {
  margin-top: 8px;
}

.legal-logo-link {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.legal-logo {
  width: min(180px, 48vw);
  height: auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.legal-logo-link:hover .legal-logo,
.legal-logo-link:focus-visible .legal-logo {
  opacity: 0.9;
  transform: translateY(-2px);
}

.legal-hero {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.legal-hero p:last-child {
  color: var(--muted);
}

.legal-section {
  margin-bottom: 24px;
}

.legal-card {
  padding: 34px 36px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.legal-card + .legal-card {
  margin-top: 24px;
}

.legal-card h2 {
  margin-bottom: 18px;
}

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

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card strong {
  color: var(--blue);
}

.legal-note {
  font-size: 0.94rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 56px 72px;
  background: rgba(15, 73, 81, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.lightbox figure {
  width: min(1120px, 100%);
  max-height: 88vh;
  margin: 0;
  display: grid;
  gap: 14px;
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.lightbox figcaption {
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 70px;
  font-size: 3rem;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

@media (max-width: 1180px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }

  .site-header {
    padding: 0 24px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .split-section,
  .testimonial,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 24px 78px;
    gap: 24px;
  }

  .hero-art {
    min-height: 410px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .quote-band,
  .cards-section,
  .soft-section,
  .editorial-section,
  .faq-section,
  .contact-section,
  .newsletter-style {
    padding-right: 24px;
    padding-left: 24px;
  }

  .feature-cards,
  .workshop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .split-section {
    padding: 0 24px 58px;
  }

  .text-panel {
    margin: -42px 22px 0;
    padding: 40px 34px;
  }

  .project-section {
    padding: 58px 24px;
  }

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

  .testimonial {
    padding: 52px 24px;
    gap: 18px;
  }

  .testimonial-content {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .signature {
    font-size: 1.12rem;
  }

  .signature-logo {
    width: 28px;
    height: 28px;
  }

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

  .wash-a {
    inset: 18px 20px 38px 4px;
  }

  .hero-photo {
    top: 28px;
    left: 34px;
    width: 235px;
    height: 285px;
    border-width: 8px;
  }

  .hero-stamp {
    right: 14px;
    width: 82px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .mini-form,
  .feature-cards,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card-label {
    width: calc(100% - 30px);
  }

  .split-section > img {
    height: 320px;
  }

  .text-panel {
    margin: -28px 12px 0;
    padding: 30px 24px;
  }

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

  .service-area-map,
  .testimonial img {
    height: 300px;
  }

  .testimonial-content,
  .contact-card,
  .contact-form {
    padding: 26px 22px;
  }

  footer {
    padding: 20px 24px;
  }

  .legal-main {
    padding: 72px 24px 88px;
  }

  .legal-logo-link {
    margin-bottom: 28px;
  }

  .legal-card {
    padding: 26px 22px;
  }

  .lightbox {
    padding: 58px 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 42px;
    height: 58px;
    font-size: 2.4rem;
  }

  .lightbox-nav.prev {
    left: 8px;
  }

  .lightbox-nav.next {
    right: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
