/*
Theme Name: Last Call Rings
Theme URI: https://example.com/
Author: Queen Motorcars
Description: An appointment-only lab-grown engagement ring storefront for Las Vegas. Text-first contact, a Rings post type with shape/metal taxonomies, budget filtering, local business schema, and a guides section built for local search.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lastcall-rings
Tags: jewelry, local-business, custom-post-type, one-column, custom-colors
*/

/* ============================================================
   TOKENS
   Palette: Fremont Street at 11pm seen through a jeweler's loupe.
   Petrol green-black base, champagne gold for the goods,
   one hot coral reserved exclusively for TIME.
   ============================================================ */
:root {
  --petrol:        #10312F;
  --petrol-deep:   #081C1B;
  --petrol-soft:   #1B4441;
  --frost:         #ECEFEB;
  --paper:         #FFFFFF;
  --ink:           #12201F;
  --ink-soft:      #4A5A58;
  --hairline:      #D3D9D4;
  --champagne:     #D8B26A;
  --champagne-dim: #A8863F;
  --coral:         #F2545B;

  --shell: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-data: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.85rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
  --step-4:  clamp(2.6rem, 1.7rem + 4.2vw, 5.2rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  background: var(--frost);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 96;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.shell { width: min(100% - (var(--gut) * 2), var(--shell)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--coral); color: #fff; padding: .8rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: .5rem; top: .5rem; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* ============================================================
   SIGNATURE: THE MARQUEE STRIP
   A recurring dark band that always carries one fact about time.
   Modeled on the segmented message bar of an old Fremont sign.
   ============================================================ */
.marquee {
  background: var(--petrol-deep);
  color: var(--frost);
  font-family: var(--font-data);
  font-size: var(--step--1);
  letter-spacing: .04em;
}
.marquee__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.5rem;
  padding: .65rem 0;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: .45rem;
  white-space: nowrap;
}
.marquee__item + .marquee__item::before {
  content: "";
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--champagne-dim);
  margin-right: 1rem;
  flex: none;
}
.marquee a { text-decoration: none; border-bottom: 1px solid var(--champagne-dim); }
.marquee a:hover { color: var(--champagne); }

/* the live dot */
.pulse { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--ink-soft); }
.pulse--open { background: #56D6A0; box-shadow: 0 0 0 0 rgba(86,214,160,.6); animation: pulse 2.4s infinite; }
.pulse--closed { background: var(--coral); }
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(86,214,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(86,214,160,0); }
}
.clock--urgent { color: var(--coral); }

/* Mid-page marquee variant */
.marquee--band { margin: 0; }
.marquee--band .marquee__inner { justify-content: center; padding: 1.1rem 0; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.masthead { background: var(--petrol); color: var(--frost); position: relative; z-index: 40; }
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
}
.brand { display: inline-flex; align-items: baseline; gap: .55rem; text-decoration: none; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; color: var(--frost);
  font-variation-settings: "WONK" 1;
}
.brand__tag {
  font-family: var(--font-data); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--champagne);
}
.brand img, .custom-logo-link img { max-height: 48px; width: auto; }
.custom-logo-link { display: inline-block; }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(236,239,235,.35);
  color: var(--frost); padding: .55rem .8rem; border-radius: var(--r-md);
  font-family: var(--font-data); font-size: .75rem; letter-spacing: .1em; cursor: pointer;
}
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; font-size: .93rem; font-weight: 500; padding: .3rem 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav .current-menu-item > a { border-bottom-color: var(--champagne); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.5rem; border-radius: var(--r-md);
  font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--call { background: var(--coral); color: #fff; }
.btn--call:hover { background: #d93f47; }
.btn--gold { background: var(--champagne); color: var(--petrol-deep); }
.btn--gold:hover { background: #e6c684; }
.btn--ghost { border-color: currentColor; background: transparent; }
.btn--ghost:hover { background: rgba(216,178,106,.14); }
.btn--sm { padding: .6rem 1rem; font-size: .85rem; }
.btn--full { width: 100%; }
.btn__num { font-family: var(--font-data); font-size: .95em; }

/* ============================================================
   HERO — the thesis is time, not sparkle
   ============================================================ */
.hero { background: var(--petrol); color: var(--frost); padding: clamp(3rem, 8vw, 6.5rem) 0 0; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow {
  font-family: var(--font-data); font-size: var(--step--1);
  letter-spacing: .16em; text-transform: uppercase; color: var(--champagne);
  margin: 0 0 1.4rem;
}
.hero h1 { margin: 0 0 1.2rem; }
.hero h1 em {
  font-style: normal; color: var(--champagne);
  display: block;
}
.hero__lede { font-size: var(--step-1); color: rgba(236,239,235,.82); max-width: 34ch; margin-bottom: 2rem; line-height: 1.4; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__fig { position: relative; }
.hero__fig img { border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero__fig-empty {
  aspect-ratio: 4/5; border: 1px dashed rgba(216,178,106,.4); border-radius: var(--r-lg);
  display: grid; place-items: center; text-align: center; padding: 2rem;
  font-family: var(--font-data); font-size: .78rem; color: rgba(236,239,235,.5); line-height: 1.7;
}
.hero__price-tag {
  position: absolute; bottom: 1.1rem; left: 1.1rem;
  background: var(--frost); color: var(--ink);
  padding: .7rem 1rem; border-radius: var(--r-md); box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.hero__price-tag span { display: block; font-family: var(--font-data); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.hero__price-tag strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }

/* the ledger — operational promises, set like a spec sheet not a stat block */
.ledger {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(216,178,106,.3);
}
.ledger__cell { padding: 1.4rem 1.2rem 1.6rem; border-right: 1px solid rgba(216,178,106,.16); }
.ledger__cell:last-child { border-right: 0; }
.ledger__val { font-family: var(--font-display); font-size: var(--step-2); font-weight: 700; color: var(--champagne); line-height: 1; display: block; }
.ledger__key { font-family: var(--font-data); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(236,239,235,.62); margin-top: .55rem; display: block; }


/* ============================================================
   HERO SLIDESHOW
   Crossfade rather than a horizontal track: jewelry photographed
   on the same background reads as one object turning, and there
   is no layout thrash to jank the largest paint on the page.
   ============================================================ */
.slider { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.slider__viewport { position: relative; aspect-ratio: 4/5; background: var(--petrol-deep); }

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.slider__slide.is-active { opacity: 1; pointer-events: auto; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; }

/* Single image: none of the machinery, just the picture. */
.slider--single .slider__slide { position: relative; opacity: 1; pointer-events: auto; }
.slider--single .slider__viewport { aspect-ratio: auto; }

/* Per-slide price tag, ring mode only */
.slider__tag {
  position: absolute;
  left: .9rem;
  bottom: .9rem;
  right: .9rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem .9rem;
  background: rgba(8, 28, 27, .82);
  backdrop-filter: blur(6px);
  color: var(--frost);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background-color .16s ease;
}
.slider__tag:hover { background: rgba(8, 28, 27, .94); }
.slider__tag-name {
  font-size: .85rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slider__tag-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--champagne);
  flex: none;
}

/* Arrows */
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 28, 27, .55);
  color: var(--frost);
  cursor: pointer;
  opacity: 0;
  transition: opacity .18s ease, background-color .16s ease;
}
.slider:hover .slider__nav,
.slider__nav:focus-visible { opacity: 1; }
.slider__nav:hover { background: rgba(8, 28, 27, .85); }
.slider__nav--prev { left: .6rem; }
.slider__nav--next { right: .6rem; }

/* Dots */
.slider__dots {
  position: absolute;
  top: .9rem;
  left: .9rem;
  display: flex;
  gap: .35rem;
}
.slider__dot {
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(236, 239, 235, .38);
  cursor: pointer;
  transition: background-color .2s ease;
}
.slider__dot.is-active { background: var(--champagne); }
.slider__dot:hover { background: rgba(236, 239, 235, .7); }

/* Touch devices have no hover, so the arrows would never appear. */
@media (hover: none) {
  .slider__nav { display: none; }
  .slider__dot { height: 4px; width: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider__slide { transition: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.2rem, 8vw, 5.8rem) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--petrol); color: var(--frost); }
.section--dark .section__kicker { color: var(--champagne); }
.section--dark a { color: var(--champagne); }

.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__kicker {
  font-family: var(--font-data); font-size: var(--step--1);
  letter-spacing: .16em; text-transform: uppercase; color: var(--champagne-dim);
  margin: 0 0 .9rem;
}
.section__sub { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.5; }
.section--dark .section__sub { color: rgba(236,239,235,.78); }

/* ============================================================
   ASSURANCES
   ============================================================ */
.assure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; }
.assure__item { background: var(--paper); padding: 1.6rem 1.4rem; }
.assure__item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.assure__item p { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.assure__icon { color: var(--champagne-dim); margin-bottom: .9rem; }
.assure--pair { grid-template-columns: 1fr 1fr; align-self: start; }

/* ============================================================
   RING GRID + CARD
   ============================================================ */
.ring-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(1rem, 2.4vw, 1.8rem); }
.ring-card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease;
}
.ring-card:hover { box-shadow: 0 12px 30px rgba(16,49,47,.13); transform: translateY(-3px); }
.ring-card__media { position: relative; background: var(--frost); aspect-ratio: 1; overflow: hidden; }
.ring-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ring-card__media-empty { width: 100%; height: 100%; display: grid; place-items: center; color: var(--hairline); }
.ring-card__flag {
  position: absolute; top: .7rem; left: .7rem;
  font-family: var(--font-data); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .55rem; border-radius: var(--r-sm); background: var(--petrol-deep); color: var(--frost);
}
.ring-card__flag--today { background: var(--coral); color: #fff; }
.ring-card__body { padding: 1.1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.ring-card__title { font-size: 1.08rem; margin: 0 0 .35rem; }
.ring-card__title a { text-decoration: none; }
.ring-card__title a:hover { color: var(--champagne-dim); }
.ring-card__specs {
  font-family: var(--font-data); font-size: .72rem; color: var(--ink-soft);
  letter-spacing: .02em; margin: 0 0 .9rem; line-height: 1.5;
}
.ring-card__foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; padding-top: .5rem; border-top: 1px solid var(--hairline); }
.ring-card__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.ring-card__was { font-family: var(--font-data); font-size: .75rem; color: var(--ink-soft); text-decoration: line-through; }


/* ============================================================
   REVIEWS
   Set as pull quotes, not as testimonial slabs. The stars are
   small on purpose — the words do the work.
   ============================================================ */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.review-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
}
.section--dark .review-card { background: var(--petrol-soft); border-color: rgba(216,178,106,.22); color: var(--frost); }

.stars { display: inline-flex; gap: 2px; margin-bottom: .9rem; }
.stars__s { fill: var(--hairline); flex: none; }
.stars__on { fill: var(--champagne); }

.review-card__quote {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 30;
}
.review-card__quote p { margin: 0 0 .7rem; }
.review-card__quote p:last-child { margin-bottom: 0; }

.review-card__meta {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.section--dark .review-card__meta { border-top-color: rgba(216,178,106,.22); }
.review-card__name { font-weight: 600; font-size: .92rem; }
.review-card__src {
  font-family: var(--font-data);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.section--dark .review-card__src { color: rgba(236,239,235,.6); }
.review-card__src a { color: var(--champagne-dim); }

@media (max-width: 720px) {
  .reviews { grid-template-columns: 1fr; }
}

/* ============================================================
   BUDGET SHELVES
   ============================================================ */
.shelves { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.shelf {
  display: block; text-decoration: none; padding: 1.6rem 1.3rem;
  border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--paper);
  transition: border-color .16s ease, background-color .16s ease;
}
.shelf:hover { border-color: var(--champagne); background: #FEFCF7; }
.shelf__range { font-family: var(--font-display); font-size: var(--step-1); font-weight: 700; display: block; margin-bottom: .3rem; }
.shelf__note { font-family: var(--font-data); font-size: .72rem; letter-spacing: .05em; color: var(--ink-soft); }

/* ============================================================
   STEPS — a genuine sequence, so numbering earns its place
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; border-top: 2px solid var(--champagne); counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: .9rem; left: 0;
  font-family: var(--font-data); font-size: .8rem; letter-spacing: .1em; color: var(--champagne);
}
.step__time { font-family: var(--font-data); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(236,239,235,.55); display: block; margin-bottom: .5rem; }
.step h3 { margin-bottom: .5rem; }
.step p { margin: 0; color: rgba(236,239,235,.8); font-size: .94rem; }

/* ============================================================
   FILTER BAR (ring archive)
   ============================================================ */
.filters { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 1.1rem; margin-bottom: 2rem; }
.filters__row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: flex-end; }
.field { display: flex; flex-direction: column; gap: .35rem; flex: 1 1 150px; }
.field label { font-family: var(--font-data); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.field select, .field input {
  font: inherit; font-size: .92rem; padding: .62rem .7rem;
  border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--paper); color: var(--ink);
}
.filters__count { font-family: var(--font-data); font-size: .78rem; color: var(--ink-soft); margin: 0 0 1rem; }

/* ============================================================
   SINGLE RING
   ============================================================ */
.ring-single { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.ring-single__media img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 1; object-fit: cover; }
.ring-single__price { font-family: var(--font-display); font-size: var(--step-3); font-weight: 700; margin: .3rem 0 1.2rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .92rem; }
.spec-table th, .spec-table td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--hairline); }
.spec-table th { font-family: var(--font-data); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; width: 40%; }
.spec-table td { font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 68ch; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--hairline); padding: 1.1rem 0; }
.faq summary { cursor: pointer; font-family: var(--font-display); font-size: var(--step-1); font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--champagne-dim); font-family: var(--font-data); flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: .9rem 0 0; color: var(--ink-soft); }

/* ============================================================
   VISIT / FORM
   ============================================================ */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.hours-list { list-style: none; margin: 1.2rem 0 0; padding: 0; font-family: var(--font-data); font-size: .86rem; max-width: 340px; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid rgba(216,178,106,.18); }
.hours-list li[data-today="1"] { color: var(--champagne); font-weight: 500; }

.form-card { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form-card .field { flex: 1 1 100%; margin-bottom: .9rem; }
.form-card .filters__row .field { flex: 1 1 150px; }
.form-card textarea {
  font: inherit; font-size: .92rem; padding: .62rem .7rem; min-height: 96px; resize: vertical;
  border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--paper); color: var(--ink);
}
.form-note { font-size: .78rem; color: var(--ink-soft); margin: .8rem 0 0; }
.hp { position: absolute !important; left: -9999px; }
.notice { border-radius: var(--r-md); padding: .9rem 1rem; margin-bottom: 1.2rem; font-size: .92rem; }
.notice--ok { background: #E4F5EC; color: #14543A; }
.notice--err { background: #FDEAEB; color: #8C1F26; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--petrol-deep); color: rgba(236,239,235,.75); padding: 3.5rem 0 2rem; font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer h4 { font-family: var(--font-data); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--champagne); margin: 0 0 1rem; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--champagne); }
.nav-footer { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 0 0 1.5rem; padding: 0; font-size: .85rem; }
.nav-footer li { margin: 0; }
.footer__legal { border-top: 1px solid rgba(236,239,235,.13); padding-top: 1.5rem; font-family: var(--font-data); font-size: .72rem; color: rgba(236,239,235,.5); line-height: 1.7; }

/* sticky mobile call bar */
.callbar { display: none; }

/* ============================================================
   PAGE / POST CONTENT
   ============================================================ */
.entry { max-width: 68ch; margin-inline: auto; }
.entry h2, .entry h3 { margin-top: 1.8em; }
.entry img { border-radius: var(--r-md); margin: 1.5rem 0; }
.entry ul, .entry ol { padding-left: 1.3rem; }
.entry li { margin-bottom: .4rem; }
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; font-family: var(--font-data); font-size: .85rem; }
.pagination .page-numbers { padding: .55rem .85rem; border: 1px solid var(--hairline); border-radius: var(--r-md); text-decoration: none; background: var(--paper); }
.pagination .current { background: var(--petrol); color: var(--frost); border-color: var(--petrol); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__fig { order: -1; max-width: 380px; }
  .ledger { grid-template-columns: repeat(2, 1fr); }
  .ledger__cell:nth-child(2) { border-right: 0; }
  .ledger__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(216,178,106,.16); }
  .assure { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .ring-single, .visit { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--petrol); flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem var(--gut) 1.5rem; border-top: 1px solid rgba(236,239,235,.13);
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(236,239,235,.1); }
  .nav a { display: block; padding: .9rem 0; }
  .nav .btn { margin-top: 1rem; }

  .assure { grid-template-columns: 1fr; }
  .assure--pair { grid-template-columns: 1fr 1fr; }  /* four small tiles read fine 2-up */
  .footer__grid { grid-template-columns: 1fr; }
  .ring-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: .8rem; }
  .ring-card__body { padding: .8rem; }

  /* on a phone, at 10pm, the only control that matters is the call button */
  .callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--petrol-deep); padding: .6rem; gap: .5rem;
    border-top: 1px solid rgba(216,178,106,.3);
  }
  .callbar .btn { flex: 1; padding: .85rem .6rem; font-size: .9rem; }
  body { padding-bottom: 4.6rem; }
}

@media print {
  .masthead, .marquee, .callbar, .footer, .filters { display: none; }
  body { background: #fff; }
}
