/* ==========================================================================
   Clear Sea — v2 components
   Loaded after clearsea.css. Adds the richer sections: bento grid, tabs,
   data tables, subscription plans, flow, segments, coverage, timeline,
   article cards, rating summary and the section dot navigator.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Section dividers
   -------------------------------------------------------------------------- */
.sec-divider {
  position: relative;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
}

.sec-divider svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  opacity: 0.14;
  animation: waveSlide 22s linear infinite;
}

.sec-divider--flip svg {
  animation-direction: reverse;
  opacity: 0.09;
}

/* --------------------------------------------------------------------------
   2. Section dot navigator
   -------------------------------------------------------------------------- */
.dots-nav {
  position: fixed;
  top: 50%;
  right: 1.1rem;
  z-index: 700;
  transform: translateY(-50%);
  display: grid;
  gap: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.dots-nav.is-on {
  opacity: 1;
  visibility: visible;
}

.dots-nav a {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
}

.dots-nav a::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--glass-line);
  background: rgba(42, 3, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.35s var(--ease-out);
}

.dots-nav a:hover {
  background: var(--aqua-300);
  transform: scale(1.35);
}

.dots-nav a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.dots-nav a.is-active {
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
  transform: scale(1.25);
}

@media (max-width: 1400px) {
  .dots-nav { display: none; }
}

/* --------------------------------------------------------------------------
   3. Hero trust elements
   -------------------------------------------------------------------------- */
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem 0.5rem 0.55rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--glass-line);
  border-radius: 99px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.83rem;
  color: var(--text-dim);
}

.rating-chip .faces { display: flex; }

.rating-chip .faces img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink-800);
  margin-right: -9px;
}

.rating-chip .faces img:last-child { margin-right: 0; }
.rating-chip i { color: #ffc94d; font-size: 0.73rem; }
.rating-chip b { color: #fff; font-weight: 600; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--glass-line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.77rem;
  color: var(--text-dim);
}

.trust-row i { color: var(--aqua); font-size: 0.74rem; }

/* --------------------------------------------------------------------------
   4. Bento grid
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}

@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento > .is-wide { grid-column: span 2; }
  .bento > .is-tall { grid-row: span 2; }
}

@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
}

/* Featured card: clean static gradient border (no spinning sweep) */
.g-card.is-feature {
  background: linear-gradient(160deg, rgba(163, 15, 42, 0.4), rgba(42, 3, 8, 0.68));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 40px -12px rgba(255, 255, 255, 0.18);
}

.g-card__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.g-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.89rem;
  color: var(--text-dim);
}

.g-card__list i {
  color: var(--aqua);
  font-size: 0.76rem;
  margin-top: 0.42rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5. Tabs
   -------------------------------------------------------------------------- */
.tabs__wrap {
  display: flex;
  justify-content: center;
}

.tabs {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.35rem;
  margin-bottom: 2.4rem;
  border: 1px solid var(--glass-line);
  border-radius: 99px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: 100%;
  overflow-x: auto;
}

.tab-btn {
  position: relative;
  padding: 0.62rem 1.35rem;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.3s;
  z-index: 1;
}

.tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--indigo), var(--aqua-600));
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-spring);
}

.tab-btn.is-active { color: #fff; }
.tab-btn.is-active::before { opacity: 1; transform: scale(1); }

.tab-panel { display: none; }

.tab-panel.is-active {
  display: block;
  animation: panelIn 0.6s var(--ease-out);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   6. Data tables
   -------------------------------------------------------------------------- */
.table-card {
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow-x: auto;
}

table.data {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

table.data th,
table.data td {
  padding: 0.92rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

table.data thead th {
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-300);
  background: rgba(9, 19, 48, 0.95);
  position: sticky;
  top: 0;
}

table.data tbody tr { transition: background-color 0.3s; }
table.data tbody tr:hover { background: rgba(255, 255, 255, 0.05); }
table.data tbody tr:last-child td { border-bottom: 0; }

table.data td { color: var(--text-dim); }
table.data td:first-child { color: var(--text); font-weight: 500; }
table.data .num { font-variant-numeric: tabular-nums; color: #fff; }
table.data .ok { color: #6ef0b8; }
table.data .no { color: #ff8b93; }
table.data .brandcol { color: #fff; font-weight: 600; }

.table-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   7. Subscription plans
   -------------------------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

@media (min-width: 820px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 2.6vw, 2.2rem);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}

.plan:hover {
  transform: translateY(-7px);
  border-color: var(--glass-line-lit);
}

.plan--featured {
  background: linear-gradient(165deg, rgba(163, 15, 42, 0.45), rgba(42, 3, 8, 0.78));
  border-color: var(--glass-line-lit);
  box-shadow: 0 30px 70px -30px rgba(255, 255, 255, 0.55);
}

@media (min-width: 820px) {
  .plan--featured { transform: scale(1.035); }
  .plan--featured:hover { transform: scale(1.035) translateY(-7px); }
}

.plan__flag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.28rem 0.75rem;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--aqua);
}

.plan__name { font-size: 1.2rem; margin-bottom: 0.35rem; }
.plan__desc { font-size: 0.87rem; color: var(--text-faint); margin-bottom: 1.4rem; }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--glass-line);
}

.plan__price b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.plan__price span { font-size: 0.84rem; color: var(--text-faint); }

.plan ul {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.plan li i {
  color: var(--aqua);
  font-size: 0.78rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.plan li.is-off { color: var(--text-faint); }
.plan li.is-off i { color: var(--text-faint); }
.plan .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   8. How-it-works flow
   -------------------------------------------------------------------------- */
.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

@media (min-width: 640px)  { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .flow { grid-template-columns: repeat(4, 1fr); } }

.flow__item {
  position: relative;
  padding: clamp(1.6rem, 2.4vw, 2rem);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.45s var(--ease-out), border-color 0.4s, background-color 0.4s;
}

.flow__item:hover {
  transform: translateY(-6px);
  border-color: var(--glass-line-lit);
  background: var(--glass-strong);
}

@media (min-width: 1040px) {
  .flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.95rem;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.45);
    border-right: 2px solid rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) rotate(45deg);
    animation: chevPulse 2.4s var(--ease-in-out) infinite;
  }
}

@keyframes chevPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

.flow__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--aqua);
  margin-bottom: 0.9rem;
}

.flow__ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.1rem;
  border-radius: 15px;
  font-size: 1.15rem;
  color: var(--aqua);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(163, 15, 42, 0.3));
  border: 1px solid var(--glass-line);
  transition: transform 0.5s var(--ease-spring);
}

.flow__item:hover .flow__ico { transform: rotate(-8deg) scale(1.07); }
.flow__item h4 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.flow__item p { font-size: 0.89rem; color: var(--text-dim); line-height: 1.68; }

/* --------------------------------------------------------------------------
   9. Segment cards
   -------------------------------------------------------------------------- */
.segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.segment {
  position: relative;
  padding: clamp(1.7rem, 2.5vw, 2.1rem);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.segment::before {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -55%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  transition: transform 0.7s var(--ease-out);
}

.segment:hover { transform: translateY(-6px); border-color: var(--glass-line-lit); }
.segment:hover::before { transform: scale(1.5); }
.segment > * { position: relative; }

.segment .ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  font-size: 1.25rem;
  color: var(--aqua);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(163, 15, 42, 0.32));
  border: 1px solid var(--glass-line);
  transition: transform 0.5s var(--ease-spring);
}

.segment:hover .ico { transform: rotate(-8deg) scale(1.06); }
.segment h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.segment p { font-size: 0.89rem; color: var(--text-dim); line-height: 1.68; margin-bottom: 1rem; }

.segment .meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua-300);
}

/* --------------------------------------------------------------------------
   10. Coverage chips
   -------------------------------------------------------------------------- */
.coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.coverage span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--glass-line);
  border-radius: 99px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.87rem;
  color: var(--text-dim);
  transition: transform 0.4s var(--ease-spring), color 0.35s, border-color 0.35s, background-color 0.35s;
}

.coverage span:hover {
  transform: translateY(-4px);
  color: #fff;
  border-color: var(--glass-line-lit);
  background: var(--glass-strong);
}

.coverage span i { color: var(--aqua); font-size: 0.7rem; }
.coverage span.is-soon { opacity: 0.5; }
.coverage span.is-soon i { color: var(--text-faint); }

/* Distance from the Varanasi hub, shown quietly after the city name */
.coverage span b {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.coverage span:hover b { color: var(--aqua-300); }

/* The hub itself reads as the anchor of the radius */
.coverage span.is-hub {
  color: #fff;
  border-color: var(--glass-line-lit);
  background: linear-gradient(120deg, rgba(64, 56, 160, 0.5), rgba(56, 224, 255, 0.16));
}

.coverage span.is-hub b { color: var(--aqua-300); }

/* Group heading above each chip row */
.coverage__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-300);
}

.coverage__label i { font-size: 0.8rem; }

/* Space between the "delivering now" row and the "coming soon" row */
.coverage + .coverage__label { margin-top: 2.6rem; }

/* --------------------------------------------------------------------------
   11. Milestone timeline
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding-left: 2.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.55rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--indigo), var(--aqua), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s var(--ease-out);
}

.timeline.is-visible::before { transform: scaleY(1); }

.timeline__item {
  position: relative;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--glass-line);
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out), border-color 0.4s;
}

.timeline__item:hover { transform: translateX(6px); border-color: var(--glass-line-lit); }

.timeline__item::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: -1.92rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--aqua);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.timeline__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--aqua);
  margin-bottom: 0.3rem;
}

.timeline__item h4 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.timeline__item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* --------------------------------------------------------------------------
   12. Article cards
   -------------------------------------------------------------------------- */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.post {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.post:hover { transform: translateY(-7px); border-color: var(--glass-line-lit); }

.post__cover {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(140deg, var(--indigo), var(--aqua-600));
  overflow: hidden;
}

.post__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(255, 255, 255, 0.26), transparent 60%);
}

.post__cover i { position: relative; z-index: 1; transition: transform 0.6s var(--ease-spring); }
.post:hover .post__cover i { transform: scale(1.15) rotate(-8deg); }

.post__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post__meta {
  display: flex;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.7rem;
}

.post__meta b { color: var(--aqua-300); font-weight: 600; }
.post h4 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.35; }
.post p { font-size: 0.89rem; color: var(--text-dim); line-height: 1.68; margin-bottom: 1.1rem; }

.post__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--aqua);
}

.post__link i { transition: transform 0.4s var(--ease-out); }
.post:hover .post__link i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   13. Rating summary
   -------------------------------------------------------------------------- */
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  padding: 1.6rem clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: 2.6rem;
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.rating-summary__score {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.rating-summary__score b {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rating-summary__score span { font-size: 0.88rem; color: var(--text-faint); }

.rating-summary__bars {
  display: grid;
  gap: 0.45rem;
  min-width: min(100%, 260px);
  flex: 1;
}

.rating-summary__bar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.77rem;
  color: var(--text-faint);
}

.rating-summary__bar .track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rating-summary__bar .fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--indigo), var(--aqua));
  transition: width 1.3s var(--ease-out);
}

.rating-summary.is-visible .fill { width: var(--w, 0%); }

.rating-summary__stat { text-align: center; }

.rating-summary__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.rating-summary__stat span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   14. Contact extras
   -------------------------------------------------------------------------- */
.info-panel {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.info-panel h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-300);
  margin-bottom: 1.1rem;
}

.hours { display: grid; gap: 0.6rem; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
  font-size: 0.89rem;
  color: var(--text-dim);
}

.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours li b { color: #fff; font-weight: 600; font-family: var(--font-display); }
.hours li .closed { color: #ff8b93; }

/* --------------------------------------------------------------------------
   15. Product meta chips
   -------------------------------------------------------------------------- */
.product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.product__meta span {
  padding: 0.22rem 0.55rem;
  border: 1px solid var(--glass-line);
  border-radius: 7px;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   16. Vertical rhythm
   --------------------------------------------------------------------------
   .section carries padding on BOTH edges, so two stacked sections produced
   2 x --section-y of gap, while a section after a divider produced only one.
   That inconsistency is the "extra spacing". Fix it in one place: whenever a
   section directly follows another block, drop its top padding, so every gap
   is exactly one --section-y. The inline padding overrides that used to patch
   this by hand were removed from the markup so these rules can win.
   -------------------------------------------------------------------------- */
.section + .section,
.sec-divider + .section {
  padding-top: 0;
}

/* A wave divider IS the gap, so it takes the full --section-y and the section
   above it stops adding its own bottom padding. Without this the divider's own
   height stacks on top of a full gap and reads as a hole in the page.
   Browsers without :has() just fall back to the slightly larger gap. */
.sec-divider {
  height: var(--section-y);
}

.section:has(+ .sec-divider) {
  padding-bottom: 0;
}

/* Sections already supply the trailing gap, so the footer must not add another. */
.site-footer {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   20b. Secondary phone line inside a contact card
   -------------------------------------------------------------------------- */
.contact-card .alt {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   21. Form states (server-backed contact form)
   -------------------------------------------------------------------------- */
.field.has-error input,
.field.has-error textarea {
  border-color: rgba(255, 139, 147, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 139, 147, 0.08);
}

.field__error {
  display: block;
  min-height: 1rem;
  margin: 0.3rem 0 0 0.2rem;
  font-size: 0.78rem;
  color: #ff8b93;
}

/* Honeypot — hidden from people, visible to naive bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn.is-busy {
  pointer-events: none;
  opacity: 0.65;
}

.btn.is-busy .btn__spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

.btn__spin { display: none; }

@keyframes btnSpin {
  to { transform: rotate(1turn); }
}

.form-note.is-ok { color: #6ef0b8; }

/* --------------------------------------------------------------------------
   19. Button row
   --------------------------------------------------------------------------
   A neutral wrapper for one or more .btn elements. Deliberately styles only
   the container — `.app-links a` and `.footer__col a` set background/colour on
   descendant anchors, which silently overrides .btn--primary and leaves an
   invisible button. Use this whenever buttons sit inside a panel.
   -------------------------------------------------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}

.btn-row--start { justify-content: flex-start; }

/* --------------------------------------------------------------------------
   20. Footer CTA button
   --------------------------------------------------------------------------
   `.footer__col a` (specificity 0,1,1) out-specifies `.btn--primary` (0,1,0),
   so the footer CTA inherited the footer link colour — near-white text sitting
   on the button's near-white gradient, a contrast ratio of 1.00. The hover rule
   did the same thing and also fought the button's own lift animation.
   Give the button back its own colour, hover colour and motion.
   -------------------------------------------------------------------------- */
.footer__col a.btn--primary,
.footer__col a.btn--primary:hover,
.footer__col a.btn--primary:focus-visible {
  color: var(--ink-900);
  font-weight: 700;
}

/* The shared gradient fades into brand red at its far edge, where dark text
   drops to ~3.5:1. In the footer this is the last call to action on the page,
   so it gets a flat light face instead — uniformly ~18:1, and it pops harder
   against the dark footer than any gradient would. */
.footer__col a.btn--primary {
  background: #ffffff;
  box-shadow:
    0 14px 38px -14px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* The liquid wipe overlay would cover that flat face on hover — retint it. */
.footer__col a.btn--primary::before {
  background: linear-gradient(115deg, #ffffff, var(--aqua-300));
}

.footer__col a.btn--primary:hover {
  box-shadow:
    0 20px 48px -16px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* The footer's generic link hover slides sideways; a button should lift. */
.footer__col a.btn:hover {
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   22. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .rating-summary .fill { width: var(--w, 0%); }
  .timeline::before { transform: scaleY(1); }
  .sec-divider svg { animation: none; }
}
