:root {
  --ink: #141210;
  --ink-soft: #2a2622;
  --paper: #f3efe8;
  --paper-2: #e8e2d8;
  --stone: #7a7168;
  --line: rgba(20, 18, 16, 0.12);
  --amber: #c2410c;
  --amber-deep: #9a3412;
  --safe: env(safe-area-inset-bottom, 0px);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(194, 65, 12, 0.08), transparent 55%),
    linear-gradient(180deg, #efeae2 0%, var(--paper) 40%, #ebe5db 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--amber); }

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 1000;
  background: #fff; color: var(--ink); padding: 0.75rem 1rem;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 239, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 239, 232, 0.96);
  box-shadow: 0 8px 24px rgba(20,18,16,0.08);
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: inherit; min-width: 0;
}
.brand__mark {
  width: 2.5rem; height: 2.5rem; flex: 0 0 auto;
  display: grid; place-items: center;
}
.brand__mark svg { width: 100%; height: 100%; display: block; border-radius: 0.65rem; }
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.brand__may, .hero__may { color: var(--amber); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 0.72rem;
  color: var(--stone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav { margin-left: auto; }
.site-nav .mod-menu,
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 0.25rem 1.1rem; flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav .active > a::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .active > a,
.site-nav a[aria-current="page"] { color: var(--ink); }

.header-cta {
  display: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--amber-deep); color: #fff; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span:not(.visually-hidden) {
  display: block; width: 1.1rem; height: 2px; background: var(--ink);
  transition: transform 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: max(32rem, calc(100svh - var(--header-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.03);
  animation: heroZoom 12s ease-out forwards;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.55) 38%, rgba(8, 7, 6, 0.18) 62%, rgba(8, 7, 6, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.5) 0%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 1.25rem clamp(2.75rem, 8vw, 5.5rem);
  animation: riseIn 0.85s ease both;
}
.hero__eyebrow {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3c7ad;
}
.hero__eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--amber);
  border-radius: 999px;
}
.hero__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 12ch;
}
.hero__tagline {
  margin: 0 0 1rem;
  max-width: 26ch;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
.hero__lead {
  margin: 0 0 1.6rem;
  max-width: 40ch;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.86);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.9rem; padding: 0.7rem 1.2rem;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 1px solid transparent; transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: #ea580c; color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.55); }

/* Main */
.site-main { padding: 0 0 calc(3rem + var(--safe)); }
.site-main__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}
.is-home .site-main__inner { padding-top: 2.5rem; }

/* Hide default article titles when redundant */
.page-header,
.item-page > .page-header,
.com-content-article .page-header,
.is-home .page-header,
.is-inner .page-header { display: none !important; }

.item-page,
.com-content-article { max-width: none; }

/* Content blocks */
.rg-section { margin: 0 0 2.5rem; animation: riseIn 0.7s ease both; }
.rg-section h2,
.rg-kicker + h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.rg-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.5rem;
}
.rg-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }

.rg-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}
.rg-feature {
  padding: 1.15rem 1.2rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.rg-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.rg-feature p { margin: 0; color: var(--stone); font-size: 0.95rem; }

.rg-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.rg-split__media {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px rgba(20,18,16,0.55);
}
.rg-split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.rg-story + .rg-story { margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.rg-story h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.rg-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 58ch;
}
.rg-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}
.rg-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.55rem; height: 0.55rem;
  border-radius: 2px;
  background: var(--amber);
}
.rg-note {
  font-size: 0.9rem;
  color: var(--stone);
  margin: 0 0 1rem;
}
.footer-seo {
  margin-top: 0.65rem !important;
  font-size: 0.82rem;
  max-width: 46ch !important;
}

.rg-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.rg-compare__card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem 1.2rem;
}
.rg-compare__card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.rg-prep {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
}
.rg-prep h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.rg-faq {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.rg-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.15rem 1rem;
}
.rg-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  list-style: none;
}
.rg-faq__item summary::-webkit-details-marker { display: none; }
.rg-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--amber-deep);
  font-weight: 800;
}
.rg-faq__item[open] summary::after { content: "–"; }
.rg-faq__item p {
  margin: 0 0 0.95rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.rg-prices {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.rg-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}
.rg-price span { color: var(--stone); }
.rg-price strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.rg-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.rg-gallery a,
.rg-gallery figure {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ddd;
}
.rg-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.rg-gallery a:hover img { transform: scale(1.04); }

.rg-cta-band {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1.1rem;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.rg-cta-band p { margin: 0; max-width: 42ch; }
.rg-cta-band a.btn-primary { background: var(--amber); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #ebe5db;
  padding: 2rem 1.25rem calc(1.5rem + var(--safe));
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.site-footer p { margin: 0; color: var(--stone); max-width: 36ch; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact a { color: var(--ink); font-weight: 700; text-decoration: none; }
.footer-contact a:hover { color: var(--amber-deep); }
.footer-copy {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--stone);
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@media (max-width: 900px) {
  .rg-grid,
  .rg-gallery,
  .rg-compare { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rg-split { grid-template-columns: 1fr; }
  .rg-split__media { order: -1; max-width: 420px; }
  .header-cta { display: none !important; }
}

@media (max-width: 640px) {
  .rg-compare { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 1rem; right: 1rem; top: calc(100% + 0.35rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 18px 40px rgba(20,18,16,0.12);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav .mod-menu,
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { display: block; padding: 0.75rem 0.65rem; }
  .site-header { position: sticky; }
  .site-header__inner { position: relative; }
}

@media (min-width: 901px) {
  .header-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


.rg-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 2rem;
}
.rg-next__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.rg-next__card:hover {
  border-color: #fdba74;
  transform: translateY(-1px);
  color: inherit;
}
.rg-next__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.rg-next__card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.rg-next__card span:last-child { color: var(--stone); font-size: 0.92rem; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--amber-deep); }
@media (max-width: 640px) {
  .rg-next { grid-template-columns: 1fr; }
}
