/* ==========================================================================
   THE DRAFT SPACE ATELIER — style.css (static site build)
   Same design system as the Shopify theme's assets/theme.css, with the
   CSS custom properties (previously generated by Liquid) defined directly
   here since there's no templating engine on this static build.
   ========================================================================== */

:root{
  --color-bg: #FAF7F2;
  --color-surface: #F3ECE1;
  --color-border: #E2D8C8;
  --color-beige: #E8DCC8;
  --color-taupe: #B5A692;
  --color-sand: #D9C7A8;
  --color-olive: #6B705C;
  --color-brown: #4A3B31;
  --color-accent: #8A7458;
  --color-text: #2B2926;
  --color-text-muted: #6B6459;
  --color-btn-bg: #2B2926;
  --color-btn-text: #FAF7F2;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-heading-weight: 500;
  --font-body: 'Assistant', 'Helvetica Neue', Arial, sans-serif;
  --font-base-size: 16px;
  --radius-button: 2px;
  --radius-image: 6px;
  --page-width: 1280px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--font-base-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight, 500);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--color-text);
}

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

.skip-to-content-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 999;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-button);
  transition: top 0.2s ease;
}
.skip-to-content-link:focus {
  position: fixed;
  top: 1rem;
  width: auto; height: auto;
  clip: auto;
  overflow: visible;
}

.container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2.75rem;
}

@media (min-width: 700px) {
  .container { padding: 0 2.5rem; }
}

.main-content { overflow-x: hidden; }

/* ---------- Section rhythm ---------- */
.section { padding: 4rem 0; }
@media (min-width: 900px) { .section { padding: 6.5rem 0; } }

.section-intro { max-width: 640px; margin: 0 0 2.5rem; }
.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.section-heading {
  font-size: clamp(1.75rem, 1.4rem + 1.8vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.section-subheading {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ---------- Scroll reveal animation ---------- */
[data-animate] { opacity: 1; }
body:not(.animations-off) [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body:not(.animations-off) [data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-button);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border-color: var(--color-btn-bg);
}
.btn--primary:hover { background: var(--color-brown); border-color: var(--color-brown); }

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--secondary:hover { background: var(--color-beige); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: var(--color-bg); }

.btn--outline-invert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-button);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-bg);
  border: 1px solid var(--color-bg);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn--outline-invert:hover { background: var(--color-bg); color: var(--color-text); transform: translateY(-2px); }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
  position: relative;
  overflow: hidden;
}
.announcement-bar__track { position: relative; min-height: 1.2em; }
.announcement-bar__item {
  display: none;
  margin: 0;
}
.announcement-bar__item.is-active { display: block; }
.announcement-bar__item a { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-stuck {
  box-shadow: 0 4px 24px rgba(43, 41, 38, 0.06);
  border-bottom-color: var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  padding-left: 1.75rem;
}
@media (min-width: 700px) {
  .site-header__inner { padding-top: 1.1rem; padding-bottom: 1.1rem; padding-left: 2rem; }
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.site-header__logo-image { max-height: 42px; width: auto; }

.site-nav { display: none; }
@media (min-width: 980px) {
  .site-nav { display: block; }
  .site-nav__list { display: flex; align-items: center; gap: 2.1rem; }
  .site-nav__item { position: relative; }
  .site-nav__link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0;
    position: relative;
  }
  .site-nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--color-text);
    transition: width 0.25s ease;
  }
  .site-nav__link:hover::after,
  .site-nav__link[aria-current="page"]::after { width: 100%; }
  .site-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 28px rgba(43,41,38,0.08);
  }
  .site-nav__item.has-dropdown:hover .site-nav__dropdown,
  .site-nav__item.has-dropdown:focus-within .site-nav__dropdown { display: block; }
  .site-nav__dropdown li a { display: block; padding: 0.55rem 1.1rem; font-size: 0.88rem; }
  .site-nav__dropdown li a:hover { background: var(--color-surface); }
}

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.site-header__cta { display: none; }
@media (min-width: 760px) { .site-header__cta { display: inline-flex; } }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
}
@media (min-width: 980px) { .hamburger { display: none; } }
.hamburger__line {
  display: block;
  width: 18px; height: 1.5px;
  margin: 0 auto;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.25rem 2rem;
  background: var(--color-bg);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__item { border-bottom: 1px solid var(--color-border); }
.mobile-nav__link { display: block; padding: 0.9rem 0; font-size: 1.02rem; }
.mobile-nav__sublist { padding-left: 1rem; padding-bottom: 0.5rem; }
.mobile-nav__sublist a { display: block; padding: 0.5rem 0; font-size: 0.92rem; color: var(--color-text-muted); }
.mobile-nav__cta { margin-top: 1.25rem; width: 100%; }
@media (min-width: 980px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
/* A small, even gap between the sticky header/logo bar and the banner
   image itself — margin (not padding) so it stays visible even at desktop
   widths, where the banner image is absolutely positioned and would
   otherwise ignore the hero section's own padding. */
.hero { padding: 0 0 2.5rem; margin-top: 0.5rem; }
@media (min-width: 900px) { .hero { padding: 5rem 0; } }
@media (min-width: 980px) {
  .hero {
    position: relative;
    overflow: hidden;
    /* Fit the whole banner photo within one screen (below the header)
       instead of a flat 720px, which made taller-than-viewport screens
       need to scroll to see the bottom of the room photo. */
    min-height: min(620px, calc(100vh - 100px));
    padding: 3.5rem 0;
  }
  /* The hero's text sits on the full-bleed photo now, so it shouldn't be
     centered inside the same max-width container as the rest of the site
     (that left a large gap on wide screens). Anchor it close to the left
     edge instead, with a comfortable fixed inset. */
  .hero .container {
    max-width: none;
    margin: 0;
    padding-left: clamp(2rem, 4vw, 3.5rem);
    padding-right: 2.75rem;
  }
}

.hero__grid { display: grid; gap: 2.5rem; align-items: center; position: relative; z-index: 2; }
.hero__grid > * { min-width: 0; }
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; height: 100%; }
  .hero__content { max-width: 560px; }
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero__heading {
  font-size: clamp(2.25rem, 1.7rem + 3vw, 3.75rem);
  margin-bottom: 1.25rem;
}
.hero__subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.hero__trust-line {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.hero__media { position: relative; min-width: 0; }
.hero__media-primary { min-width: 0; overflow: hidden; border-radius: var(--radius-image); height: 100%; }
.hero__image--primary {
  display: none;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 30% center;
  border-radius: var(--radius-image);
  height: 100%;
}

/* ---------- Hero mobile/tablet slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--color-beige);
}
.hero-slider__track { position: relative; width: 100%; height: 100%; }
.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slider__slide.is-active { opacity: 1; }
.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.hero-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(250,247,242,0.55);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-slider__dot.is-active { background: #fff; transform: scale(1.25); }
.hero-slider__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(43,41,38,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroSliderHintNudge 2.2s ease-in-out infinite;
}
@keyframes heroSliderHintNudge {
  0%, 100% { transform: translateX(0); opacity: 0.85; }
  50% { transform: translateX(3px); opacity: 1; }
}
/* Desktop: hero image breaks out of the container and fills the full
   right side of the viewport edge-to-edge, height matched to the text
   column. Its LEFT edge is calculated from the container's own edge plus
   the text column width plus a fixed gutter — so it always starts safely
   clear of the text, at any viewport width, instead of a flat vw percentage
   (which caused the heading to overlap the photo on wide screens).
   Mobile/tablet shows the swipeable slider instead of a single image. */
@media (min-width: 980px) {
  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43,41,38,0.68) 0%, rgba(43,41,38,0.4) 42%, rgba(43,41,38,0.16) 68%, rgba(43,41,38,0) 88%);
  }
  .hero__media-primary { border-radius: 0; height: 100%; }
  .hero__image--primary { display: block; aspect-ratio: auto; border-radius: 0; object-position: 60% center; }
  .hero-slider { display: none; }

  /* Text now sits directly on top of the full-bleed photo, so switch the
     hero copy and outline button to light colors for legibility against
     the dark gradient overlay above. */
  .hero__eyebrow { color: var(--color-sand); }
  .hero__heading { color: var(--color-bg); }
  .hero__subheading { color: rgba(250,247,242,0.88); }
  .hero__trust-line { color: rgba(250,247,242,0.75); }
  .hero__actions .btn--outline { color: var(--color-bg); border-color: var(--color-bg); }
  .hero__actions .btn--outline:hover { background: var(--color-bg); color: var(--color-text); }
}
.hero__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-image);
  background: linear-gradient(135deg, var(--color-beige), var(--color-taupe));
  display: flex; align-items: center; justify-content: center;
  color: var(--color-bg);
  font-family: var(--font-heading);
  text-align: center;
  padding: 2rem;
}
.hero--collage .hero__image--secondary {
  position: absolute;
  width: 42%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-image);
  right: -6%;
  bottom: -10%;
  border: 6px solid var(--color-bg);
  box-shadow: 0 20px 40px rgba(43,41,38,0.12);
}
@media (max-width: 600px) {
  .hero--collage .hero__image--secondary { width: 46%; right: -4%; bottom: -6%; border-width: 4px; }
}

/* ---------- Studio intro ---------- */
.studio-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 900px) {
  .studio-intro__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: center; padding-top: 6rem; padding-bottom: 6rem; }
}
.studio-intro__media { position: relative; }
.studio-intro__image--large,
.studio-intro__placeholder--large {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-image);
}
.studio-intro__image--small,
.studio-intro__placeholder--small {
  width: 45%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-image);
  margin-top: -3.5rem;
  margin-left: auto;
  margin-right: 8%;
  border: 6px solid var(--color-bg);
  position: relative;
  box-shadow: 0 16px 32px rgba(43,41,38,0.1);
}
.studio-intro__placeholder--large,
.studio-intro__placeholder--small {
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.studio-intro__text { color: var(--color-text-muted); margin: 1rem 0 1.75rem; max-width: 50ch; }

/* ---------- Project filters & grid ---------- */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--color-text); color: var(--color-text); }
.filter-btn.is-active { background: var(--color-text); border-color: var(--color-text); color: var(--color-bg); }

.project-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .project-grid { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; } }

.project-grid__empty { text-align: center; color: var(--color-text-muted); padding: 2rem 0; }
.projects-showcase__footer { margin-top: 3rem; text-align: center; }

/* ---------- Project card ---------- */
.project-card { display: block; }
.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-image);
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
}
.project-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.project-card:hover .project-card__image { transform: scale(1.05); }
.project-card__image--base { position: relative; z-index: 1; }
.project-card__image--hover {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0;
}
.project-card:hover .project-card__image--hover { opacity: 1; }
.project-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--color-beige), var(--color-sand));
}
.project-card__label {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: rgba(250, 247, 242, 0.92);
  color: var(--color-text);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.project-card__tag {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: var(--color-olive);
  color: var(--color-bg);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.project-card__body { padding-top: 1.1rem; }
.project-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.project-card__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.project-card__title a:hover { color: var(--color-accent); }
.project-card__desc { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 0.75rem; }
.project-card__link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s ease;
}
.project-card__link:hover { gap: 0.65rem; color: var(--color-accent); }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: 2rem 1.6rem;
  background: var(--color-surface);
  border-radius: var(--radius-image);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(43,41,38,0.08); }
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-olive);
}
.why-card__title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card__text { color: var(--color-text-muted); font-size: 0.92rem; }

/* ---------- Process timeline ---------- */
.process-timeline {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 780px) { .process-timeline { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.process-step {
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.process-step__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-taupe);
  margin-bottom: 0.85rem;
}
.process-step__title { font-size: 1.15rem; margin-bottom: 0.6rem; }
.process-step__text { color: var(--color-text-muted); font-size: 0.92rem; }
.process__footer { margin-top: 3rem; text-align: center; }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; }
.testimonial-slider__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.testimonial-slider__track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: var(--radius-image);
  padding: 2.25rem 1.9rem;
}
@media (min-width: 700px) { .testimonial-card { flex-basis: 46%; } }
@media (min-width: 980px) { .testimonial-card { flex-basis: 31.5%; } }
.testimonial-card__stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; font-size: 1.05rem; }
.testimonial-card__star { color: var(--color-border); }
.testimonial-card__star.is-filled { color: #D4A72C; }
.testimonial-card__text { font-size: 1.02rem; margin-bottom: 1.5rem; line-height: 1.65; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-card__photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card__name {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.testimonial-card__meta { display: block; color: var(--color-text-muted); font-size: 0.8rem; }
.testimonial-slider__controls { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.testimonial-slider__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.testimonial-slider__btn:hover { background: var(--color-text); color: var(--color-bg); }
.testimonials__empty { color: var(--color-text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-brown);
  background-size: cover;
  background-position: center;
  color: var(--color-bg);
  padding: 4.5rem 0;
  position: relative;
}
.cta-band__inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band__heading { color: var(--color-bg); font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.6rem); margin-bottom: 1rem; }
.cta-band__text { color: rgba(250,247,242,0.85); margin-bottom: 2.25rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Quote form ---------- */
.quote-form-section { background: var(--color-surface); }
.quote-form-section__inner { max-width: 860px; margin: 0 auto; }
.quote-form-card {
  background: var(--color-bg);
  border-radius: var(--radius-image);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 56px rgba(43,41,38,0.08);
}
@media (min-width: 700px) { .quote-form-card { padding: 3rem 3.5rem; } }

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-image);
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
}
.form-message--success { background: #E7EDE3; color: #3F4A34; }
.form-message--error { background: #F5E2DE; color: #7A3324; }
.form-message--error ul { margin-top: 0.5rem; padding-left: 1.1rem; list-style: disc; }

.form-section-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-accent);
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.form-section + .form-section-heading,
.form-grid + .form-section-heading { margin-top: 2.25rem; }

.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-text);
}
.quote-form__submit { width: 100%; }
@media (min-width: 560px) { .quote-form__submit { width: auto; } }
.quote-form__note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 1.1rem;
}

/* ---------- Contact details ---------- */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-item {
  display: block;
  padding: 1.75rem 1.4rem;
  background: var(--color-surface);
  border-radius: var(--radius-image);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(43,41,38,0.08); }
.contact-item__icon { display: block; margin-bottom: 1rem; color: var(--color-olive); }
.contact-item__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.contact-item__value { display: block; font-weight: 600; word-break: break-word; }
.contact-hours { margin-top: 1.75rem; color: var(--color-text-muted); font-size: 0.92rem; }

.contact-social { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.contact-social__label { font-size: 0.85rem; color: var(--color-text-muted); }
.contact-social__icons { display: flex; gap: 0.75rem; }

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover { background: var(--color-text); color: var(--color-bg); transform: translateY(-2px); }
.footer-social .social-icon { border-color: rgba(250,247,242,0.25); }

/* ---------- Instagram / social grid ---------- */
.instagram-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 700px) { .instagram-grid { grid-template-columns: repeat(6, 1fr); } }
.instagram-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--color-surface);
}
.instagram-item__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-beige), var(--color-taupe)); }
.instagram-item__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(43,41,38,0);
  color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.instagram-item:hover .instagram-item__overlay { background: rgba(43,41,38,0.35); color: #fff; }
.instagram-item:hover .instagram-item__image { transform: scale(1.06); }
.social-grid-section__footer { margin-top: 2.5rem; text-align: center; }

/* ---------- Page hero ---------- */
.page-hero { padding: 3.5rem 0 3rem; position: relative; }
.page-hero--image { color: var(--color-bg); padding: 0; }
.page-hero--image .page-hero__media { position: relative; }
.page-hero--image .page-hero__image { width: 100%; height: 46vh; min-height: 320px; object-fit: cover; }
.page-hero--image .page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(43,41,38,0.4);
}
.page-hero--image .page-hero__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
}
.page-hero--image .page-hero__heading,
.page-hero--image .section-eyebrow { color: var(--color-bg); }
.page-hero__heading { font-size: clamp(2rem, 1.6rem + 2vw, 3rem); margin-bottom: 0.85rem; }
.page-hero__text { color: var(--color-text-muted); max-width: 60ch; }
.page-hero--image .page-hero__text { color: rgba(250,247,242,0.88); }

/* ---------- Legal / rich text page ---------- */
.legal-page__inner { max-width: 780px; margin: 0 auto; }
.rich-text-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.3rem; }
.rich-text-content p { margin-bottom: 1rem; color: var(--color-text-muted); }
.rich-text-content ul, .rich-text-content ol { margin: 0 0 1rem 1.25rem; list-style: disc; color: var(--color-text-muted); }

/* ---------- Project gallery empty state ---------- */
.project-gallery__empty-state {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 0;
}
.project-gallery__empty-state h2 { margin-bottom: 1rem; font-size: 1.4rem; }
.project-gallery__empty-state p { color: var(--color-text-muted); margin-bottom: 1.75rem; }

/* ---------- Project detail ---------- */
.project-detail__header { padding: 3rem 0 2rem; }
.project-detail__label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-surface);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.project-detail__title { font-size: clamp(1.9rem, 1.5rem + 2vw, 2.75rem); margin-bottom: 0.6rem; }
.project-detail__meta { color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; }
.project-detail__cover img { width: 100%; max-height: 640px; object-fit: cover; }
.project-detail__body {
  display: grid;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .project-detail__body { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.project-detail__col h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.project-detail__col h2:first-child { margin-top: 0; }
.project-detail__col p { color: var(--color-text-muted); }
.project-detail__aside {
  align-self: start;
  background: var(--color-surface);
  border-radius: var(--radius-image);
  padding: 2rem;
}
.project-detail__aside h3 { margin-bottom: 1.25rem; font-size: 1.05rem; }
.project-detail__facts { margin-bottom: 1.75rem; }
.project-detail__facts dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-top: 0.9rem; }
.project-detail__facts dd { margin: 0.2rem 0 0; font-weight: 600; }
.project-detail__gallery-heading { padding-top: 1rem; margin-bottom: 1.5rem; font-size: 1.4rem; }
.project-detail__gallery { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-bottom: 3rem; }
@media (min-width: 700px) { .project-detail__gallery { grid-template-columns: repeat(2, 1fr); } }
.project-detail__gallery img { border-radius: var(--radius-image); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.project-detail__footer { padding-bottom: 4rem; text-align: center; }

/* ---------- About studio ---------- */
.about-studio__story { max-width: 720px; padding-top: 3.5rem; padding-bottom: 1rem; }
.about-studio__text { color: var(--color-text-muted); margin-top: 1rem; max-width: 60ch; }
.about-studio__philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 900px) { .about-studio__philosophy { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }
.about-studio__philosophy-media img,
.studio-intro__placeholder--large { border-radius: var(--radius-image); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.about-studio__positioning {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-style: italic;
  color: var(--color-text);
}
.about-studio__values { padding-top: 3rem; padding-bottom: 3rem; }
.about-studio__values-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .about-studio__values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .about-studio__values-grid { grid-template-columns: repeat(4, 1fr); } }
.about-studio__value,
.about-studio__team-member {
  background: var(--color-surface);
  border-radius: var(--radius-image);
  padding: 1.75rem;
  text-align: left;
}
.about-studio__value h3,
.about-studio__team-member h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.about-studio__value p,
.about-studio__team-member p { color: var(--color-text-muted); font-size: 0.92rem; }
.about-studio__team-photo,
.about-studio__team-placeholder { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-image); margin-bottom: 1rem; background: var(--color-beige); }
.about-studio__cta { text-align: center; padding-top: 2.5rem; padding-bottom: 4rem; }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon { font-size: 1.3rem; transition: transform 0.25s ease; color: var(--color-accent); flex-shrink: 0; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding-top: 0.85rem; color: var(--color-text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-brown);
  color: rgba(250,247,242,0.85);
  padding: 4.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo__text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-bg); }
.footer-col__desc { margin: 1.1rem 0 1.5rem; max-width: 38ch; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-col__heading { color: var(--color-bg); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-links li,
.footer-contact li { margin-bottom: 0.75rem; font-size: 0.92rem; }
.footer-links a:hover { color: var(--color-bg); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250,247,242,0.15);
  font-size: 0.8rem;
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a:hover { color: var(--color-bg); }

/* ---------- Misc ---------- */
::selection { background: var(--color-taupe); color: var(--color-bg); }
.preview-banner{
  background:#2B2926; color:#FAF7F2; text-align:center;
  font-family: var(--font-body); font-size: 0.82rem; padding: 0.6rem 1rem;
}

/* ---------- Leads (private) ---------- */
.leads-page { min-height: 100vh; }

.leads-lock { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.leads-lock__card {
  width: 100%; max-width: 380px;
  background: var(--color-bg);
  border-radius: var(--radius-image);
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 48px rgba(43,41,38,0.1);
  text-align: center;
}
.leads-lock__heading { font-size: 1.9rem; margin-bottom: 0.6rem; }
.leads-lock__text { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 0.92rem; }
.leads-lock__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.leads-lock__input:focus { outline: none; border-color: var(--color-text); }
.leads-lock__error { color: #A8402F; font-size: 0.85rem; margin-top: 1rem; }

.leads-header { background: var(--color-bg); border-bottom: 1px solid var(--color-border); padding: 1.75rem 0; }
.leads-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.leads-header__heading { font-size: 1.6rem; }
.leads-header__actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.leads-count { font-size: 0.85rem; color: var(--color-text-muted); }

.leads-filters { display: flex; gap: 0.6rem; margin: 2rem 0 1.75rem; }

.leads-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 700px) { .leads-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .leads-list { grid-template-columns: repeat(3, 1fr); } }

.leads-empty, .leads-loading { text-align: center; color: var(--color-text-muted); padding: 3rem 0; }

.lead-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-image);
  padding: 1.5rem;
}
.lead-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; }
.lead-card__name { font-size: 1.1rem; margin-bottom: 0.25rem; }
.lead-card__date { font-size: 0.78rem; color: var(--color-text-muted); }
.lead-card__badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
}
.lead-card__badge--new { background: #F5E2DE; color: #7A3324; }
.lead-card__badge--contacted { background: #E7EDE3; color: #3F4A34; }
.lead-card__contact { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.85rem; font-size: 0.92rem; }
.lead-card__contact a:hover { color: var(--color-accent); }
.lead-card__details { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 0.85rem; }
.lead-card__message {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text);
  background: var(--color-surface);
  border-radius: var(--radius-button);
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}
.lead-card__actions .btn { width: 100%; }
