:root {
  --bg: #05070a;
  --bg-deep: #020305;
  --bg-blue: #07111f;
  --surface: #0e141c;
  --surface-2: #111a25;
  --surface-3: #162231;
  --light: #f2f4ef;
  --light-soft: #dfe5df;
  --text: #f4f7f3;
  --text-dark: #091018;
  --muted: #a8b0b8;
  --muted-2: #74808b;
  --border: rgba(242, 244, 239, .12);
  --border-blue: rgba(20, 92, 255, .42);
  --blue: #145cff;
  --blue-2: #2f7dff;
  --orange: #ff6a1a;
  --orange-2: #ff8a3c;
  --steel: #273545;
  --shadow: 0 34px 90px rgba(0, 0, 0, .42);
  --blue-glow: 0 0 44px rgba(20, 92, 255, .28);
  --orange-glow: 0 0 36px rgba(255, 106, 26, .26);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --header: 84px;
  --title: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(20, 92, 255, .22), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(255, 106, 26, .13), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-blue) 36%, var(--bg-deep) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0; color: var(--muted); }

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--light);
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 10, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(242, 244, 239, .1);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-text { display: grid; gap: 1px; }
.brand-name {
  font-family: var(--title);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.brand-role {
  color: var(--blue-2);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--light); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: var(--light);
  background: linear-gradient(135deg, var(--blue), #0c3dd3);
  border-color: rgba(242, 244, 239, .12);
  box-shadow: var(--blue-glow);
}
.btn-primary:hover, .btn-primary:focus-visible { background: linear-gradient(135deg, var(--blue-2), var(--blue)); box-shadow: 0 0 54px rgba(20, 92, 255, .42); }
.btn-secondary {
  color: var(--light);
  background: rgba(242, 244, 239, .05);
  border-color: rgba(242, 244, 239, .18);
}
.btn-secondary:hover, .btn-secondary:focus-visible { border-color: rgba(255, 106, 26, .55); box-shadow: var(--orange-glow); }
.header-cta { min-height: 46px; padding-inline: 18px; font-size: .78rem; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow-blue { color: var(--blue-2); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--title);
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { max-width: 840px; font-size: clamp(3.65rem, 10.4vw, 8.4rem); }
h2 { font-size: clamp(2.55rem, 6.2vw, 5.25rem); }
h3 { font-size: 1.68rem; }

.hero {
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  overflow: clip;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(242, 244, 239, .045) 0 1px, transparent 1px 100%),
    linear-gradient(20deg, transparent 0 48%, rgba(20, 92, 255, .18) 48% 48.25%, transparent 48.25% 100%);
  background-size: 46px 46px, 100% 100%;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
  gap: 62px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(242, 244, 239, .14);
  border-radius: 999px;
  background: rgba(14, 20, 28, .64);
}
.hero-logo-lockup img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.hero-logo-lockup span {
  color: var(--light-soft);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-title-accent { color: var(--blue-2); }
.hero-subtitle {
  max-width: 690px;
  margin-top: 24px;
  color: #d6dde6;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.cta-note { max-width: 350px; color: var(--muted); font-size: .92rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 44px 0 0;
}
.trust-strip div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(14, 20, 28, .76);
}
.trust-strip dt {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trust-strip dd {
  margin: 0;
  color: var(--text);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.35;
}
.hero-media, .about-media { position: relative; }
.hero-media:before {
  content: "PERSONAL TRAINER";
  position: absolute;
  top: -42px;
  right: -24px;
  z-index: 0;
  color: rgba(242, 244, 239, .035);
  font-family: var(--title);
  font-size: clamp(4.8rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.photo-frame {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(242, 244, 239, .12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(14, 20, 28, .78), rgba(7, 17, 31, .88));
  box-shadow: var(--shadow), var(--blue-glow);
  overflow: hidden;
}
.photo-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0 52%, rgba(2, 3, 5, .72) 100%);
}
.placeholder-photo {
  width: 100%;
  min-height: 590px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(242, 244, 239, .78) 0 72px, transparent 73px),
    linear-gradient(180deg, rgba(20, 92, 255, .24), transparent 42%),
    linear-gradient(145deg, #1a2634, #070b10);
  overflow: hidden;
}
.placeholder-photo:before {
  content: "";
  position: absolute;
  inset: auto 20% 0 20%;
  height: 56%;
  border-radius: 42% 42% 0 0;
  background: linear-gradient(180deg, rgba(20, 92, 255, .8), rgba(255, 106, 26, .18));
  opacity: .54;
}
.placeholder-photo span {
  position: relative;
  z-index: 2;
  margin-top: 292px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--light);
  background: rgba(5, 7, 10, .82);
  border: 1px solid rgba(242, 244, 239, .18);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.media-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 2;
  width: min(292px, 82%);
  padding: 18px;
  border: 1px solid rgba(255, 106, 26, .42);
  border-radius: 22px;
  color: var(--text);
  background: rgba(5, 7, 10, .88);
  box-shadow: var(--orange-glow);
}
.media-card strong, .media-card span { display: block; }
.media-card strong { color: var(--orange); text-transform: uppercase; letter-spacing: .07em; }
.media-card span { margin-top: 5px; color: rgba(242, 244, 239, .74); font-size: .92rem; }

.section-split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
}
.section-heading { max-width: 570px; }
.section-heading.narrow { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading p, .about-copy p, .method-intro p, .location-box p, .contact-copy p { margin-top: 18px; }
.card-grid, .service-grid, .trust-grid { display: grid; gap: 18px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.info-card, .service-card, .trust-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 34, 49, .92), rgba(10, 16, 23, .94));
}
.info-card {
  min-height: 230px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.info-card:after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 64px;
  height: 2px;
  background: var(--blue-2);
  opacity: .55;
}
.info-card.large { grid-column: span 3; }
.info-card.medium { grid-column: span 2; }
.info-card.wide { grid-column: span 4; }
.card-number {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.info-card p, .service-card p, .trust-grid p, .method-step p { margin-top: 12px; }
.emphasis-card { background: linear-gradient(135deg, var(--blue), #0b2c86); box-shadow: var(--blue-glow); }
.emphasis-card h3, .emphasis-card p, .emphasis-card .card-number { color: var(--light); }
.emphasis-card p { color: rgba(242, 244, 239, .78); }
.orange-card { background: linear-gradient(135deg, var(--orange), #b83a05); box-shadow: var(--orange-glow); }
.orange-card h3, .orange-card p, .orange-card .card-number { color: var(--light); }

.about { background: linear-gradient(180deg, rgba(20, 92, 255, .035), rgba(5, 7, 10, 0)); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 68px;
  align-items: center;
}
.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--light);
  background: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: var(--blue-glow);
}
.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.credential-list li {
  padding: 10px 13px;
  border: 1px solid rgba(20, 92, 255, .28);
  border-radius: 999px;
  background: rgba(20, 92, 255, .08);
  color: var(--light-soft);
  font-size: .9rem;
  font-weight: 800;
}

.services { background: linear-gradient(180deg, rgba(2, 3, 5, .1), rgba(7, 17, 31, .34)); }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 46px; }
.service-card {
  padding: 30px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(20, 92, 255, .12), transparent 48%);
  opacity: .7;
}
.service-card > * { position: relative; z-index: 1; }
.service-card strong { display: block; margin-top: 18px; color: var(--orange-2); line-height: 1.45; }
.section-cta { display: flex; justify-content: center; margin-top: 34px; }

.method { background: #05070a; }
.method:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 12%, rgba(20, 92, 255, .18), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 106, 26, .06), transparent);
}
.method-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 62px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.method-intro { position: sticky; top: calc(var(--header) + 30px); }
.method-steps { display: grid; gap: 14px; }
.method-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(14, 20, 28, .88);
}
.method-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--light);
  background: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: var(--blue-glow);
}

.location-box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(20, 92, 255, .24);
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, rgba(14, 20, 28, .96), rgba(7, 17, 31, .96));
  box-shadow: var(--shadow);
}
.location-summary { padding: 28px; border-radius: var(--radius-lg); background: var(--light); color: var(--text-dark); }
.location-summary span {
  display: block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.location-summary strong {
  display: block;
  margin-top: 10px;
  font-family: var(--title);
  font-size: 2.1rem;
  line-height: .92;
  text-transform: uppercase;
}
.location-summary p { margin-top: 12px; color: #4d5862; }

.trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust-grid article { padding: 26px; }

.contact { color: var(--text); background: linear-gradient(135deg, #07111f, #05070a 58%, #1b0b04); }
.contact p, .contact li { color: rgba(242, 244, 239, .74); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}
.contact-copy h2 { color: var(--text); }
.contact-copy ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-copy li { position: relative; padding-left: 22px; font-weight: 800; }
.contact-copy li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--orange-glow);
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(242, 244, 239, .14);
  border-radius: var(--radius-xl);
  background: var(--light);
  color: var(--text-dark);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38), var(--blue-glow);
}
.form-field { display: grid; gap: 8px; }
.form-field label { font-weight: 900; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid rgba(9, 16, 24, .16);
  border-radius: 16px;
  background: #fff;
  color: var(--text-dark);
  outline: none;
}
.form-field input { min-height: 52px; padding: 0 15px; }
.form-field textarea { resize: vertical; padding: 14px 15px; }
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 92, 255, .16);
}
.form-button { width: 100%; }
.form-note, .form-feedback { color: #57636f !important; font-size: .88rem; }
.form-feedback { min-height: 1.3em; font-weight: 800; }

.faq-container { max-width: 860px; }
.faq-list { display: grid; gap: 12px; margin-top: 34px; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(14, 20, 28, .82);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--title);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.faq-list details[open] summary { color: var(--orange); }
.faq-list details p { padding: 0 22px 22px; }

.footer { padding: 42px 0; background: #020305; color: var(--text); border-top: 1px solid rgba(242, 244, 239, .1); }
.footer p, .footer a { color: rgba(242, 244, 239, .68); }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; }
.footer strong { display: block; margin-bottom: 8px; font-family: var(--title); font-size: 1.7rem; line-height: 1; text-transform: uppercase; }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer a:hover, .footer a:focus-visible { color: var(--orange); }
.footer-note { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(242, 244, 239, .12); }
.footer-note p { font-size: .86rem; }

/* Coming soon */
.coming-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
  overflow-x: hidden;
  overflow-y: auto;
}
.coming-page:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(242, 244, 239, .045) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 52% 0%, rgba(20, 92, 255, .24), transparent 38%),
    radial-gradient(circle at 80% 90%, rgba(255, 106, 26, .16), transparent 32%);
  background-size: 46px 46px, auto, auto;
  mask-image: linear-gradient(180deg, black, rgba(0,0,0,.65));
}
.coming-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(26px, 6vw, 64px);
  border: 1px solid rgba(242, 244, 239, .14);
  border-radius: var(--radius-xl);
  background: rgba(7, 17, 31, .78);
  box-shadow: var(--shadow), var(--blue-glow);
  text-align: center;
  overflow: clip;
}
.coming-card:after {
  content: "";
  position: absolute;
  inset: auto 10% 0 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
}
.coming-logo {
  width: min(210px, 54vw);
  max-height: min(36vh, 260px);
  object-fit: contain;
  margin: 0 auto 28px;
}
.coming-domain {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 244, 239, .16);
  border-radius: 999px;
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.coming-card h1 {
  margin-inline: auto;
  max-width: 620px;
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: .88;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.coming-card p {
  max-width: 560px;
  margin: 20px auto 0;
  color: #d6dde6;
  font-size: clamp(.98rem, 2.8vw, 1.05rem);
  overflow-wrap: break-word;
}
.coming-small {
  margin-top: 30px !important;
  color: var(--muted) !important;
  font-size: .9rem !important;
}

@media (max-width: 980px) {
  :root { --header: 74px; }
  .header-inner { min-height: var(--header); }
  .brand-mark { width: 48px; height: 48px; }
  .header-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: auto;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--light);
    background: rgba(14, 20, 28, .86);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .site-nav {
    position: fixed;
    inset: var(--header) 20px auto 20px;
    display: none;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(20, 92, 255, .28);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; gap: 12px; }
  .site-nav a { padding: 12px; border-radius: 14px; background: rgba(242, 244, 239, .06); }
  .hero-grid, .section-split, .about-grid, .method-grid, .contact-grid, .location-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .method-intro { position: static; }
  .location-box { padding: 32px; }
  .about-media { order: 2; }
  .about-copy { order: 1; }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-card.large, .info-card.medium, .info-card.wide { grid-column: span 1; }
}

@media (max-width: 740px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 74px 0; }
  .hero { min-height: auto; padding-top: 52px; padding-bottom: 66px; }
  h1 { font-size: clamp(3.25rem, 18vw, 5.8rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.85rem); }
  .brand-name { font-size: 1.24rem; }
  .brand-role { display: none; }
  .hero-logo-lockup { align-items: center; border-radius: var(--radius-md); }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn, .section-cta .btn { width: 100%; }
  .trust-strip, .bento-grid, .service-grid, .trust-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; padding: 22px; }
  .service-card, .trust-grid article, .method-step, .contact-form { padding: 22px; }
  .method-step { grid-template-columns: 1fr; }
  .method-step span { width: 38px; height: 38px; }
  .media-card { position: static; width: 100%; margin-top: 12px; }
  .placeholder-photo { min-height: 460px; }
  .location-summary { padding: 22px; }
  .footer-inner { display: grid; }
  .footer nav { justify-content: flex-start; }
  .footer-brand { align-items: flex-start; }
  .coming-card { padding: 26px 18px; border-radius: 24px; }
  .coming-logo { width: min(170px, 48vw); max-height: 30vh; margin-bottom: 22px; }
  .coming-card h1 { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .coming-domain { font-size: .7rem; letter-spacing: .14em; }
}

@media (max-width: 380px) {
  .coming-card { padding: 22px 16px; }
  .coming-logo { width: min(150px, 45vw); max-height: 28vh; }
  .coming-card h1 { font-size: clamp(2rem, 11.4vw, 3rem); }
  .coming-card p { font-size: .94rem; }
}
