/* ============================================================
   CERTAIN CURTAINS — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* === Design Tokens === */
:root {
  --bg:         #FAF8F5;
  --bg-soft:    #F2EFE9;
  --sage:       #7A9E87;
  --sage-dk:    #5B7D69;
  --taupe:      #BFB0A3;
  --border:     #E2DDD8;
  --dark:       #2A2A2A;
  --mid:        #6B6460;
  --white:      #FFFFFF;
  --f-head:     'Cormorant Garamond', serif;
  --f-body:     'Inter', sans-serif;
  --max-w:      1200px;
  --radius:     3px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--f-body); font-weight: 500; }
p  { max-width: 65ch; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

/* === Layout Helpers === */
.container { width: min(var(--max-w), 100% - 3rem); margin-inline: auto; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dk); border-color: var(--sage-dk); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.nav__logo img { height: 42px; }

/* Inline SVG logo */
.site-logo          { height: 40px; width: auto; display: block; overflow: visible; }
.logo-icon          { stroke: var(--sage); fill: none; }
.nav--hero .logo-icon { stroke: rgba(255,255,255,0.9); }
.footer    .logo-icon { stroke: rgba(255,255,255,0.75); }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav--hero .nav__links a { color: rgba(255,255,255,0.9); }
.nav--hero .nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--dark); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  transition: all 0.3s;
}
.nav__hamburger span { background: var(--dark); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-head);
  font-size: 2.8rem;
  color: var(--dark);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--sage); }
.nav__mobile .btn { font-family: var(--f-body); font-size: 0.8rem; margin-top: 1rem; }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,18,16,0.65) 0%,
    rgba(20,18,16,0.2) 55%,
    transparent 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
}
.hero__content .eyebrow { color: rgba(255,255,255,0.65); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; font-weight: 300; }
.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 52ch;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--bg-soft);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 55ch;
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* Intro */
.intro { text-align: center; }
.intro h2 { margin-bottom: 1.25rem; }
.intro p { font-size: 1.05rem; color: var(--mid); margin-inline: auto; }
.divider {
  width: 48px; height: 1px;
  background: var(--sage);
  margin: 1.75rem auto;
}

/* Services preview */
.services-preview { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card {
  background: var(--white);
  padding: 2.75rem;
  border-radius: var(--radius);
}
.service-card svg {
  width: 44px; height: 44px;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card > p { color: var(--mid); font-size: 0.95rem; margin-bottom: 1.75rem; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1.75rem;
}
.tag-list li {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-soft);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  color: var(--mid);
}
.text-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.text-link:hover { color: var(--sage-dk); }

/* Portfolio preview */
.portfolio-strip h2 { margin-bottom: 0.5rem; }
.portfolio-strip .subtitle { color: var(--mid); margin-bottom: 3rem; }
.strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 480px;
}
.strip-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.strip-item:first-child { grid-row: span 2; }
.strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.strip-item:hover img { transform: scale(1.04); }
.strip-more { text-align: center; margin-top: 2.5rem; }

/* CTA section */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-inline: auto; margin-bottom: 2.5rem; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #222;
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer__brand p { font-size: 0.875rem; max-width: 32ch; line-height: 1.7; }
.footer__col h5 {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.65rem; font-size: 0.875rem; }
.footer__col a:hover { color: var(--white); transition: color 0.2s; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s;
  color: rgba(255,255,255,0.55);
}
.social-icon:hover { border-color: var(--sage); color: var(--sage); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-section { padding: 5rem 0; }
.services-section + .services-section { border-top: 1px solid var(--border); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header .lead { font-size: 1.05rem; color: var(--mid); max-width: 60ch; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.item-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.item-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.item-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.item-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.item-card:hover .item-card__img img { transform: scale(1.04); }
.item-card__placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--taupe);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.item-card__body { padding: 1.5rem; }
.item-card__body h4 { margin-bottom: 0.4rem; }
.item-card__body p { font-size: 0.88rem; color: var(--mid); }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--white);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-page { padding: 4rem 0 6rem; }
.portfolio-cat { margin-bottom: 4rem; }
.portfolio-cat__title {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 92vw; object-fit: contain; border-radius: 2px; }
.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 4rem 0 6rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--mid); margin-bottom: 2.5rem; }
.contact-list { list-style: none; margin-bottom: 2.5rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-list li:first-child { border-top: 1px solid var(--border); }
.contact-list__icon { color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.contact-list__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-list a:hover { color: var(--sage); transition: color 0.2s; }
.social-links-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mid);
  transition: color 0.2s;
}
.social-link-pill i { color: var(--sage); }
.social-link-pill:hover { color: var(--sage); }

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.75rem; }

/* ============================================================
   PRIVATE — BOOKING PAGE
   ============================================================ */
.private-nav {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.private-nav .nav__inner { justify-content: center; }
.booking-page { padding: 4rem 0 6rem; }
.booking-intro {
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
}
.booking-intro h2 { margin-bottom: 0.75rem; }
.booking-intro p { color: var(--mid); }
.booking-what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
}
.booking-what__item {
  text-align: center;
  padding: 1.75rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.booking-what__item .num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.booking-what__item h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.booking-what__item p { font-size: 0.85rem; color: var(--mid); }
.booking-embed-wrap {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-embed-wrap iframe { width: 100%; min-height: 600px; border: none; display: block; }
.booking-placeholder { text-align: center; padding: 4rem 2rem; color: var(--mid); }
.booking-placeholder h3 { margin-bottom: 0.5rem; color: var(--dark); }
.area-note {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: #FDF5ED;
  border-left: 3px solid #D4956A;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--mid);
}
.area-note strong { color: var(--dark); }

/* ============================================================
   PRIVATE — QUOTE PAGE
   ============================================================ */
.quote-page { padding: 3rem 0 6rem; }
.quote-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.quote-intro h2 { margin-bottom: 0.75rem; }
.quote-intro p { color: var(--mid); }
.quote-form { max-width: 780px; margin: 0 auto; }

/* Form panels */
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 1.25rem;
}
.form-panel__title {
  font-family: var(--f-head);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.form-panel__desc { font-size: 0.875rem; color: var(--mid); margin-bottom: 2rem; }

/* Form controls */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group .hint { font-size: 0.78rem; color: var(--taupe); margin-top: 0.3rem; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BFB0A3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Window entries */
.windows-list { display: flex; flex-direction: column; gap: 1rem; }
.window-entry {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-soft);
  position: relative;
}
.window-entry__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.window-entry__title { font-weight: 500; font-size: 0.9rem; }
.window-remove {
  background: none;
  border: none;
  color: var(--taupe);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.2s;
  padding: 0;
}
.window-remove:hover { color: #c0392b; }
.add-window-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  color: var(--mid);
  font-size: 0.85rem;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
  transition: all 0.2s;
}
.add-window-btn:hover { border-color: var(--sage); color: var(--sage); }

/* Blind entries */
.blinds-list { display: flex; flex-direction: column; gap: 1rem; }
.blind-entry {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-soft);
  position: relative;
}
.panel-optional {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--taupe);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.18rem 0.55rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Blind category image tiles */
.blind-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.blind-cat-radio { display: none; }
.blind-cat-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: center;
}
.blind-cat-label img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.blind-cat-label span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.25rem;
  color: var(--mid);
  transition: color 0.2s;
}
.blind-cat-radio:checked + .blind-cat-label {
  border-color: var(--sage);
}
.blind-cat-radio:checked + .blind-cat-label span { color: var(--sage-dk); }
.blind-cat-label:hover { border-color: var(--sage); }
.blind-tier-row { margin-top: -0.5rem; }
@media (max-width: 480px) {
  .blind-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Style selector */
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.style-option { display: none; }
.style-label {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.style-label img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.style-label__text {
  padding: 0.6rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mid);
  line-height: 1.4;
}
.style-option:checked + .style-label {
  border-color: var(--sage);
  background: rgba(122, 158, 135, 0.05);
}
.style-option:checked + .style-label .style-label__text { color: var(--sage-dk); }

/* Combo style card — split front/back images */
.style-label--combo { grid-column: span 1; }
.style-label__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
}
.style-label__half { position: relative; overflow: hidden; }
.style-label__half img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.style-label__layer {
  position: absolute;
  bottom: 4px; left: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
}

/* Drop warning */
.drop-warning {
  display: none;
  padding: 0.85rem 1rem;
  background: #FEF9EC;
  border-left: 3px solid #E8B84B;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: #7A5C00;
  margin-top: 0.5rem;
}
.drop-warning.visible { display: block; }

/* Result box */
.estimate-result {
  display: none;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.estimate-result.visible { display: block; }
.estimate-result__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.75rem;
}
.estimate-result__amount {
  font-family: var(--f-head);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.estimate-result__note { opacity: 0.55; font-size: 0.85rem; margin-bottom: 2rem; }
.estimate-result .btn-row { justify-content: center; }

/* Area warning */
.area-excluded {
  display: none;
  padding: 1rem 1.25rem;
  background: #FEF0F0;
  border-left: 3px solid #E55;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: #8B0000;
  margin-top: 0.5rem;
}
.area-excluded.visible { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .booking-what { grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .strip-item:first-child { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
  .strip-item { aspect-ratio: 4/3; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item.tall { aspect-ratio: 4/3; grid-row: span 1; }

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero { padding-bottom: 5rem; }
  .hero__btns { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 9rem 0 3.5rem; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item:first-child { grid-column: span 1; }
}
