/*
  Jewel Day Spa Howick Website
  Luxury palette: black, gold, teal, white
*/

:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --charcoal: #141414;
  --graphite: #1b1b1b;
  --teal: #24d8d2;
  --teal-deep: #087b7c;
  --teal-muted: #76e8e4;
  --gold: #c8a452;
  --gold-light: #e9d28b;
  --gold-dark: #8c6a22;
  --white: #fffaf0;
  --white-soft: #f5f1e8;
  --muted: #b9b3a8;
  --line: rgba(200, 164, 82, 0.24);
  --teal-line: rgba(36, 216, 210, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white-soft);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { color: inherit; }

button, input, textarea { font: inherit; }

::selection { background: rgba(36, 216, 210, 0.35); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus { left: 0; }

.container { width: var(--container); margin: 0 auto; }
.container.narrow { max-width: 860px; }

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(36, 216, 210, 0.09), transparent 35%),
    radial-gradient(circle at bottom right, rgba(200, 164, 82, 0.12), transparent 35%),
    var(--black);
  color: var(--white-soft);
}

.section-light {
  background: linear-gradient(135deg, #fffaf0 0%, #f4efe5 100%);
  color: #171717;
}

.section-muted {
  background: linear-gradient(135deg, #101010 0%, #1a1a1a 100%);
  color: var(--white-soft);
}

.section-luxe {
  background:
    radial-gradient(circle at top left, rgba(36, 216, 210, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(8, 123, 124, 0.22), transparent 38%),
    linear-gradient(135deg, #050505 0%, #071111 50%, #0b2323 100%);
  color: var(--white-soft);
}

.section-luxe .section-header p:not(.eyebrow),
.section-luxe .lead,
.section-luxe .centered p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.68);
}

.section-luxe em { color: var(--gold-light); }
.section-luxe code {
  background: rgba(36, 216, 210, 0.08);
  border-color: rgba(36, 216, 210, 0.22);
  color: var(--teal-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: var(--container);
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  padding-top: 0.55rem;
  padding-bottom: 0.25rem;
}

.brand img {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255, 250, 240, 0.72);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--teal); }

.nav-actions { display: flex; gap: 0.7rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: transform 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 12px 32px rgba(200, 164, 82, 0.18);
}

.btn-outline {
  border-color: rgba(255, 250, 240, 0.35);
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.02);
}

.section-light .btn-outline {
  color: #111;
  border-color: rgba(0, 0, 0, 0.22);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(36, 216, 210, 0.05);
}

.button-row,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.6rem;
}

/* Typography */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 { font-size: clamp(3.4rem, 8vw, 7rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
h3 { font-size: 1.55rem; }

em { color: var(--gold-light); font-style: italic; }
.section-light em { color: var(--gold-dark); }

.section-header { margin-bottom: 3.2rem; }
.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.centered-text { text-align: center; }
.section-header p:not(.eyebrow), .lead {
  color: rgba(255, 250, 240, 0.68);
  font-weight: 300;
  max-width: 680px;
  margin: 1rem auto 0;
}
.section-light .section-header p:not(.eyebrow),
.section-light .lead { color: #5a5148; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(200, 164, 82, 0.12);
  border: 1px solid rgba(200, 164, 82, 0.2);
  padding: 0.1rem 0.25rem;
  border-radius: 6px;
  font-size: 0.85em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.42)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=2200&q=90') center/cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: -1;
}

.hero-content { max-width: 800px; position: relative; z-index: 2; }

.hero h1 { color: #fff; margin-bottom: 1.2rem; max-width: 880px; }
.hero-sub {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.2rem;
}
.hero-note {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.2rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.5);
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}
.sparkle { color: var(--teal); }
.scroll-cue {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  writing-mode: vertical-rl;
  text-decoration: none;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.48);
}
.scroll-cue::after {
  content: "";
  display: inline-block;
  height: 40px;
  width: 1px;
  background: var(--gold);
  margin-top: 0.8rem;
}

.reveal { opacity: 0; animation: fadeUp 0.9s forwards; }
.delay-1 { animation-delay: 0.16s; }
.delay-2 { animation-delay: 0.32s; }
.delay-3 { animation-delay: 0.48s; }
.delay-4 { animation-delay: 0.64s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.announcement-bar {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--gold));
  color: #031111;
  padding: 0.85rem 0;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  text-align: center;
  font-size: 0.92rem;
}
.announcement-inner a { font-weight: 700; text-decoration: underline; }

/* Split section */
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: 720px;
}
.split-image { min-height: 560px; background-size: cover; background-position: center; }
.about-image {
  background-image: linear-gradient(rgba(5,5,5,0.05), rgba(5,5,5,0.2)), url('../images/gallery/jewel-day-spa-welcome-reception.jpeg');
}
.split-content {
  padding: 6rem clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-soft);
}
.split-content p { color: rgba(255, 250, 240, 0.68); font-weight: 300; margin-top: 1.1rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 2.5rem;
  border: 1px solid var(--line);
}
.feature-list article {
  background: rgba(255,255,255,0.03);
  padding: 1.5rem;
}
.feature-list span,
.service-number,
.philosophy-grid span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: rgba(200, 164, 82, 0.45);
  line-height: 1;
}
.feature-list h3 { color: var(--white); font-size: 1.25rem; margin-top: 0.65rem; }
.feature-list p { font-size: 0.9rem; margin-top: 0.55rem; }

/* Services */
.services, .specials, .gallery, .reviews, .branches, .environ-intro, .product-philosophy, .environ-range, .contact-cta { padding: 6.5rem 0; }
.services-grid, .reviews-grid, .branch-grid, .range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.service-card,
.review-card,
.branch-card,
.range-grid article,
.special-card,
.contact-card,
.notice-card,
.product-note,
.philosophy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}
.section-light .service-card,
.section-light .branch-card,
.section-light .special-card,
.section-light .notice-card,
.section-light .range-grid article {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(29, 22, 12, 0.11);
}
.service-card {
  padding: 2.2rem;
  color: #161616;
  overflow: hidden;
  position: relative;
}
.service-card::after,
.special-card::after,
.branch-card::after,
.review-card::after {
  content: "✦";
  position: absolute;
  right: 1.35rem;
  top: 1rem;
  color: rgba(36, 216, 210, 0.38);
  font-size: 1.2rem;
}
.service-card h3 { color: #0f0f0f; margin: 0.9rem 0 0.75rem; }
.service-card p { color: #62584e; font-weight: 300; }
.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}
.service-tags li {
  border: 1px solid rgba(8, 123, 124, 0.18);
  background: rgba(36, 216, 210, 0.08);
  color: #075e5f;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.section-luxe .service-card,
.section-luxe .branch-card,
.section-luxe .special-card,
.section-luxe .notice-card,
.section-luxe .range-grid article {
  background:
    linear-gradient(145deg, rgba(8, 123, 124, 0.22), rgba(255, 255, 255, 0.035));
  color: var(--white-soft);
  box-shadow: var(--shadow);
}

.section-luxe .service-card h3,
.section-luxe .branch-card h3,
.section-luxe .special-card h3,
.section-luxe .notice-card h3 {
  color: var(--white);
}

.section-luxe .service-card p,
.section-luxe .branch-card p,
.section-luxe .special-card p,
.section-luxe .notice-card p,
.section-luxe .special-detail {
  color: rgba(255, 250, 240, 0.68);
}

.section-luxe .special-card .special-kicker,
.section-luxe .service-tags li,
.section-luxe .product-note span,
.section-luxe .notice-card span {
  color: var(--teal-muted);
}

.section-luxe .service-tags li,
.section-luxe .special-note,
.section-luxe .branch-actions a {
  border-color: rgba(36, 216, 210, 0.28);
  background: rgba(36, 216, 210, 0.08);
}

.section-luxe .special-name { color: var(--white-soft); }
.section-luxe .special-price { color: var(--gold-light); }
.section-luxe .special-note { color: rgba(255, 250, 240, 0.78); }
.section-luxe .branch-card strong { color: var(--gold-light); }
.section-luxe .branch-actions a { color: var(--white-soft); }
.section-luxe .branch-actions a:hover { color: var(--teal); border-color: var(--teal); }

/* Environ feature */
.environ-feature { padding: 7rem 0; }
.environ-grid,
.contact-grid,
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.environ-copy p:not(.eyebrow), .contact-grid p, .two-column p {
  color: rgba(255, 250, 240, 0.7);
  font-weight: 300;
  margin-top: 1rem;
}
.environ-card { position: relative; }
.product-image {
  min-height: 520px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.08), rgba(5,5,5,0.34)),
    url('https://www.environskincare.com/za/wp-content/uploads/2024/08/fcy-2024-group.png') center/contain no-repeat,
    #fffaf0;
  box-shadow: var(--shadow);
}
.product-note {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(12px);
}
.product-note span,
.notice-card span {
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}
.product-note p { color: rgba(255,250,240,0.72); margin-top: 0.6rem; font-size: 0.92rem; }

/* Specials */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.special-card {
  position: relative;
  padding: 2rem;
  color: #151515;
  overflow: hidden;
}
.special-card .special-kicker {
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
}
.special-card h3 { margin: 0.55rem 0 0.75rem; color: #0b0b0b; }
.special-card p { color: #5a5148; font-weight: 300; }
.special-items { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.65rem; }
.special-items li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(200, 164, 82, 0.22);
}
.special-items li:last-child { border-bottom: 0; padding-bottom: 0; }
.special-name { font-weight: 500; }
.special-detail { display: block; color: #6e6258; font-size: 0.88rem; font-weight: 300; margin-top: 0.15rem; }
.special-price {
  white-space: nowrap;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
}
.special-note {
  margin-top: 1.1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(8, 123, 124, 0.2);
  background: rgba(36, 216, 210, 0.08);
  color: #064f50;
  border-radius: 16px;
  font-size: 0.9rem;
}
.promo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.promo-gallery figure {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 82, 0.32);
  box-shadow: 0 18px 40px rgba(29, 22, 12, 0.14);
  background: #fff;
}
.promo-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 0.7rem;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #111;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-large { grid-row: span 2; }
.gallery-grid figcaption {
  display: none;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Reviews */
.review-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.review-stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 250, 240, 0.84);
  line-height: 1.65;
}
.review-author { color: var(--teal); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; margin-top: 1.35rem; }
.review-meta { color: rgba(255, 250, 240, 0.42); font-size: 0.82rem; margin-top: 0.25rem; }

/* Branches / Maps */
.branch-card {
  padding: 2rem;
  position: relative;
  color: #171717;
}
.branch-card h3 { color: #0c0c0c; }
.branch-card p { color: #5a5148; margin-top: 0.7rem; }
.branch-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.branch-actions a {
  color: #072b2b;
  border: 1px solid rgba(8, 123, 124, 0.25);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(36, 216, 210, 0.08);
}
.map-panel {
  margin-top: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 82, 0.26);
  background: #0c0c0c;
  color: var(--white-soft);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-copy { padding: 2rem 2rem 0; }
.map-copy h3 { color: var(--white); }
.map-copy p:not(.eyebrow) { color: rgba(255,250,240,0.68); margin-top: 0.5rem; }
.maps-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 1.4rem;
}
.maps-two iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* Contact / Footer */
.contact-cta { padding-bottom: 7.5rem; }
.contact-card { padding: 2rem; background: rgba(255,255,255,0.04); }
.contact-card h3 { color: var(--white); margin-bottom: 1rem; }
.contact-card p { margin-top: 0.75rem; color: rgba(255,250,240,0.7); }
.contact-card a { color: var(--gold-light); text-decoration: none; }
.contact-card a:hover { color: var(--teal); }
.footer {
  padding: 2.4rem 0;
  background: #020202;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-brand img { width: 140px; }
.footer p { color: rgba(255,250,240,0.45); font-size: 0.84rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,250,240,0.56);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
}
.footer-links a:hover { color: var(--teal); }

/* Environ page */
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  isolation: isolate;
}
.environ-hero {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.70) 45%, rgba(5,5,5,0.42)),
    url('https://www.environskincare.com/za/wp-content/uploads/2024/08/fcy-2024-group.png') right center/contain no-repeat,
    #050505;
}
.page-hero-content { max-width: 820px; }
.page-hero h1 { margin-bottom: 1.2rem; }
.environ-intro .lead { font-size: 1.08rem; }
.notice-card {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 2rem;
  text-align: center;
}
.notice-card h3 { color: #111; margin: 0.7rem 0; }
.notice-card p { color: #5a5148; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.philosophy-grid article { padding: 1.7rem; }
.philosophy-grid h3 { color: var(--white); margin-top: 0.7rem; }
.philosophy-grid p { color: rgba(255,250,240,0.65); font-size: 0.92rem; }
.range-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.range-grid article { padding: 1.7rem; color: var(--white-soft); background: rgba(255,255,255,0.04); }
.range-grid h3 { color: var(--gold-light); }
.range-grid p { color: rgba(255,250,240,0.68); margin-top: 0.7rem; font-weight: 300; }


/* Environ official product imagery and logo accents */
.environ-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.35rem 0 1.25rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}
.environ-brand-lockup img,
.notice-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #e66d1e;
}
.environ-brand-lockup span {
  color: rgba(255,250,240,0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}
.environ-product-frame,
.environ-wide-product,
.environ-product-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(36, 216, 210, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(5,5,5,0.92) 0%, rgba(8, 58, 58, 0.94) 100%);
  box-shadow: var(--shadow);
}
.environ-product-frame img,
.environ-wide-product img,
.environ-product-panel img {
  width: 100%;
  object-fit: contain;
  background: transparent;
}

.environ-product-frame img { min-height: 520px; padding: 2rem; }
.environ-wide-product { margin: 2.4rem auto 0; max-width: 860px; }
.environ-wide-product img { max-height: 420px; padding: 2rem; }
.environ-product-panel { padding: 1.4rem; }
.environ-product-panel img { max-height: 560px; }
.environ-product-frame figcaption,
.environ-wide-product figcaption,
.environ-product-panel p {
  padding: 0.85rem 1rem 1rem;
  background: rgba(5,5,5,0.92);
  color: rgba(255,250,240,0.66);
  font-size: 0.78rem;
  text-align: center;
}
.environ-product-frame a,
.environ-wide-product a { color: var(--gold-light); }
.notice-logo { margin: 0 auto 1rem; }
.environ-product-showcase .two-column { align-items: center; }
.branch-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links { gap: 1rem; }
  .services-grid, .reviews-grid, .branch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .range-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: span 1; }
}

@media (max-width: 900px) {
  .navbar { min-height: 84px; }
  .brand img { width: 138px; }
  .menu-toggle { display: flex; }
  .nav-panel {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    padding: 1.4rem 20px 1.6rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .nav-panel { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-actions { width: 100%; }
  .nav-actions .btn { flex: 1; }
  .hero { min-height: 86svh; padding-top: 8rem; }
  .hero-note { border-radius: 22px; align-items: flex-start; }
  .section-split, .environ-grid, .contact-grid, .two-column { grid-template-columns: 1fr; }
  .split-image { min-height: 360px; }
  .split-content { padding: 4rem 20px; }
  .feature-list { grid-template-columns: 1fr; }
  .product-note { position: static; width: 100%; margin-top: 1rem; }
  .maps-two { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 22px; }
  h1 { font-size: clamp(3rem, 17vw, 4.8rem); }
  h2 { font-size: clamp(2.3rem, 12vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-buttons .btn, .button-row .btn { width: 100%; }
  .scroll-cue { display: none; }
  .services, .specials, .gallery, .reviews, .branches, .environ-intro, .product-philosophy, .environ-range, .contact-cta { padding: 4.5rem 0; }
  .services-grid, .reviews-grid, .branch-grid, .specials-grid, .promo-gallery, .gallery-grid, .range-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 260px; }
  .special-items li { flex-direction: column; gap: 0.25rem; }
  .special-price { white-space: normal; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

/* Refined carousel and lightbox presentation */
.carousel {
  position: relative;
  margin-top: 2.4rem;
}

.carousel-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.poster-slide,
.gallery-slide {
  position: relative;
  display: block;
  flex: 0 0 min(78vw, 440px);
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(200, 164, 82, 0.34);
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  outline: none;
}

.poster-slide {
  aspect-ratio: 3 / 4;
  background: #fffaf0;
}

.poster-slide img,
.gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.poster-slide img {
  object-fit: contain;
  background: #fffaf0;
}

.gallery-slide {
  flex-basis: min(82vw, 760px);
  aspect-ratio: 16 / 10;
}

.gallery-slide img { object-fit: cover; }

.poster-slide:hover img,
.gallery-slide:hover img,
.poster-slide:focus-visible img,
.gallery-slide:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 82, 0.42);
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold-light);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(8, 58, 58, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev { left: -1.35rem; }
.carousel-next { right: -1.35rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox.open { display: flex; }
body.lightbox-open { overflow: hidden; }

.lightbox-inner {
  position: relative;
  width: min(1120px, 96vw);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 82, 0.5);
  background: rgba(5, 5, 5, 0.92);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible { color: var(--teal); border-color: var(--teal); }

/* Environ page hero product placement */
.environ-hero {
  background:
    radial-gradient(circle at top right, rgba(36, 216, 210, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(200, 164, 82, 0.18), transparent 36%),
    linear-gradient(135deg, #050505 0%, #071111 52%, #0a2323 100%);
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.environ-hero-product {
  justify-self: center;
  width: min(100%, 540px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(36, 216, 210, 0.13), transparent 42%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(244, 239, 229, 0.94));
  box-shadow: var(--shadow);
}

.environ-hero-product img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  padding: clamp(1rem, 3vw, 2rem);
}

.environ-hero-product figcaption {
  padding: 0.85rem 1rem 1rem;
  text-align: center;
  background: rgba(5, 5, 5, 0.92);
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.78rem;
}

.environ-hero-product a,
.environ-product-panel a { color: var(--gold-light); }

.environ-product-panel img {
  max-height: 620px;
  padding: 1rem;
  object-fit: contain;
}

@media (max-width: 900px) {
  .page-hero-layout { grid-template-columns: 1fr; }
  .environ-hero-product { width: min(100%, 520px); }
  .carousel-prev { left: 0.3rem; }
  .carousel-next { right: 0.3rem; }
}

@media (max-width: 640px) {
  .poster-slide { flex-basis: 86vw; }
  .gallery-slide { flex-basis: 86vw; aspect-ratio: 4 / 5; }
  .carousel-btn { width: 46px; height: 46px; font-size: 1.8rem; }
  .lightbox { padding: 0.8rem; }
  .lightbox-close { top: 0.35rem; right: 0.35rem; }
}


/* Final mobile polish and supplied logo refinements */
.environ-brand-lockup img.environ-logo-hero {
  width: min(150px, 42vw);
  height: auto;
  min-height: 0;
  border-radius: 6px;
  background: transparent;
  object-fit: contain;
  padding: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.environ-hero .environ-brand-lockup {
  align-items: center;
  gap: 1rem;
  border-radius: 18px;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
}

@media (max-width: 900px) {
  body { font-size: 15.5px; }
  .site-header { background: rgba(5, 5, 5, 0.92); }
  .navbar {
    min-height: 78px;
    gap: 1rem;
  }
  .brand {
    padding-top: 0.4rem;
    padding-bottom: 0.1rem;
  }
  .brand img { width: 126px; }
  .nav-panel {
    top: 78px;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
  }
  .nav-links a { font-size: 0.78rem; }
  .nav-actions { gap: 0.8rem; }
  .hero,
  .page-hero {
    min-height: auto;
    padding: 7.6rem 0 4.8rem;
  }
  .hero-content,
  .page-hero-content {
    max-width: 100%;
  }
  .hero-sub {
    max-width: 100%;
    line-height: 1.75;
  }
  .hero-note {
    max-width: 100%;
    border-radius: 20px;
  }
  .announcement-inner {
    gap: 0.45rem;
    line-height: 1.45;
  }
  .services-grid,
  .reviews-grid,
  .branch-grid,
  .range-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .review-card,
  .branch-card,
  .contact-card,
  .notice-card,
  .range-grid article,
  .philosophy-grid article {
    padding: 1.45rem;
  }
  .environ-feature,
  .services,
  .specials,
  .gallery,
  .reviews,
  .branches,
  .environ-intro,
  .product-philosophy,
  .environ-range,
  .contact-cta {
    padding: 4.8rem 0;
  }
  .environ-grid,
  .contact-grid,
  .two-column,
  .section-split,
  .page-hero-layout {
    gap: 2rem;
  }
  .product-note {
    position: static;
    width: 100%;
    margin-top: 1rem;
    border-radius: 22px;
  }
  .environ-product-frame img,
  .environ-wide-product img,
  .environ-product-panel img,
  .environ-hero-product img {
    max-height: 420px;
    min-height: 0;
    padding: 1rem;
  }
  .map-copy { padding: 1.5rem 1.5rem 0; }
  .maps-two iframe { min-height: 320px; }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-brand img { margin: 0 auto; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --radius: 20px;
  }
  .navbar { min-height: 74px; }
  .brand img { width: 112px; }
  .nav-panel { top: 74px; }
  .hero,
  .page-hero {
    padding: 7rem 0 4.2rem;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
    line-height: 0.98;
  }
  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }
  .section-header { margin-bottom: 2.2rem; }
  .button-row,
  .hero-buttons {
    gap: 0.75rem;
    margin-top: 1.35rem;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
    letter-spacing: 0.11em;
    font-size: 0.72rem;
  }
  .nav-actions .btn { width: auto; }
  .hero-note {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.78rem;
  }
  .split-image { min-height: 300px; }
  .split-content { padding: 3.5rem 20px; }
  .feature-list article,
  .service-card,
  .review-card,
  .branch-card,
  .contact-card,
  .notice-card,
  .range-grid article,
  .philosophy-grid article {
    padding: 1.25rem;
  }
  .carousel { margin-top: 1.6rem; }
  .carousel-track {
    gap: 0.85rem;
    padding: 0.35rem 0.05rem 0.85rem;
    scroll-padding-inline: 12px;
  }
  .poster-slide {
    flex-basis: 88vw;
    border-radius: 18px;
  }
  .gallery-slide {
    flex-basis: 88vw;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }
  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }
  .carousel-prev { left: 0.2rem; }
  .carousel-next { right: 0.2rem; }
  .lightbox { padding: 0.75rem; }
  .lightbox-inner { width: 100%; max-height: 90svh; }
  .lightbox img { max-height: 86svh; border-radius: 14px; }
  .lightbox-close {
    top: 0.35rem;
    right: 0.35rem;
    width: 42px;
    height: 42px;
  }
  .environ-hero .environ-brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 18px;
  }
  .environ-brand-lockup img.environ-logo-hero {
    width: min(150px, 58vw);
  }
  .environ-hero-product,
  .environ-product-frame,
  .environ-wide-product,
  .environ-product-panel {
    border-radius: 18px;
  }
  .environ-hero-product img,
  .environ-product-frame img,
  .environ-wide-product img,
  .environ-product-panel img {
    max-height: 340px;
  }
  .environ-product-frame figcaption,
  .environ-wide-product figcaption,
  .environ-product-panel p,
  .environ-hero-product figcaption {
    font-size: 0.72rem;
    line-height: 1.45;
  }
  .maps-two iframe { min-height: 280px; }
  .footer { padding: 2rem 0; }
  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .footer-links a { font-size: 0.64rem; }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1 { font-size: clamp(2.25rem, 14vw, 3.35rem); }
  h2 { font-size: clamp(2rem, 11vw, 2.85rem); }
  .announcement-inner { font-size: 0.84rem; }
  .poster-slide,
  .gallery-slide { flex-basis: 90vw; }
}
