/* ============ Home page styles ============ */

/* Scroll morph companion — fixed travelling object */
.scroll-morph {
  position: fixed;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 4;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.scroll-morph[data-side="left"] { right: auto; left: -20px; }
.scroll-morph__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(249, 168, 38, 0.30) 0%, rgba(232, 84, 32, 0.10) 40%, transparent 70%);
  filter: blur(40px);
  transition: transform 0.4s var(--ease-out);
}
.scroll-morph__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  transition: transform 0.6s var(--ease-out);
}
.scroll-morph__obj {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: opacity 0.45s var(--ease-out);
  will-change: transform, opacity;
}
.scroll-morph__obj > svg {
  filter: drop-shadow(0 30px 60px rgba(232, 84, 32, 0.35))
          drop-shadow(0 10px 20px rgba(20, 23, 31, 0.25));
}
.scroll-morph__satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0.85;
  filter: blur(0.3px);
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
}
.scroll-morph__satellite--2 { opacity: 0.65; }

.scroll-morph__label {
  position: absolute;
  left: -40px;
  bottom: 24px;
  display: flex;
  align-items: end;
  gap: 14px;
  font-family: "Sora", sans-serif;
}
.scroll-morph__label-num {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.scroll-morph__label-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  padding-bottom: 10px;
  max-width: 130px;
  line-height: 1.4;
}

@media (max-width: 1280px) {
  .scroll-morph { width: 360px; height: 360px; right: -40px; }
  .scroll-morph__label { left: 0; }
  .scroll-morph__label-num { font-size: 40px; }
}
@media (max-width: 1080px) {
  .scroll-morph { width: 280px; height: 280px; right: -30px; opacity: 0.95; }
  .scroll-morph__label { display: none; }
}
@media (max-width: 820px) {
  .scroll-morph { display: none; }
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 80px 0 140px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}
.home-hero__title {
  font-size: clamp(54px, 7.8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.home-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-700);
}

.home-hero__scene {
  position: absolute;
  inset: 0;
  left: 38%;
  pointer-events: none;
  z-index: 1;
}

.light-streak {
  position: absolute;
  left: 0; top: -20%;
  width: 70%; height: 60%;
  background: linear-gradient(135deg, rgba(255, 235, 195, 0.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.home-hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  z-index: 5;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--ink-500), transparent);
  position: relative;
}
.scroll-line__dot {
  position: absolute;
  left: -2px; top: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-600);
  box-shadow: 0 0 8px var(--amber-600);
  animation: scroll-dot 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-dot {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* trust strip */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid rgba(20, 23, 31, 0.06);
  border-bottom: 1px solid rgba(20, 23, 31, 0.06);
  position: relative;
  z-index: 2;
  background: rgba(251, 248, 243, 0.4);
  backdrop-filter: blur(10px);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}
.trust-pillar__icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(160deg, #fff3df, #ffe0b8);
  border: 1px solid rgba(232, 84, 32, 0.18);
  display: grid; place-items: center;
  color: var(--amber-800);
}

/* what we do grid */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wwd-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease-out);
}
.wwd-card:hover { box-shadow: var(--shadow-lifted); }
.wwd-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(249,168,38,0.0), rgba(232,84,32,0.0));
  border-radius: 28px;
  pointer-events: none;
  transition: background 0.4s;
}
.wwd-card:hover::before {
  background: linear-gradient(135deg, rgba(249,168,38,0.12), rgba(232,84,32,0.08));
}
.wwd-card__motif {
  height: 200px;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.6s var(--ease-out);
}
.wwd-card:hover .wwd-card__motif { transform: translateY(-6px) scale(1.04); }
.wwd-card__body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.wwd-card__body p { font-size: 15px; }
.wwd-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-800);
  transition: gap 0.3s var(--ease-out);
}
.wwd-card__cta:hover { gap: 12px; }

/* atmospheric statement */
.atmos-statement {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.atmos-statement__copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* pathway grid */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pathway-card {
  position: relative;
  border-radius: 28px;
  padding: 48px;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: end;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: box-shadow 0.4s;
}
.pathway-card:hover { box-shadow: var(--shadow-lifted); }
.pathway-card--hub {
  background:
    radial-gradient(600px 400px at 110% -20%, rgba(249, 168, 38, 0.45), transparent 60%),
    linear-gradient(135deg, #1a1d28 0%, #0c0e15 100%);
  color: white;
  border: 1px solid rgba(255, 184, 88, 0.15);
}
.pathway-card--dir {
  background:
    radial-gradient(600px 400px at 110% -20%, rgba(232, 84, 32, 0.25), transparent 60%),
    linear-gradient(135deg, #fff3df 0%, #ffe0b8 100%);
  border: 1px solid rgba(232, 84, 32, 0.18);
}
.pathway-card__motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
}
.pathway-card__copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.pathway-card__copy h3 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.pathway-card--hub h3 { color: white; }
.pathway-card--hub p { color: rgba(255,247,235,0.78); }
.pathway-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--grad-ember);
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-amber);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.pathway-card__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -10px rgba(232, 84, 32, 0.65); }
.pathway-card__cta.dark {
  background: var(--ink-950);
  box-shadow: 0 14px 28px -10px rgba(20, 23, 31, 0.5);
}

/* cta band */
.cta-band {
  position: relative;
  margin-top: 0;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(820px 480px at 78% 4%, rgba(249, 168, 38, 0.16), transparent 60%),
    radial-gradient(640px 380px at 14% 42%, rgba(232, 84, 32, 0.28), transparent 60%),
    linear-gradient(168deg, #1a1d28 0%, #12141d 44%, #0c0e15 82%, #0c0e15 100%);
}
/* The dark CTA band uses ONE consistent treatment on every page — the same
   clean transition the home screen uses: a crisp top edge straight off the
   paper into the band, then a soft bottom fade into the footer (below). No
   per-page special-casing, so body → cta → footer feels identical site-wide. */
.cta-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(12, 14, 21, 0) 0%, #0c0e15 62%, #0c0e15 100%);
  pointer-events: none;
  z-index: 1;
}
/* keep the band content ABOVE the ::before/::after dark-fade pseudo-elements.
   (.reveal sets transform, which creates a stacking context and would otherwise
   trap the content's z-index below the z-index:1 gradients, darkening text.) */
.cta-band > .container { position: relative; z-index: 3; }
.cta-band__bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  filter: blur(0.5px);
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 40px;
}

@media (max-width: 980px) {
  .home-hero__scene { display: none; }
  .home-hero__title { font-size: 64px; }
  .wwd-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
}

/* ===================== service detail + overview ===================== */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}
/* Page-hero copy gets gentle scroll parallax for cinematic depth */
.page-hero__copy[data-parallax] {
  /* uses [data-parallax] transform rule */
}
.page-hero__copy h1 {
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.page-hero__copy p { margin-top: 24px; font-size: 19px; max-width: 56ch; }
.page-hero__scene {
  position: relative;
  height: 480px;
}

/* service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s;
}
.service-card:hover { box-shadow: var(--shadow-lifted); }
.service-card__motif {
  height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.service-card p { font-size: 14.5px; }

/* steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%;
  top: 36px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--amber-600) 0 6px, transparent 6px 14px);
  opacity: 0.4;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #fff, #fff3df);
  border: 1px solid rgba(232, 84, 32, 0.25);
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber-800);
  box-shadow: var(--shadow-soft);
}
.step h4 { font-size: 17px; margin-bottom: 6px; font-family: "Sora", sans-serif; font-weight: 600; }
.step p { font-size: 14px; }

/* accordion */
.accordion-item {
  border-bottom: 1px solid rgba(20, 23, 31, 0.1);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
  cursor: pointer;
  transition: color 0.3s;
}
.accordion-trigger:hover { color: var(--amber-800); }
.accordion-trigger__icon {
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger__icon { transform: rotate(180deg); color: var(--amber-700); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s var(--ease-out);
}
.accordion-item.open .accordion-content {
  max-height: 300px;
  padding-bottom: 22px;
}
.accordion-content p {
  font-size: 15.5px;
  max-width: 72ch;
}

/* testimonial cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.testimonial blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.testimonial blockquote::before { content: "“"; color: var(--amber-700); font-size: 32px; vertical-align: -8px; margin-right: 4px; }
.testimonial cite {
  font-style: normal;
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-500);
  font-family: "Sora", sans-serif;
}
.testimonial cite strong { color: var(--ink-900); display: block; font-weight: 600; }

/* features list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.65);
  border: 1px solid rgba(20, 23, 31, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.feature-card:hover { background: rgba(255, 250, 242, 0.92); transform: translateY(-2px); }
.feature-card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, #fff3df, #ffd28b);
  border: 1px solid rgba(232, 84, 32, 0.18);
  display: grid; place-items: center;
  color: var(--amber-800);
  flex-shrink: 0;
}
.feature-card h4 { font-family: "Sora", sans-serif; font-size: 15.5px; font-weight: 600; margin-bottom: 4px; color: var(--ink-900); }
.feature-card p { font-size: 13.5px; line-height: 1.5; }

@media (max-width: 980px) {
  .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__scene { display: none; }
}

/* ===================== articles ===================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  position: relative;
  height: 440px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lifted); }
.article-card__thumb {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
}
.article-card__thumb .motif {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .motif { transform: scale(1.05); }
.article-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .article-card__img { transform: scale(1.05); }
.article-card__body {
  padding: 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.article-card__cat {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--grad-ember-soft);
  border: 1px solid rgba(232, 84, 32, 0.22);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber-800);
  margin-bottom: 12px;
}
.article-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-card__meta {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 12px;
  color: var(--ink-500);
  font-family: "Sora", sans-serif;
}

.article-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 110% -20%, rgba(249, 168, 38, 0.30), transparent 60%),
    linear-gradient(135deg, #14171f 0%, #0c0e15 100%);
  color: white;
  border: 1px solid rgba(255, 184, 88, 0.15);
  box-shadow: var(--shadow-lifted);
  min-height: 380px;
}
.article-feature__copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-feature__copy h2 {
  color: white;
  font-size: 36px;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 14px;
}
.article-feature__copy p { color: rgba(255,247,235,0.78); }
.article-feature__motif {
  position: relative;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(249,168,38,0.18), transparent 70%);
  overflow: hidden;
}
.article-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-cover {
  max-width: 760px;
  margin: 0 auto 44px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
  aspect-ratio: 16 / 10;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-feature { grid-template-columns: 1fr; }
}

/* ===================== storefront photo ===================== */
.storefront {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
  border: 1px solid rgba(20, 23, 31, 0.06);
  position: relative;
}
.storefront img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.storefront__cap {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 22px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  background: rgba(255, 250, 242, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media (max-width: 640px) {
  .storefront img { aspect-ratio: 4 / 3; }
}

/* ===================== contact ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  margin-top: 56px;
  align-items: stretch;
}
.contact-layout > .reveal { height: 100%; }
.contact-panel, .contact-visit { height: 100%; }
.contact-panel {
  padding: 44px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.contact-panel__title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  margin: 14px 0 14px;
}
.contact-panel__lead {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 42ch;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--grad-ember);
  text-decoration: none;
  box-shadow: 0 16px 34px -16px rgba(232, 84, 32, 0.7);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.contact-phone:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -16px rgba(232, 84, 32, 0.82); }
.contact-phone__ico {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  display: grid; place-items: center;
}
.contact-phone__label {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 247, 235, 0.88);
  margin-bottom: 2px;
}
.contact-phone__num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.contact-facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.contact-facts li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(20, 23, 31, 0.08);
}
.contact-facts li:first-child { border-top: none; padding-top: 4px; }
.contact-facts__ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-ember-soft);
  border: 1px solid rgba(232, 84, 32, 0.18);
  display: grid; place-items: center;
  color: var(--amber-700);
}
.contact-facts__val {
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.55;
}
.contact-facts__val strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-800);
  margin-bottom: 4px;
}
.contact-visit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-visit .storefront { margin: 0; }
.contact-visit .contact-map {
  margin-top: 0;
  height: 320px;
  border-radius: 22px;
}
.contact-visit__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-visit__actions .map-directions {
  margin-top: 0;
  color: var(--amber-700);
}
.contact-visit__actions .map-directions:hover { color: var(--amber-800); }
@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ===================== contact (legacy form layout) ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 60px;
}
.contact-form, .contact-info { min-width: 0; }
.contact-form { min-width: 0;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
  font-family: "Sora", sans-serif;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-info {
  padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(500px 400px at 100% 0%, rgba(249, 168, 38, 0.30), transparent 60%),
    linear-gradient(135deg, #14171f 0%, #0c0e15 100%);
  color: white;
  border: 1px solid rgba(255, 184, 88, 0.15);
  position: relative;
  overflow: hidden;
}
.contact-info h3 { color: white; font-size: 22px; margin-bottom: 24px; font-family: "Sora", sans-serif; }
.contact-info .info-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,247,235,0.1);
}
.contact-info .info-row:last-child { border: none; }
.contact-info .info-row .label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 4px;
}
.contact-info .info-row .val { color: white; font-size: 15px; overflow-wrap: anywhere; }
.contact-info .info-row .ico {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(249, 168, 38, 0.15);
  border: 1px solid rgba(249, 168, 38, 0.3);
  display: grid; place-items: center;
  color: var(--amber-400);
}
.contact-map {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  position: relative;
  border: 1px solid rgba(255,247,235,0.1);
  background:
    radial-gradient(circle at 60% 42%, rgba(249,168,38,0.16), transparent 60%),
    linear-gradient(135deg, #2f3346, #14171f);
}
/* Branded placeholder shown until the Google Maps frame paints */
.contact-map::after {
  content: "279a Wanneroo Rd · Balcatta WA";
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,247,235,0.55);
  pointer-events: none;
  z-index: 0;
}
.contact-map iframe { position: relative; z-index: 1; width: 100%; height: 100%; filter: saturate(1.05); }
.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--amber-400);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.map-directions:hover { gap: 12px; color: #fff; }

.other-ways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.other-way {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}
.other-way:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }
.other-way .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(160deg, #fff3df, #ffd28b);
  border: 1px solid rgba(232, 84, 32, 0.18);
  display: grid; place-items: center;
  color: var(--amber-800);
  margin-bottom: 18px;
}
.other-way { text-decoration: none; color: inherit; }
.other-way h4 { font-family: "Sora", sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.other-way p { font-size: 14px; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .other-ways { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ===================== article read view ===================== */
.article-read { max-width: 760px; margin: 0 auto; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Sora", sans-serif; font-size: 13px; font-weight: 500;
  color: var(--amber-700);
}
.article-back svg { transform: rotate(180deg); }
.article-back:hover { color: var(--amber-800); }
.article-read__lede {
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4; font-weight: 400;
  color: var(--ink-800);
  letter-spacing: -0.01em;
  padding-bottom: 8px;
}
.article-read__block { margin-top: 40px; }
.article-read__block h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1; margin-bottom: 14px;
}
.article-read__block p { font-size: 17px; line-height: 1.7; color: var(--ink-600); }

.article-callout {
  position: relative;
  margin-top: 56px;
  border-radius: 28px;
  padding: 40px;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 110% -20%, rgba(249, 168, 38, 0.40), transparent 60%),
    linear-gradient(135deg, #1a1d28 0%, #0c0e15 100%);
  border: 1px solid rgba(255, 184, 88, 0.15);
}
.article-callout__motif {
  position: absolute; right: -20px; bottom: -30px;
  opacity: 0.5; pointer-events: none;
}
.article-callout__copy { position: relative; z-index: 2; max-width: 520px; }
.article-callout__copy h3 {
  font-family: "Sora", sans-serif; font-size: 26px; font-weight: 600;
  color: white; margin-top: 12px; line-height: 1.1;
}
.article-callout__copy p { color: rgba(255, 247, 235, 0.78); margin-top: 14px; font-size: 15.5px; }

.article-next {
  display: flex; align-items: center; gap: 18px;
  margin-top: 28px; padding: 26px 28px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(20, 23, 31, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.article-next:hover { transform: translateY(-3px); box-shadow: var(--shadow-lifted); }
.article-next__label {
  font-family: "Sora", sans-serif; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber-700); font-weight: 600;
  flex-shrink: 0;
}
.article-next__title {
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 17px;
  color: var(--ink-900); line-height: 1.2; flex: 1;
}
.article-next__go {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-ember); color: white;
  box-shadow: var(--shadow-amber);
}
@media (max-width: 640px) {
  .article-next { flex-wrap: wrap; gap: 10px; }
  .article-callout { padding: 30px 24px; }
}
