/* ==========================================================================
   Summit Restorations LLC — Design System
   ========================================================================== */

:root {
  --navy: #16232e;
  --navy-2: #1f3040;
  --navy-soft: #2a3f52;
  --gold: #c6963f;
  --gold-light: #dcb676;
  --gold-dark: #a3782c;
  --cream: #faf7f2;
  --cream-2: #f2ece1;
  --stone: #64707c;
  --ink: #1b2530;
  --white: #ffffff;
  --forest: #3f5548;
  --border-soft: #e7e0d3;
  --shadow-sm: 0 2px 10px rgba(22, 35, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 35, 46, 0.10);
  --shadow-lg: 0 20px 50px rgba(22, 35, 46, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 90px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { color: var(--stone); }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
}

.bg-cream { background-color: var(--cream); }
.bg-cream-2 { background-color: var(--cream-2); }
.bg-navy { background-color: var(--navy); }
.text-gold { color: var(--gold-dark); }
.text-stone { color: var(--stone); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.mx-auto { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn { border-radius: 999px; font-weight: 600; padding: 0.75rem 1.7rem; transition: all .25s ease; letter-spacing: 0.01em; }
.btn-lg { padding: 0.95rem 2.1rem; font-size: 1.02rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: none;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(198, 150, 63, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(198, 150, 63, 0.45); color: var(--navy); }

.btn-outline-navy {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-navy:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: #fff; }

.btn-outline-dark-soft {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark-soft:hover { background: var(--navy); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.btn-navy:hover { background: var(--navy-2); color: var(--white); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  background: rgba(22, 35, 46, 0.0);
}
.site-header .navbar { padding: 1.15rem 0; transition: padding .35s ease; }
@media (max-width: 1199.98px) {
  .site-header .navbar > .container { flex-wrap: nowrap; }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .nav-link { padding: 0.5rem 0.55rem !important; font-size: 0.88rem; }
  .site-header .navbar-nav { gap: 0 !important; }
  .site-header .btn-gold.btn-sm { padding: 0.7rem 1.1rem; font-size: 0.88rem; }
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(22, 35, 46, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.site-header.is-scrolled .navbar,
.site-header.solid .navbar { padding: 0.7rem 0; }

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white) !important;
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-mark .brand-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  font-size: 1.15rem;
}
.brand-mark .brand-text { min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.brand-mark small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 420px) {
  .brand-mark { font-size: 1.02rem; }
  .brand-mark .brand-icon { width: 34px; height: 34px; font-size: 1rem; }
  .brand-mark small { display: none; }
}

.site-header .nav-link {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color .2s ease;
  white-space: nowrap;
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--gold-light); }

.site-header .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  margin-top: 0.6rem;
}
.site-header .dropdown-item { border-radius: 6px; padding: 0.55rem 0.9rem; font-size: 0.92rem; font-weight: 500; }
.site-header .dropdown-item:hover { background: var(--cream-2); color: var(--navy); }

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.navbar-toggler { border: none; padding: 0.3rem; box-shadow: none !important; }
.navbar-toggler .bi { color: #fff; font-size: 1.6rem; }

#mobileNav.offcanvas-end {
  z-index: 1080;
  background: var(--navy);
  width: min(320px, 84vw);
}
#mobileNav .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
#mobileNav .offcanvas-body { background: var(--navy); }
#mobileNav .nav-link {
  color: rgba(255,255,255,0.92) !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#mobileNav .nav-link.ps-3 { border-bottom: none; padding: 0.5rem 0 0.5rem 1rem !important; color: rgba(255,255,255,0.75) !important; font-size: 0.92rem; }
#mobileNav span.text-gold { color: var(--gold-light) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 130px;
}
@media (max-width: 767.98px) { .hero { padding-bottom: 100px; } }
@media (max-width: 991.98px) { .hero { min-height: 82vh; } }

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,32,0.75) 0%, rgba(16,24,32,0.55) 45%, rgba(16,24,32,0.92) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,0.88); font-size: 1.2rem; max-width: 620px; margin-bottom: 2.2rem; }

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
@media (max-width: 991.98px) { .page-hero { min-height: 42vh; } }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,32,0.55) 0%, rgba(16,24,32,0.88) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 3.5rem; }
.page-hero .breadcrumb-row { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.page-hero .breadcrumb-row a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb-row a:hover { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 640px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 2rem;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767.98px) { .trust-bar { margin-top: -40px; } }
.trust-bar .stars { color: var(--gold-dark); font-size: 1.05rem; letter-spacing: 2px; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; }
.trust-item .icon-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-size: 1.2rem; flex-shrink: 0; }
.trust-item .num { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--navy); line-height: 1.1; }
.trust-item .lbl { font-size: 0.82rem; color: var(--stone); }

/* ---------- Cards ---------- */
.card-soft {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.card-soft:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .body { padding: 1.6rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-card .icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-top: -3.4rem;
  margin-left: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card h3 { margin-top: 1rem; margin-bottom: 0.6rem; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.1rem; }
.service-card .card-link { font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; }
.service-card .card-link .bi { transition: transform .2s ease; }
.service-card:hover .card-link .bi { transform: translateX(4px); }

/* Why choose us */
.feature-row { display: flex; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--border-soft); }
.feature-row:last-child { border-bottom: none; }
.feature-row .icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream-2); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0;
}
.feature-row h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.feature-row p { font-size: 0.93rem; margin-bottom: 0; }

/* Before / After */
.transform-panel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 340px; }
.transform-panel img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.transform-panel .tag {
  position: absolute; top: 1.1rem; left: 1.1rem;
  background: rgba(16,24,32,0.85);
  color: #fff; padding: 0.4rem 0.9rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.transform-panel.after .tag { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--navy); }
.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  font-size: 1.4rem; flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

/* Process */
.process-step { position: relative; padding-left: 4.2rem; margin-bottom: 2.2rem; }
.process-step:last-child { margin-bottom: 0; }
.process-step .step-num {
  position: absolute; left: 0; top: 0;
  width: 3.1rem; height: 3.1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.94rem; margin-bottom: 0; }
.process-line {
  position: absolute; left: 1.55rem; top: 3.1rem; bottom: -2.2rem;
  width: 2px; background: var(--border-soft);
}
.process-step:last-child .process-line { display: none; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius);
  padding: 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,150,63,0.25), transparent 70%);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.8); }
@media (max-width: 767.98px) { .cta-banner { padding: 2.4rem 1.6rem; text-align: center; } }

/* Gallery */
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(16,24,32,0.85), transparent);
  color: #fff; padding: 1.4rem 1.1rem 0.9rem;
  font-size: 0.85rem; font-weight: 600;
}

/* Project cards */
.project-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; height: 100%; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card .img-wrap { height: 230px; overflow: hidden; position: relative; }
.project-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .img-wrap img { transform: scale(1.08); }
.project-card .demo-badge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: rgba(16,24,32,0.82); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.project-card .cat-tag { color: var(--gold-dark); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }
.project-card .body { padding: 1.3rem 1.4rem 1.5rem; }
.project-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.project-card p { font-size: 0.9rem; margin-bottom: 0; }

.disclaimer-note {
  background: var(--cream-2);
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--stone);
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.disclaimer-note .bi { color: var(--gold-dark); font-size: 1.1rem; margin-top: 0.1rem; }

/* Reviews */
.rating-hero {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.6rem;
  text-align: center;
}
.rating-hero .big-num { font-family: var(--font-head); font-size: 3.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.rating-hero .stars { color: var(--gold-dark); font-size: 1.5rem; letter-spacing: 3px; margin: 0.6rem 0; }
.appreciate-card { text-align: center; padding: 1.8rem 1.2rem; }
.appreciate-card .icon-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--cream-2); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1rem; }
.appreciate-card h3 { font-size: 1.05rem; }
.appreciate-card p { font-size: 0.9rem; }

/* Service areas */
.area-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); height: 100%;
  border-top: 3px solid var(--gold-dark);
  transition: transform .3s ease, box-shadow .3s ease;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.area-card .icon-circle { width: 50px; height: 50px; border-radius: 12px; background: var(--cream-2); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.area-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.area-card p { font-size: 0.9rem; margin-bottom: 0; }

/* Forms */
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 2.6rem; }
@media (max-width: 767.98px) { .form-card { padding: 1.6rem; } }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  font-size: 0.95rem;
  background-color: #fdfcfa;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 0.2rem rgba(198, 150, 63, 0.18);
  background-color: #fff;
}
textarea.form-control { min-height: 130px; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2.4rem; height: 100%; }
.contact-info-card h3 { color: #fff; }
.contact-info-card .info-row { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-info-card .icon-circle { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; }
.contact-info-card a { color: rgba(255,255,255,0.9); }
.contact-info-card a:hover { color: var(--gold-light); }
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 0; width: 100%; height: 380px; }

.form-success {
  display: none;
  background: #eef6ee;
  border: 1px solid #bfe0bf;
  color: #2d5a2d;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.6rem;
}
.form-success.show { display: flex; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding-top: 4.5rem; }
.site-footer h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em; margin-bottom: 1.3rem; }
.site-footer a { color: rgba(255,255,255,0.68); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.site-footer .brand-mark { color: #fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding: 1.6rem 0; font-size: 0.82rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 0.5rem; transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold-dark); color: var(--navy); }

/* Sticky mobile call bar */
.sticky-mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1060;
  display: none;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 0.65rem 0.8rem;
  gap: 0.6rem;
}
.sticky-mobile-bar a { flex: 1; text-align: center; }
@media (max-width: 767.98px) {
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* Scroll reveal — hidden only once JS confirms it can reveal them again,
   so content stays visible by default if JS fails to load or run. */
html.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1 !important; transform: translateY(0) !important; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Misc */
.divider-gold { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 2px; }
.ratio-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.ratio-photo img { width: 100%; height: 100%; object-fit: cover; }
.badge-soft { background: var(--cream-2); color: var(--navy); font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.82rem; }
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.85rem; font-size: 0.98rem; color: var(--ink); }
.list-check li .bi { color: var(--gold-dark); font-size: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--navy); padding: 0.8rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.back-to-top {
  position: fixed; right: 1.4rem; bottom: 5.5rem; z-index: 1055;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 767.98px) { .back-to-top { bottom: 5.6rem; right: 1rem; } }
