/* =========================================================
   Shiva Hotels — Yogi-MGT-inspired single-page layout
   with navy + chrome palette drawn from the brand logo.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #fafbfc;
  --bg-alt: #f1f4f8;
  --ink: #0a1929;
  --ink-soft: #2a3a52;
  --muted: #8693a6;
  --line: #dde3eb;
  --paper: #ffffff;
  --navy: #0a1929;
  --navy-deep: #050f1c;
  --navy-soft: #14233b;
  --chrome: #a6b3c4;
  --chrome-light: #dde4ed;
  --chrome-dark: #6e7d92;
  --accent: #2d4a73;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max: 1240px;
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.04), 0 1px 3px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(10, 25, 41, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 25, 41, 0.28);
  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Yogi-style mixed-weight headings — bold start, light continuation */
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
.bold {
  font-weight: 900;
  color: var(--navy);
}
p { margin-bottom: 1em; color: var(--ink-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--chrome-dark);
  margin-bottom: 1.2rem;
  display: inline-block;
  position: relative;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--chrome-dark);
  margin-bottom: 1.2rem;
}
.eyebrow-line::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--chrome-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all var(--transition);
  background: rgba(10, 25, 41, 0.0);
}
.site-header.scrolled {
  background: rgba(10, 25, 41, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.site-header.solid {
  background: rgba(10, 25, 41, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.brand-logo {
  width: 54px; height: 54px;
  flex-shrink: 0;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--chrome);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--chrome-light);
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--chrome-light), var(--chrome));
  color: var(--navy) !important;
  border-radius: 4px;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(166, 179, 196, 0.5);
}
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; color: #fff; font-size: 1.4rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(10,25,41,0.85) 0%, rgba(10,25,41,0.6) 50%, rgba(10,25,41,0.92) 100%);
}
.hero-content {
  max-width: 880px;
  padding: 160px 0 80px;
  text-align: center;
  margin: 0 auto;
}
.hero .eyebrow {
  color: var(--chrome-light);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero .eyebrow::before, .hero .eyebrow::after {
  content: "";
  width: 38px; height: 1px;
  background: var(--chrome);
}
.hero h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}
.hero h1 .bold { color: #fff; }
.hero .subhead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.hero .tagline {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 600;
  color: var(--chrome-light);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin: 2rem 0;
  position: relative;
  display: inline-block;
  padding: 0 50px;
}
.hero .tagline::before, .hero .tagline::after {
  content: "";
  position: absolute;
  top: 50%; width: 36px; height: 1px;
  background: var(--chrome);
}
.hero .tagline::before { left: 0; }
.hero .tagline::after { right: 0; }
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, var(--chrome-light), var(--chrome));
  color: var(--navy);
  border-color: var(--chrome);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(166, 179, 196, 0.6);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--chrome-light);
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
section.tight { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
section.dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }
section.dark .bold { color: #fff; }
section.dark p { color: rgba(255, 255, 255, 0.7); }
section.dark .eyebrow,
section.dark .eyebrow-line { color: var(--chrome-light); }
section.dark .eyebrow-line::before { background: var(--chrome-light); }

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow-line { display: inline-flex; }
.section-head h2 { margin-bottom: 1.2rem; }
.section-head .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy);
  padding: 70px 0;
  color: #fff;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--chrome-light);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  overflow: hidden;
}
.about-image .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.about-image .badge .b-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--chrome-light);
  line-height: 1;
  display: block;
}
.about-image .badge .b-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  font-weight: 500;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 36px;
}
.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.value-item p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ---------- Brand partners ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-grid .brand-card:nth-child(4),
.brand-grid .brand-card:nth-child(5) {
  /* center the last two in a row of 2 */
}
.brand-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--chrome);
}
.brand-card .brand-mark {
  height: 64px;
  display: flex; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--chrome);
}
.brand-card .brand-mark .text-mark {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.brand-card .desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.brand-card .pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.brand-card .pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: var(--bg-alt);
  color: var(--navy);
  border-radius: 999px;
}

/* ---------- Locations / states ---------- */
.locations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.state-card {
  background: var(--paper);
  padding: 32px 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.state-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--chrome);
}
.state-card .state-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.state-card .state-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.state-card ul {
  list-style: none;
  margin-top: auto;
}
.state-card ul li { margin-bottom: 6px; }
.state-card ul a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color var(--transition);
  display: block;
  padding: 4px 0;
  border-bottom: 1px dotted transparent;
}
.state-card ul a:hover {
  color: var(--navy);
  border-bottom-color: var(--chrome);
}

/* ---------- Contact section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info .info-block {
  margin-bottom: 28px;
}
.contact-info .info-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info .info-val {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}
.contact-info .info-val.sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-form {
  background: var(--paper);
  padding: 40px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  margin-bottom: 26px;
  color: var(--navy);
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
  border-radius: 4px;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none; border-color: var(--navy);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 4px;
  transition: background var(--transition);
}
.contact-form button:hover { background: var(--navy-soft); }

/* ---------- Property detail page bits ---------- */
.subhero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.subhero-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.subhero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,25,41,0.5) 0%, rgba(10,25,41,0.4) 50%, rgba(10,25,41,0.92) 100%);
}
.subhero-content {
  padding: 160px 0 50px;
  width: 100%;
}
.subhero h1 { color: #fff; font-weight: 300; }
.subhero h1 .bold { color: #fff; }
.subhero .eyebrow { color: var(--chrome-light); display: inline-block; }
.subhero .location {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  font-weight: 500;
}

.detail-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.detail-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.detail-bar .info { display: flex; gap: 36px; flex-wrap: wrap; }
.detail-bar .info-item .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.detail-bar .info-item .val {
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 500;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-main p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.detail-side {
  background: var(--bg-alt);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.detail-side h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.amenity-list li {
  font-size: 0.9rem;
  color: var(--navy);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.amenity-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--chrome-dark);
  transform: rotate(45deg);
}

.book-cta {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.book-cta h2 { color: #fff; margin-bottom: 1rem; }
.book-cta h2 .bold { color: #fff; }
.book-cta p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--chrome-light);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: block;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 22px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 0.9rem; }
  .brand-tag { font-size: 0.52rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .amenity-list { grid-template-columns: 1fr; }
  .detail-bar .info { gap: 18px; }
  section { padding: 64px 0; }
  .contact-form { padding: 28px 22px; }
}
