/* DiElektrik — Casa-inspired editorial design */
:root {
  --cream: #f7f4ef;
  --cream-deep: #ebe7df;
  --sand: #e8e4db;
  --ink: #282828;
  --ink-soft: #5c5c5c;
  --muted: #8a8a84;
  --white: #ffffff;
  --blue: #1d5eff;
  --blue-deep: #0f46e0;
  --blue-soft: #e8efff;
  --blue-text: #1a4fd6;
  --peach: #e8efff;
  --peach-text: #1a4fd6;
  --line: rgba(40, 40, 40, 0.1);
  --line-light: rgba(255, 255, 255, 0.35);
  --shadow: 0 14px 36px rgba(16, 24, 40, 0.12);
  --shadow-blue: 0 14px 40px rgba(29, 94, 255, 0.28);
  --radius: 40px;
  --radius-sm: 24px;
  --pill: 999px;
  --nav-h: 84px;
  --max: 1120px;
  --font-sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  z-index: 1100;
  pointer-events: none;
}

/* Ambient blue blur accents */
body::before,
body::after {
  content: "";
  position: fixed;
  width: min(62vw, 620px);
  height: min(62vw, 620px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.45;
  will-change: transform;
}

body::before {
  top: -12vh;
  right: -8vw;
  background: radial-gradient(circle, rgba(29, 94, 255, 0.55) 0%, rgba(29, 94, 255, 0) 70%);
}

body::after {
  bottom: 8vh;
  left: -14vw;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  background: radial-gradient(circle, rgba(61, 123, 255, 0.42) 0%, rgba(61, 123, 255, 0) 72%);
  opacity: 0.38;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.75;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img,
.mobile-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s var(--ease);
}

.site-header.is-solid .logo img,
.site-header.is-solid .mobile-logo {
  filter: brightness(0);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--pill);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.25s;
}

.nav-list a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav-list a.is-active {
  border-color: rgba(255, 255, 255, 0.45);
}

.site-header.is-solid .nav-list a {
  color: var(--ink);
}

.site-header.is-solid .nav-list a:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
  box-shadow: var(--shadow);
}

.site-header.is-solid .nav-list a.is-active {
  border-color: rgba(29, 94, 255, 0.25);
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--pill);
  background: var(--blue);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  opacity: 1 !important;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.nav-cta:hover {
  opacity: 1 !important;
  background: var(--blue-deep) !important;
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.site-header.is-solid .nav-cta {
  background: var(--blue);
  color: var(--white) !important;
}

.mobile-bar {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header.is-solid .menu-toggle {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  border-radius: 1px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ——— Hero + video ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 72px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background: #1a1a1a;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(0.82) contrast(1.05) hue-rotate(8deg);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 90, 0.62) 0%, rgba(12, 36, 110, 0.48) 45%, rgba(6, 20, 70, 0.78) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 94, 255, 0.28);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__brand {
  font-family: var(--font-sans);
  font-size: clamp(34px, 5.8vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 14px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hero__brand span {
  display: inline-block;
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.hero__headline {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero__note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, opacity 0.2s, filter 0.25s;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn:active {
  transform: scale(0.98);
}

.btn--light {
  background: var(--white);
  color: var(--blue-deep);
}

.btn--light:hover {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.btn--dark {
  background: var(--blue);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--blue-deep);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(29, 94, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-blue);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(40, 40, 40, 0.22);
}

.btn--ghost-dark:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  box-shadow: var(--shadow);
}

.btn--arrow::after {
  content: "→";
  font-size: 1.05em;
}

/* ——— Page heroes ——— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 88px) 24px 64px;
  text-align: center;
  background: var(--cream);
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.page-hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: 50%;
  transform: translateX(-70%);
  background: rgba(29, 94, 255, 0.22);
}

.page-hero::after {
  width: 320px;
  height: 320px;
  top: 40px;
  right: -60px;
  background: rgba(61, 123, 255, 0.18);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(40px, 6.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.page-hero--media {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 56px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #222;
}

.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--media .page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.45), rgba(20, 16, 12, 0.65));
}

.page-hero--media .page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero--media h1 {
  color: #fff;
}

.page-hero--media p {
  color: rgba(255, 255, 255, 0.82);
}

/* ——— Sections ——— */
.section {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}

.section--cream {
  background: transparent;
}

.section--sand {
  background: transparent;
}

.section--cream::before,
.section--sand::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 30%, rgba(29, 94, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 45% 55% at 100% 70%, rgba(61, 123, 255, 0.09), transparent 62%);
}

.section--sand::before {
  background:
    radial-gradient(ellipse 55% 65% at 90% 20%, rgba(29, 94, 255, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(15, 70, 224, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(235, 231, 223, 0.65), rgba(235, 231, 223, 0.4));
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section__head h2 {
  font-size: clamp(36px, 5.5vw, 52px);
  margin-bottom: 14px;
}

.section__head p {
  font-size: 18px;
  line-height: 1.5;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: var(--peach);
  color: var(--peach-text);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Soft rounded panel like Casa membership card */
.soft-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 94, 255, 0.1);
  border-radius: var(--radius);
  padding: 56px 40px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(29, 94, 255, 0.08);
}

.soft-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -100px;
  right: -60px;
  border-radius: 50%;
  background: rgba(29, 94, 255, 0.22);
  filter: blur(60px);
  pointer-events: none;
}

.soft-panel--white {
  background: rgba(255, 255, 255, 0.72);
}

.soft-panel > * {
  position: relative;
  z-index: 1;
}

/* ——— Cards / tiles ——— */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tile-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.tile:hover {
  transform: translateY(-4px);
  opacity: 1;
  box-shadow: var(--shadow-blue);
}

.tile__media {
  flex: 0 0 auto;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
}

.tile__body h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.tile__body p {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.link-more {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-deep);
  transition: color 0.2s, opacity 0.2s;
}

.link-more::after {
  content: " →";
}

.tile:hover .link-more,
a:hover .link-more {
  color: var(--blue);
}

/* Steps row */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 16px 0 8px;
}

.step p {
  font-size: 15px;
  line-height: 1.45;
}

.step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 18px;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
}

/* Features */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.feature:last-child { margin-bottom: 0; }

.feature--flip .feature__media { order: 2; }
.feature--flip .feature__copy { order: 1; }

.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd center / cover no-repeat;
}

.feature__copy h2,
.feature__copy h3 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}

.feature__copy p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 460px;
}

/* CTA band */
.cta-band {
  position: relative;
  margin: 0 24px 96px;
  padding: 72px 40px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1438c7 0%, var(--blue) 55%, #3d7bff 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.cta-band::before {
  width: 360px;
  height: 360px;
  left: -80px;
  top: -120px;
  background: rgba(255, 255, 255, 0.28);
}

.cta-band::after {
  width: 300px;
  height: 300px;
  right: -40px;
  bottom: -100px;
  background: rgba(10, 40, 180, 0.55);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 28px;
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  position: relative;
}

.contact-panel__main,
.contact-panel__side {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 44px 40px;
  border: 1px solid rgba(29, 94, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(29, 94, 255, 0.07);
}

.contact-panel__main::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(29, 94, 255, 0.2);
  filter: blur(50px);
  pointer-events: none;
}

.contact-panel__visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.contact-panel__photo {
  flex: 1;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.contact-panel__social {
  padding: 24px 28px;
}

.contact-panel__social .label,
.contact-list .label,
.channel .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-panel__main h2 {
  font-size: clamp(34px, 4vw, 44px);
  margin-bottom: 10px;
}

.contact-panel__main > p {
  margin-bottom: 32px;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-list a,
.contact-list .value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
  line-height: 1.15;
}

.contact-list a:hover {
  opacity: 1;
  color: var(--blue);
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff !important;
  opacity: 1 !important;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.social-btn:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.social-btn--facebook { background: #1877f2; }
.social-btn--whatsapp { background: #25d366; }
.social-btn--telegram { background: #24a1de; }

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.channel {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.channel a {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-deep);
  transition: color 0.2s;
}

.channel a:hover {
  opacity: 1;
  color: var(--blue);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.split-intro img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-intro h2 {
  font-size: clamp(34px, 4vw, 44px);
  margin-bottom: 14px;
}

.split-intro p {
  font-size: 17px;
  line-height: 1.5;
}

/* Availability / Ozvite sa */
.availability {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(29, 94, 255, 0.16), transparent 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(61, 123, 255, 0.1), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(243, 246, 255, 0.9) 100%);
  border: 1px solid rgba(29, 94, 255, 0.12);
  border-radius: var(--radius);
  padding: 40px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(29, 94, 255, 0.1);
}

.availability::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 35%;
  top: -120px;
  border-radius: 50%;
  background: rgba(29, 94, 255, 0.18);
  filter: blur(70px);
  pointer-events: none;
}

.availability__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px 8px 4px;
  position: relative;
  z-index: 1;
}

.availability__copy h2 {
  font-size: clamp(34px, 4.5vw, 48px);
  margin-bottom: 14px;
}

.availability__copy > p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 28px;
}

.availability__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.availability__hours {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
  min-height: 280px;
}

.availability__hours-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.availability__days {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.availability__time {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}

.availability__note {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 260px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 40px;
  text-align: center;
  background: var(--cream);
}

.site-footer p {
  font-size: 13px;
  color: var(--muted);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .tile {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body::before,
  body::after {
    filter: blur(40px);
    opacity: 0.25;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .tile-grid,
  .tile-grid--3,
  .steps,
  .channels,
  .contact-panel,
  .split-intro,
  .availability,
  .feature,
  .feature--flip {
    grid-template-columns: 1fr;
  }

  .feature--flip .feature__media,
  .feature--flip .feature__copy { order: initial; }
  .feature__media { order: -1; }

  .soft-panel { padding: 40px 24px; }
  .cta-band { margin-inline: 16px; padding: 56px 24px; }
  .tile__media { height: 220px; }
  .availability { padding: 24px; }
  .availability__hours { min-height: 220px; }
}

@media (max-width: 834px) {
  .logo { display: none; }

  .mobile-bar { display: flex; }
  .menu-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(247, 244, 239, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 10px 0 18px;
  }

  .nav.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }

  .nav-list a {
    justify-content: center;
    color: var(--ink) !important;
    min-height: 48px;
  }

  .nav-list a.nav-cta,
  .nav-cta {
    justify-content: center;
    min-height: 48px;
    background: var(--blue) !important;
    color: #fff !important;
    margin-top: 8px;
  }

  .site-header .mobile-logo {
    filter: brightness(0) invert(1);
  }

  .site-header.is-solid .mobile-logo {
    filter: brightness(0);
  }

  .section { padding: 72px 20px; }
  .hero { padding-bottom: 56px; }
}
