:root {
  --forest: #17392e;
  --forest-dark: #102a22;
  --leaf: #547a58;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --gold: #c69a58;
  --ink: #202923;
  --muted: #667168;
  --line: rgba(23, 57, 46, .16);
  --shadow: 0 24px 70px rgba(23, 57, 46, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 100;
  padding: 10px 16px; background: #fff; color: var(--forest);
}
.skip-link:focus { top: 12px; }
.eyebrow {
  margin: 0 0 18px; color: var(--gold); font-size: .74rem; font-weight: 800;
  letter-spacing: .19em; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500; line-height: 1.05; letter-spacing: -.035em;
}
h1 { margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.65rem); }
h2 { margin-bottom: 28px; color: var(--forest); font-size: clamp(2.5rem, 4.5vw, 4.4rem); }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; letter-spacing: .02em; }
.brand-mark {
  display: grid; width: 42px; aspect-ratio: 1; place-items: center;
  border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: .82rem;
}
.main-nav { display: flex; align-items: center; gap: 34px; color: rgba(255,255,255,.82); font-size: .94rem; }
.main-nav a:hover { color: #fff; }
.nav-cta { padding: 11px 20px; border: 1px solid rgba(255,255,255,.5); border-radius: 99px; }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative; min-height: 790px; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 71% 45%, rgba(198,154,88,.14) 0 12%, transparent 40%),
    linear-gradient(120deg, var(--forest-dark), var(--forest));
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background-image: repeating-linear-gradient(90deg, transparent 0 80px, #fff 81px);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.04fr .96fr;
  min-height: 790px; align-items: center; padding-top: 92px;
}
.hero-copy { position: relative; z-index: 2; max-width: 700px; padding: 50px 0; }
.hero-lead { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.75); font-size: 1.15rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 55px; }
.button { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.button-primary { padding: 15px 25px; border-radius: 3px; background: var(--gold); color: var(--forest-dark); }
.button-primary:hover { background: #d8ad6b; }
.button-link { gap: 10px; color: rgba(255,255,255,.9); }
.hero-benefits { display: flex; gap: 28px; padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,.68); font-size: .82rem; }
.hero-benefits li::before { content: "✓"; margin-right: 7px; color: var(--gold); }
.hero-media { position: relative; display: grid; align-items: center; justify-items: center; height: 650px; margin: 0; }
.hero-media img {
  position: relative; z-index: 2; width: min(470px, 85%); aspect-ratio: 1;
  border-radius: 50% 50% 8% 50%; object-fit: cover; image-rendering: auto;
  filter: saturate(.85) contrast(1.04); box-shadow: 0 40px 80px rgba(0,0,0,.28);
}
.sun-shape {
  position: absolute; width: min(500px, 88%); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(198,154,88,.35);
}
.sun-shape::before, .sun-shape::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(198,154,88,.18); border-radius: 50%; }
.sun-shape::after { inset: 18%; }
.hero-media figcaption {
  position: absolute; z-index: 3; right: -5px; bottom: 104px; display: flex; flex-direction: column;
  padding: 15px 20px; border-left: 2px solid var(--gold); background: rgba(16,42,34,.85);
  backdrop-filter: blur(8px); text-transform: uppercase; letter-spacing: .09em;
}
.hero-media figcaption strong { font-size: .76rem; }
.hero-media figcaption span { color: rgba(255,255,255,.6); font-size: .66rem; }

.intro { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 140px); }
.section-heading { position: relative; }
.section-heading::after {
  content: ""; display: block; width: 80px; height: 1px; margin-top: 42px; background: var(--gold);
}
.intro-content { max-width: 650px; color: #515b53; font-size: 1.02rem; }
.intro-content > p { margin-bottom: 24px; }
.dropcap::first-letter {
  float: left; margin: 7px 10px 0 0; color: var(--forest); font-family: Georgia, serif;
  font-size: 4.8rem; line-height: .68;
}
.quote { display: flex; gap: 20px; align-items: flex-start; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.quote-icon { color: var(--gold); font-family: Georgia, serif; font-size: 3.4rem; line-height: .8; }
.quote p { margin: 0; color: var(--forest); font-family: Georgia, serif; font-size: 1.45rem; font-style: italic; }

.types { background: var(--paper); }
.types-head { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: end; }
.types-head > p, .types-description { color: var(--muted); }
.types-description { max-width: 950px; margin: 0 0 50px; }
.broom-table-wrap { margin-bottom: 50px; overflow-x: auto; border: 1px solid var(--line); background: #fffcf2; }
.broom-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.broom-table caption {
  padding: 22px 24px; border-bottom: 1px solid var(--line); color: var(--forest);
  font-family: Georgia, serif; font-size: 1.45rem; text-align: left;
}
.broom-table th, .broom-table td { padding: 16px 24px; border-bottom: 1px solid var(--line); vertical-align: top; }
.broom-table thead th {
  background: var(--forest); color: #fff; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.broom-table tbody th { color: var(--forest); font-family: Georgia, serif; font-size: 1.04rem; font-weight: 500; }
.broom-table tbody td { color: var(--muted); font-size: .9rem; }
.broom-table tbody tr:last-child th, .broom-table tbody tr:last-child td { border-bottom: 0; }
.broom-table tbody tr:hover { background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.broom-card {
  position: relative; min-height: 385px; overflow: hidden; background: #e9e6dd;
  box-shadow: 0 12px 30px rgba(23,57,46,.08);
}
.broom-card img { width: 100%; height: 100%; min-height: 385px; object-fit: cover; transition: transform .6s ease; }
.broom-card:hover img { transform: scale(1.045); }
.broom-card::after {
  content: ""; position: absolute; inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(11,31,25,.88));
}
.card-copy { position: absolute; z-index: 2; bottom: 0; left: 0; width: 100%; padding: 26px; color: #fff; }
.card-copy span { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.card-copy h3 { margin: 5px 0 2px; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.card-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: .82rem; }
.types-action { display: flex; justify-content: center; margin-top: 34px; }
.types-action-button { border-color: var(--forest); background: var(--forest); color: #fff; }
.types-action-button:hover { border-color: var(--forest-dark); background: var(--forest-dark); color: #fff; }

.faq { background: var(--forest); color: #fff; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq h2 { color: #fff; }
.faq-heading > p:last-child { max-width: 350px; color: rgba(255,255,255,.58); }
.accordion details { border-top: 1px solid rgba(255,255,255,.16); }
.accordion details:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 27px 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 1.22rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { position: relative; flex: 0 0 24px; height: 24px; }
.accordion summary i::before, .accordion summary i::after {
  content: ""; position: absolute; top: 50%; left: 3px; width: 18px; height: 1px; background: var(--gold);
}
.accordion summary i::after { transform: rotate(90deg); transition: transform .2s ease; }
.accordion details[open] summary i::after { transform: rotate(0); }
.accordion details p { max-width: 650px; padding: 0 45px 28px 0; margin: 0; color: rgba(255,255,255,.65); }

.mobile-baths { background: var(--paper); }
.mobile-baths-layout {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(45px, 8vw, 100px);
  align-items: center; margin-top: 52px;
}
.mobile-baths-media {
  position: relative; margin: 0; padding: 36px; overflow: hidden;
  background: var(--cream); box-shadow: var(--shadow);
}
.mobile-baths-media::before {
  content: ""; position: absolute; width: 280px; height: 280px; top: -120px; right: -100px;
  border: 1px solid rgba(198,154,88,.35); border-radius: 50%;
}
.mobile-baths-media img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 1; object-fit: cover;
  mix-blend-mode: multiply;
}
.mobile-baths-media figcaption {
  position: relative; z-index: 1; padding-top: 20px; margin-top: 8px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem;
}
.mobile-baths-content > p { margin-bottom: 34px; color: var(--muted); }
.mobile-baths-features { display: grid; gap: 0; margin-bottom: 34px; border-top: 1px solid var(--line); }
.mobile-baths-features div {
  display: grid; grid-template-columns: minmax(150px, .7fr) 1.3fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.mobile-baths-features strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.08rem; font-weight: 500; }
.mobile-baths-features span { color: var(--muted); font-size: .88rem; }
.mobile-baths-link {
  gap: 10px; padding: 14px 22px; border: 1px solid var(--forest); color: var(--forest);
}
.mobile-baths-link:hover { background: var(--forest); color: #fff; }
.types-action .types-action-button { border-color: var(--forest); background: var(--forest); color: #fff; }
.types-action .types-action-button:hover { border-color: var(--forest-dark); background: var(--forest-dark); color: #fff; }

.stores { background: var(--cream); }
.stores-heading { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.stores-heading p:last-child { color: var(--muted); }
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.store-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  padding: 32px; border: 1px solid transparent; background: #fff; box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.store-card:hover { transform: translateY(-4px); border-color: rgba(198,154,88,.5); }
.store-logo { display: grid; width: 74px; aspect-ratio: 1; place-items: center; border-radius: 50%; font-weight: 800; }
.store-logo-bs { background: #eff6f0; color: #fff; font-family: Georgia, serif; font-size: 1.2rem; }
.store-logo-prom { background: #eff6f0; color: #299145; font-size: 1rem; }
.store-info { display: flex; flex-direction: column; }
.store-info strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.5rem; }
.store-info small { color: var(--muted); }
.store-arrow { color: var(--gold); font-size: 1.6rem; }

.site-footer { padding: 42px 0; background: var(--forest-dark); color: rgba(255,255,255,.58); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: .82rem; }
.footer-inner p { margin: 0; }
.brand-light { color: #fff; }

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: grid; gap: 5px; width: 42px; padding: 9px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: #fff; }
  .main-nav {
    position: absolute; top: 86px; left: 20px; right: 20px; display: none;
    align-items: stretch; flex-direction: column; gap: 0; padding: 14px;
    background: var(--forest-dark); box-shadow: 0 20px 40px rgba(0,0,0,.2);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .nav-cta { border: 0; border-radius: 0; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 125px; }
  .hero-copy { padding-bottom: 0; }
  .hero-media { height: 510px; }
  .hero-media img { width: 420px; }
  .hero-media figcaption { right: 7%; bottom: 65px; }
  .split-layout, .types-head, .faq-layout, .mobile-baths-layout { grid-template-columns: 1fr; gap: 45px; }
  .types-head { gap: 10px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .faq-heading > p:last-child { max-width: 600px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-copy { padding-top: 26px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; margin-bottom: 38px; }
  .hero-benefits { flex-direction: column; gap: 7px; }
  .hero-media { height: 400px; }
  .hero-media img { width: 320px; }
  .hero-media figcaption { right: 0; bottom: 28px; }
  .gallery, .store-grid { grid-template-columns: 1fr; }
  .broom-card, .broom-card img { min-height: 340px; }
  .faq-layout { gap: 20px; }
  .accordion summary { font-size: 1.05rem; }
  .store-card { grid-template-columns: auto 1fr; padding: 23px; }
  .store-arrow { display: none; }
  .store-logo { width: 60px; }
  .mobile-baths-media { padding: 22px; }
  .mobile-baths-features div { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


p a
{
	text-decoration:underline;
}
