/* ── RESIDENCE SECTION ───────────────────────────── */
.residence-section{
  padding: 100px 80px;
  background: #FAF7F2;
}

.residence-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.residence-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* eyebrow label */
.residence-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.residence-eyebrow::before{
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.residence-eyebrow::after{
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.residence-title{
  margin: 0;
  max-width: 680px;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #171513;
}

.residence-subtitle{
  margin: 14px 0 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.residence-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 1.5px solid var(--btn);
  background: var(--btn);
  color: #FAF7F2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.residence-cta:hover{
  background: #2a2622;
  border-color: #2a2622;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,47,42,0.20);
}

/* 2-col grid */
.residence-grid{
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 40px 48px;
}

.residence-card{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* distinctive rounded corners on diagonals */
.residence-img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 80px 0 80px 0;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.residence-card:hover .residence-img{
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(58,47,42,0.14);
}

.residence-cardtext{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  max-width: 460px;
}

.residence-cardtitle{
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #171513;
}

.residence-cardbody{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── STAY BANNER ─────────────────────────────────── */
.stay-banner{
  position: relative;
  padding: 96px 80px 120px;
  overflow: hidden;
}

.stay-banner__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* stronger dark overlay on left for legibility */
.stay-banner__bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(42,34,30,0.93) 0px,
    rgba(42,34,30,0.88) 160px,
    rgba(42,34,30,0.20) 68%,
    rgba(42,34,30,0.00) 100%
  );
}

/* warm grain texture overlay */
.stay-banner__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stay-banner__content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

/* eyebrow */
.stay-banner__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.stay-banner__eyebrow::before{
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.stay-banner__title{
  margin: 0;
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #FAF7F2;
}

.stay-banner__subtext{
  margin: 22px 0 0 0;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(250,247,242,0.72);
  max-width: 480px;
}

.stay-banner__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 13px 24px;
  background: #FFFFFF;
  color: var(--btn);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  width: fit-content;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.stay-banner__cta:hover{
  background: #FAF7F2;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px){
  .residence-section{ padding: 80px 44px; }
  .stay-banner{ padding: 80px 44px; padding-bottom: 100px; }
}

@media (max-width: 900px){
  .residence-section{ padding: 72px 28px; }
  .residence-grid{ grid-template-columns: 1fr; gap: 36px; }
  .residence-img{ height: 300px; }

  .stay-banner{ padding: 72px 28px 100px; }
  .stay-banner__title{ font-size: 40px; }
}

@media (max-width: 600px){
  .residence-section{ padding: 60px 20px; }
  .residence-title{ font-size: 26px; }
  .residence-subtitle{ font-size: 15px; }
  .residence-grid{ margin-top: 44px; gap: 28px; }
  .residence-img{ height: 260px; border-radius: 56px 0 56px 0; }
  .residence-cardtitle{ font-size: 18px; }

  .stay-banner{ padding: 60px 20px 84px; }
  .stay-banner__title{ font-size: 30px; }
  .stay-banner__subtext{ margin-top: 16px; font-size: 15px; }
}

@media (max-width: 480px){
  .residence-section{ padding: 52px 16px; }
  .residence-cardbody{ font-size: 14px; }
  .stay-banner{ padding: 52px 16px 76px; }
  .stay-banner__title{ font-size: 27px; }
}

/* ═══════════════════════════════════════════════════
   OUTDOOR / AMENITIES PHOTO SECTION
═══════════════════════════════════════════════════ */
.outdoor-section{
  padding: 100px 80px;
  background: #F2EDE5;
}

.outdoor-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.outdoor-head{
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.outdoor-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.outdoor-eyebrow::before,
.outdoor-eyebrow::after{
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.outdoor-title{
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}

.outdoor-subtitle{
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--muted);
}

/* mosaic: big left + 2 stacked right */
.outdoor-mosaic{
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 16px;
  height: 480px;
}

.outdoor-mosaic__main{
  border-radius: 18px;
  overflow: hidden;
}

.outdoor-mosaic__side{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.outdoor-mosaic__side > div,
.outdoor-mosaic__side > *:first-child:not(.outdoor-img),
.outdoor-mosaic__side .outdoor-img:first-child{
  border-radius: 18px 18px 6px 6px;
}

.outdoor-mosaic__side .outdoor-img:last-child{
  border-radius: 6px 6px 18px 18px;
}

.outdoor-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.5s ease;
}

.outdoor-mosaic__main:hover .outdoor-img,
.outdoor-mosaic__side > *:hover .outdoor-img{
  transform: scale(1.03);
}

/* wrap each side image for overflow:hidden */
.outdoor-mosaic__side > img.outdoor-img{
  border-radius: 6px;
  transition: transform 0.5s ease;
}

.outdoor-mosaic__side > img.outdoor-img:first-child{
  border-radius: 18px 18px 6px 6px;
}

.outdoor-mosaic__side > img.outdoor-img:last-child{
  border-radius: 6px 6px 18px 18px;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════ */
.about-section{
  padding: 100px 80px;
  background: #FAF7F2;
}

.about-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.about-eyebrow::before{
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.about-title{
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.13;
  color: var(--text);
}

.about-body{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.about-body:last-of-type{
  margin-bottom: 28px;
}

.about-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--btn);
  text-decoration: none;
  border-bottom: 1.5px solid var(--btn);
  padding-bottom: 2px;
  transition: opacity 0.2s, gap 0.2s;
}

.about-cta::after{
  content: '→';
  transition: transform 0.2s;
}

.about-cta:hover{
  opacity: 0.72;
}

.about-cta:hover::after{
  transform: translateX(3px);
}

.about-photo{
  border-radius: 24px 6px 24px 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo:hover .about-img{
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════
   CONCIERGE SERVICES SECTION
═══════════════════════════════════════════════════ */
.services-section{
  padding: 100px 80px;
  background: #F2EDE5;
}

.services-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.services-head{
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.services-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.services-eyebrow::before,
.services-eyebrow::after{
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.services-title{
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}

.services-subtitle{
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* 3-col card grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover{
  box-shadow: 0 16px 40px rgba(58,47,42,0.12);
  transform: translateY(-4px);
}

.service-card__img-wrap{
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img{
  transform: scale(1.06);
}

.service-card__tag{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--cream-border);
}

.service-card__body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card__icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.service-card__title{
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.25;
}

.service-card__desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.services-note{
  margin: 40px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.01em;
  opacity: 0.8;
}

/* ── RESPONSIVE — new sections ──────────────────── */
@media (max-width: 1024px){
  .outdoor-section{ padding: 80px 44px; }
  .about-section{ padding: 80px 44px; }
  .services-section{ padding: 80px 44px; }
}

@media (max-width: 900px){
  .outdoor-section{ padding: 72px 28px; }
  .outdoor-mosaic{ height: 380px; }

  .about-section{ padding: 72px 28px; }
  .about-wrap{ grid-template-columns: 1fr; gap: 44px; }
  .about-photo{ aspect-ratio: 16/9; border-radius: 16px 4px 16px 4px; }
  .about-title{ font-size: 30px; }

  .services-section{ padding: 72px 28px; }
  .services-grid{ grid-template-columns: 1fr; gap: 20px; }
  .service-card__img-wrap{ height: 260px; }
}

@media (max-width: 600px){
  .outdoor-section{ padding: 60px 20px; }
  .outdoor-mosaic{
    grid-template-columns: 1fr;
    grid-template-rows: 280px 160px;
    height: auto;
  }
  .outdoor-mosaic__main{ border-radius: 14px; }
  .outdoor-mosaic__side{
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    height: 160px;
  }
  .outdoor-mosaic__side > img.outdoor-img:first-child{ border-radius: 14px 4px 4px 14px; }
  .outdoor-mosaic__side > img.outdoor-img:last-child { border-radius: 4px 14px 14px 4px; }
  .outdoor-title{ font-size: 26px; }

  .about-section{ padding: 60px 20px; }
  .about-title{ font-size: 26px; }

  .services-section{ padding: 60px 20px; }
  .services-title{ font-size: 26px; }
  .service-card__img-wrap{ height: 220px; }
}

@media (max-width: 480px){
  .outdoor-section{ padding: 52px 16px; }
  .about-section{ padding: 52px 16px; }
  .services-section{ padding: 52px 16px; }
  .about-title{ font-size: 24px; }
  .services-title{ font-size: 24px; }
}

/* ─────────────────────────────────────────────────────
   HOUSE STANDARDS — tabbed policy section
   Append to home.css
   ───────────────────────────────────────────────────── */

.standards {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--cream-border);
}

.standards__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────── */
.standards__head {
  margin-bottom: 40px;
}

.standards__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.standards__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.standards__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}

/* ── Tab strip ──────────────────────────────────────── */
.standards__tabs {
  display: flex;
  border-bottom: 1px solid var(--cream-border);
  margin-bottom: 0;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.standards__tabs::-webkit-scrollbar { display: none; }

/* hide the radios */
.stab-radio { display: none; }

.stab {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px 16px;
  cursor: pointer;
  position: relative;
  color: var(--muted);
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;   /* sit on top of border-bottom of parent */
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}

.stab:hover {
  color: var(--text);
}

.stab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.18s;
}

.stab__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
}

/* Active state — driven by checked radio sibling */
#stab-checkin:checked  ~ .standards__tabs label[for="stab-checkin"],
#stab-families:checked ~ .standards__tabs label[for="stab-families"],
#stab-pets:checked     ~ .standards__tabs label[for="stab-pets"],
#stab-smoking:checked  ~ .standards__tabs label[for="stab-smoking"],
#stab-wifi:checked     ~ .standards__tabs label[for="stab-wifi"] {
  color: var(--text);
  border-bottom-color: var(--gold-deep);
}

#stab-checkin:checked  ~ .standards__tabs label[for="stab-checkin"]  .stab__icon,
#stab-families:checked ~ .standards__tabs label[for="stab-families"] .stab__icon,
#stab-pets:checked     ~ .standards__tabs label[for="stab-pets"]     .stab__icon,
#stab-smoking:checked  ~ .standards__tabs label[for="stab-smoking"]  .stab__icon,
#stab-wifi:checked     ~ .standards__tabs label[for="stab-wifi"]     .stab__icon {
  background: var(--gold-pale);
  color: var(--gold-deep);
}

/* ── Panels ─────────────────────────────────────────── */
.standards__panels {
  border: 1px solid var(--cream-border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 24px;
}

/* All panels hidden by default */
.standards__panel {
  display: none;
}

/* Show active panel */
#stab-checkin:checked  ~ .standards__panels #panel-checkin,
#stab-families:checked ~ .standards__panels #panel-families,
#stab-pets:checked     ~ .standards__panels #panel-pets,
#stab-smoking:checked  ~ .standards__panels #panel-smoking,
#stab-wifi:checked     ~ .standards__panels #panel-wifi {
  display: block;
  animation: panelIn 0.2s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.standards__panel-inner {
  padding: 28px 32px;
}

.standards__text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Check-in/out times display */
.standards__times {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.standards__time-item {
  padding: 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.standards__time-sep {
  width: 1px;
  align-self: stretch;
  background: var(--cream-border);
}

.standards__time-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.standards__time-val {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Footer link ────────────────────────────────────── */
.standards__footer {
  display: flex;
  justify-content: center;
}

.standards__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 9px 16px;
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  background: transparent;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}

.standards__link:hover {
  border-color: var(--gold);
  color: var(--text);
  background: var(--gold-pale);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .standards { padding: 60px var(--pad-x); }

  .stab {
    min-width: 90px;
    padding: 14px 10px 12px;
    gap: 7px;
  }

  .stab__icon { width: 38px; height: 38px; border-radius: 10px; }
  .stab__icon svg { width: 22px; height: 22px; }

  .stab__label { font-size: 11px; }

  .standards__panel-inner { padding: 22px 20px; }
  .standards__times { width: 100%; }
  .standards__time-item { padding: 12px 18px; }
  .standards__time-val { font-size: 15px; }
}

@media (max-width: 480px) {
  .standards { padding: 48px var(--pad-x); }

  .stab {
    min-width: 72px;
    padding: 12px 6px 10px;
    gap: 6px;
  }

  .stab__icon { width: 34px; height: 34px; border-radius: 8px; }
  .stab__icon svg { width: 20px; height: 20px; }

  .stab__label { font-size: 10px; white-space: normal; text-align: center; }

  .standards__panel-inner { padding: 18px 16px; }
  .standards__text { font-size: 13.5px; }
  .standards__time-item { padding: 10px 14px; }
  .standards__time-val { font-size: 14px; }
}

/* ─────────────────────────────────────────────────────
   HOUSE STANDARDS — append to /css/home.css
   ───────────────────────────────────────────────────── */

.hs {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--cream-border);
}

.hs__inner {
  max-width: 860px;
  margin: 0 auto;
}

.hs__head { margin-bottom: 36px; }

.hs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.hs__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hs__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}

/* ── Tab strip ─────────────────────────────────────── */
.hs__tabs {
  display: flex;
  border-bottom: 1px solid var(--cream-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hs__tabs::-webkit-scrollbar { display: none; }

.hs__tab {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 10px 14px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.16s;
  user-select: none;
}

.hs__tab:hover { color: var(--text); }

.hs__tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  flex-shrink: 0;
}

.hs__tab-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.hs__tab--active {
  color: var(--text);
  border-bottom-color: var(--gold-deep);
}

.hs__tab--active .hs__tab-icon {
  background: var(--gold-pale);
  color: var(--gold-deep);
}

/* ── Panels ────────────────────────────────────────── */
.hs__panels {
  border: 1px solid var(--cream-border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  background: #fff;
  overflow: hidden;
}

.hs__panel {
  padding: 28px 32px;
  animation: hsPanelIn 0.2s ease;
}

@keyframes hsPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hs__panel-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  letter-spacing: -0.01em;
  margin: 0;
}

.hs__times {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 18px;
}

.hs__time {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 28px;
}

.hs__time-sep {
  width: 1px;
  background: var(--cream-border);
  align-self: stretch;
  flex-shrink: 0;
}

.hs__time-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.hs__time-val {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Footer link ───────────────────────────────────── */
.hs__footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hs__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 9px 18px;
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hs__link:hover {
  border-color: var(--gold);
  color: var(--text);
  background: var(--gold-pale);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .hs { padding: 60px var(--pad-x); }
  .hs__tab { min-width: 88px; padding: 14px 8px 12px; gap: 7px; }
  .hs__tab-icon { width: 38px; height: 38px; border-radius: 9px; }
  .hs__tab-icon svg { width: 22px; height: 22px; }
  .hs__tab-label { font-size: 11px; }
  .hs__panel { padding: 22px 20px; }
  .hs__times { width: 100%; }
  .hs__time { padding: 12px 18px; }
  .hs__time-val { font-size: 15px; }
}

@media (max-width: 480px) {
  .hs { padding: 48px var(--pad-x); }
  .hs__tab { min-width: 64px; padding: 12px 4px 10px; gap: 5px; }
  .hs__tab-icon { width: 32px; height: 32px; border-radius: 8px; }
  .hs__tab-icon svg { width: 18px; height: 18px; }
  .hs__tab-label { font-size: 10px; white-space: normal; }
  .hs__panel { padding: 18px 16px; }
  .hs__panel-text { font-size: 13.5px; }
  .hs__time { padding: 10px 14px; }
  .hs__time-val { font-size: 14px; }
}