:root {
  /* Bamboo & Brass palette */
  --paper: #f3ede0;          /* aged paper background */
  --paper-warm: #ebe3d2;     /* slightly darker for cards */
  --ink: #3a2e1f;            /* walnut brown text */
  --ink-soft: #6b6457;       /* warm gray for secondary text */
  --rule: #d4cab5;           /* tea-stained dividers */
  --accent: #a07c3e;         /* brass — primary accent + buttons */
  --accent-deep: #846331;    /* darker brass for hover */
  --accent-2: #2f4a36;       /* forest — secondary accent */
  --accent-2-deep: #1f3525;
  --link: #846331;           /* link color = deep brass */

  /* Legacy variable names remapped to new palette so existing rules still work */
  --navy: #2a1f15;           /* deep walnut for utility bar */
  --navy-deep: #1f1612;
  --burgundy: #2f4a36;       /* re-mapped to forest */
  --burgundy-deep: #1f3525;
  --blue: #a07c3e;           /* re-mapped to brass */
  --blue-deep: #846331;
  --blue-shine: #b88f4b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: var(--link); }
a:hover { color: var(--burgundy); }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility bar */
.utility-bar {
  background: var(--navy);
  color: #d8d4c8;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  border-bottom: 1px solid #000;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
}
.utility-tagline { letter-spacing: 0.04em; }
.utility-email {
  color: #cfd8e0;
  text-decoration: none;
}
.utility-email:hover { color: #fff; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 18px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  display: block;
  height: 110px;
  width: auto;
}
.brand-tagline {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* Nav */
.site-nav {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 24px;
}
.nav-inner a {
  display: inline-block;
  padding: 10px 16px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid rgba(58, 46, 31, 0.08);
  transition: color 0.15s ease;
}
.nav-inner a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.4);
}

/* Welcome */
.welcome {
  padding: 32px 0 16px;
}
.welcome h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.welcome-lede {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 720px;
}
.notice {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  background: #fdf6e3;
  border-left: 4px solid var(--burgundy);
  color: var(--burgundy-deep);
  padding: 12px 16px;
  font-size: 14px;
  margin: 8px 0 0;
  border-radius: 2px;
}

/* Product blocks — single-column with full-width marketing tile */
.product-block {
  margin: 32px 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.product-block:first-of-type { border-top: 0; padding-top: 8px; }

.product-tile {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.product-tile:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.product-tile img {
  display: block;
  width: 100%;
  height: auto;
}

/* Plain-text fallback / SEO + accessibility block below each tile */
.product-fallback {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.product-fallback strong { color: var(--ink); }

/* Inquire button — flat, refined */
.inquire-btn {
  display: inline-block;
  padding: 9px 20px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border: 1px solid var(--accent-deep);
  border-radius: 3px;
  letter-spacing: 0.03em;
  margin-left: auto;
  transition: background-color 0.15s ease;
}
.inquire-btn:hover { background: var(--accent-deep); color: #fff; }
.inquire-btn:active { transform: translateY(1px); }

/* Rich product block (live markup version) */
.product-rich {
  --product-img-h: 400px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 36px 36px 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rich-header {
  margin-bottom: 32px;
}
.rich-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.1;
}
.rich-tagline {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  color: var(--ink-soft);
  margin: 10px 0 0;
  text-align: center;
}
.rich-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}
.rich-image {
  position: relative;
}
/* Only the Otter Butter pattern (small tin overlapping the large one) needs
   extra bottom padding so the small tin can extend below the main image. */
.rich-image:has(.rich-img-small) {
  padding-bottom: 40px;
}
.rich-img-large {
  display: block;
  width: 100%;
  height: auto;
}
.rich-img--shadow {
  filter: drop-shadow(3px 5px 7px rgba(0, 0, 0, 0.22));
}

/* Home-page panels: every main product image scales to a single shared height
   (defined as --product-img-h on .product-rich). Width auto-scales by aspect ratio. */
.product-rich .rich-image .rich-img-large {
  height: var(--product-img-h);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

#furling {
  padding-bottom: 20px;
}
#furling .rich-img-large {
  margin: -25px auto 0;
}

#furling .rich-copy,
#reel-kits .rich-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
#furling .rich-prices {
  margin-top: auto;
  margin-bottom: 20px;
}
#reel-kits .rich-prices {
  margin-top: auto;
  margin-bottom: 0;
}
#reel-kits .rich-image--double {
  margin-top: -75px;
}
#reel-kits .rich-description,
#furling .rich-description {
  font-size: 21px;
}

#otter-butter .rich-image {
  align-self: start;
  margin-top: -75px;
}
#otter-butter .rich-img-small {
  width: 50.8%;
  bottom: -10px;
}

/* Books and Art — two-column sub-layout */
.books-art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.books-art-item {
  margin: 0;
  text-align: center;
}
.books-art-subtitle {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: 0;
}
.books-art-img {
  display: block;
  height: var(--product-img-h);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.books-art-cta {
  justify-content: center;
  margin-top: 28px;
}

/* Two side-by-side buttons (e.g. Free STL / High Res STL on the 3D page) */
.detail-stl-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* "Coming soon" placeholder section */
.detail-coming-soon {
  text-align: center;
  padding: 40px 24px 56px;
}
.detail-coming-soon p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .books-art-grid { grid-template-columns: 1fr; gap: 22px; }
}
.rich-img-small {
  position: absolute;
  bottom: 0;
  right: -4%;
  width: 42%;
  height: auto;
}

/* Text-left variant: copy in column 1, image in column 2 */
.product-rich--text-left .rich-body {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

/* Lead + description paragraphs (used for products without a bullet list) */
.rich-lead {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 18px;
}
.rich-lead em {
  font-style: italic;
  color: var(--ink);
}
.rich-description {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
}

/* Double-image stack: two product photos overlapped diagonally
   (round reel top-left, raised-pillar reel bottom-right — same size).
   Sized to the same height as other home-page product images. */
.rich-image--double {
  position: relative;
  width: 100%;
  height: var(--product-img-h);
}
.rich-image--double .rich-img-a,
.rich-image--double .rich-img-b {
  position: absolute;
  height: 55%;
  width: auto;
  filter: drop-shadow(3px 5px 7px rgba(0, 0, 0, 0.22));
}
.rich-image--double .rich-img-a {
  top: 0;
  left: 0;
  z-index: 1;
}
.rich-image--double .rich-img-b {
  bottom: 0;
  right: 0;
  z-index: 2;
}
.feature-list {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.6;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--ink);
}
.feature-list li { margin-bottom: 4px; }

.rich-discount {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  color: var(--accent-2);
  margin: 4px 0 18px;
  letter-spacing: 0.01em;
}
.rich-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.rich-price-label {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.price-btn {
  display: inline-block;
  padding: 12px 26px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border: 1px solid var(--accent-deep);
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background-color 0.15s ease;
}
.price-btn:hover { background: var(--accent-deep); color: #fff; }
.price-btn:active { transform: translateY(1px); }

@media (max-width: 720px) {
  .product-rich {
    --product-img-h: 280px;
    padding: 22px;
  }
  .rich-body,
  .product-rich--text-left .rich-body { grid-template-columns: 1fr; gap: 18px; }
  .rich-image { padding-bottom: 30px; }
  .rich-img-small { width: 34%; }
  .rich-tagline { text-align: left; }
  .feature-list { font-size: 19px; }
  .rich-lead { font-size: 19px; }
  .rich-description { font-size: 17px; }
  .price-btn { font-size: 17px; padding: 10px 18px; }
}

/* Contact */
.contact {
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.contact h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 32px;
  letter-spacing: 0;
}
.contact-lede {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  margin: 0 0 22px;
  color: var(--ink-soft);
  max-width: 560px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.form-row { display: flex; flex-direction: column; gap: 4px; }
.form-row label,
.form-row legend {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0;
}

/* Checkbox group (multi-select replacement for the product dropdown) */
.form-checkboxes {
  border: 0;
  padding: 0;
  margin: 0;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 18px;
  margin-top: 6px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  /* Override the uppercase label styling */
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid #c9c2ae;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #9a9180;
  opacity: 1;
}
.label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #9a9180;
  font-size: 12px;
  margin-left: 4px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.honeypot { position: absolute; left: -10000px; }
.submit-btn {
  align-self: flex-start;
  padding: 12px 30px;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent-deep);
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background-color 0.15s ease;
}
.submit-btn:hover { background: var(--accent-deep); }
.submit-btn:active { transform: translateY(1px); }

/* Detail / info pages */
.detail-main { padding-top: 8px; }

.back-link {
  display: inline-block;
  margin: 14px 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: var(--link);
}
.back-link:hover { color: var(--burgundy); }

.detail {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 40px 40px 48px;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.detail-header { text-align: center; margin-bottom: 28px; }
.detail-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.1;
}
.detail-tagline {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  color: var(--ink-soft);
  margin: 10px 0 0;
}

.detail-hero {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 460px;
}
.detail-hero img { width: 100%; height: auto; display: block; margin: 0 auto; }

/* Two-image variant: large tin on the left, small tin on the right */
.detail-hero--pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
}
.detail-hero--pair .detail-hero-large { width: 62%; }
.detail-hero--pair .detail-hero-small { width: 34%; }

.detail-section {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0 auto 28px;
  max-width: 760px;
}
.detail-section h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: 0;
}
.detail-section p,
.detail-section ul {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
  color: var(--ink);
}
.detail-section ul { padding-left: 22px; }
.detail-section li { margin-bottom: 6px; }
.detail-section em { color: var(--burgundy); font-style: italic; }
.detail-pricing { font-weight: 500; }
.detail-inline-cta { margin: 14px 0 0; }

.detail-section--instructions {
  text-align: center;
}
.detail-instructions-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 4px 8px 18px rgba(60, 40, 20, 0.35);
}

/* Figures (e.g. setup diagrams on the furling machine info page) */
.detail-figure {
  max-width: 540px;
  margin: 24px auto 28px;
  text-align: center;
}
.detail-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 4px 6px 14px rgba(60, 40, 20, 0.25);
  cursor: zoom-in;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.detail-figure img:hover {
  transform: translateY(-1px);
  box-shadow: 5px 8px 18px rgba(60, 40, 20, 0.35);
}
.detail-figcaption {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 10px;
  text-align: center;
  cursor: default;
}

/* Make the entire zoomable figure / cover wrapper show the magnifier cursor,
   not just the <img> itself, so the cursor doesn't flicker on edges. */
.detail-figure,
.plan-cover {
  cursor: zoom-in;
}

/* Two-up grid for reel-style figures on the reel kit page */
.reel-styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 24px auto 8px;
}
.reel-styles-grid .detail-figure {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 720px) {
  .reel-styles-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* "Made in USA" and notice lines on detail pages */
.detail-made-in-usa {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 17px;
  color: var(--burgundy);
  text-align: center;
  margin: 32px auto 24px;
  max-width: 760px;
}
.detail-notice {
  max-width: 760px;
  margin: 0 auto 8px;
}

/* Reel plan cards (image left, copy right, alternating border separator) */
.plan {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.plan:first-of-type { border-top: 0; padding-top: 12px; }

.plan-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 4px 6px 14px rgba(60, 40, 20, 0.25);
  cursor: zoom-in;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.plan-cover img:hover {
  transform: translateY(-1px);
  box-shadow: 5px 8px 18px rgba(60, 40, 20, 0.35);
}

.plan-copy {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
}
.plan-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.2;
}
.plan-copy p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.plan-copy em { font-style: italic; }
.plan-price {
  font-size: 18px;
  margin: 14px 0 16px;
}
.plan-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--burgundy);
  border-radius: 12px;
  text-shadow: none;
}

@media (max-width: 720px) {
  .plan { grid-template-columns: 1fr; gap: 18px; max-width: 100%; }
  .plan-cover { max-width: 140px; margin: 0 auto; }
}

/* Lightbox for full-size image previews */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 9999;
  cursor: zoom-out;
}
.lightbox[aria-hidden="false"] {
  display: flex;
  animation: lightbox-fade 0.18s ease;
}
@keyframes lightbox-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: default;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 30px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Reviews */
.reviews {
  max-width: 760px;
  margin: 40px auto 0;
}
.reviews-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: 0;
}
.review {
  border-top: 1px solid var(--rule);
  padding: 18px 0 14px;
}
.review-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 4px;
}
.review-title {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  flex: 1 1 auto;
  min-width: 0;
}
.review-meta {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.review-body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink);
}

/* Owner reply nested inside a review */
.review-reply {
  margin: 14px 0 0 16px;
  padding: 12px 16px;
  background: var(--paper-warm);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 4px 4px 0;
}
.review-reply-meta {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 6px;
}
.review-reply-body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 6px;
}
.review-reply-body:last-child { margin-bottom: 0; }

/* Star rating */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.star.filled { color: #e9a93a; }
.star.empty  { color: #d8d2c2; }

/* CTA row at bottom of detail page */
.detail-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .detail { padding: 24px 22px 32px; }
  .detail-hero { max-width: 320px; }
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--rule);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.site-footer p { margin: 4px 0; }
.site-footer a { color: var(--link); }

/* Responsive */
@media (max-width: 720px) {
  .header-inner { padding: 14px 16px; }
  .brand { gap: 12px; }
  .brand-logo { height: 80px; }
  .brand-tagline { font-size: 17px; }
  .nav-inner a { padding: 8px 10px; font-size: 12px; }
  .contact { padding: 22px; }
  .utility-tagline { display: none; }
  .product-fallback { flex-direction: column; align-items: flex-start; gap: 10px; }
  .inquire-btn { margin-left: 0; }
}
