/* /assets/css/styles.css
   ===========================================================================
   Summons Studio global styles
   Typography: Playfair Display (headlines) + Inter (body)
   Color system uses --accent (#00AAD3) to match the logo.
   --------------------------------------------------------------------------- */

/* Base Reset */
* {
  box-sizing: border-box;
}
html:focus-within {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* CSS Variables */
:root {
  --navy: #0f1a2a;
  --ink: #182435;
  --porcelain: #f6f7f9;
  --mist: #d6dadd;
  --accent: #00aad3; /* primary light blue */
  --accent-dark: #008ab0; /* hover/pressed */
  --accent-light: #66dcff; /* subtle lines */
  /* back-compat (old rules referenced --teal) */
  --teal: var(--accent);
  --copper: #b38b6d;

  --radius: 14px;
  --shadow: 0 6px 24px rgba(15, 26, 42, 0.08);
  --shadow-soft: 0 2px 12px rgba(15, 26, 42, 0.06);

  --container: 1200px;
  --gutter: 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
p {
  margin: 0 0 1em;
  color: var(--ink);
}
strong {
  color: var(--navy);
}

/* Links & Buttons */
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
  will-change: transform;
}
.button:focus-visible {
  outline: 3px solid rgba(0, 170, 211, 0.4);
  outline-offset: 2px;
}
.button--primary {
  background: var(--accent);
  color: #fff;
}
.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: var(--accent-dark);
}

.button--inverse {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.button--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--mist);
}
.button--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.button--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.button--outline:hover {
  background: rgba(0, 170, 211, 0.06);
}

/* Layout */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 920px) {
  .grid--2 {
    grid-template-columns: 1.1fr 1fr;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.center {
  text-align: center;
}
.mt-16 {
  margin-top: 1rem;
}
.mt-24 {
  margin-top: 1.5rem;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
}

/* ======================== Header & Nav ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(15, 26, 42, 0.55);
  border-bottom: 1px solid rgba(214, 218, 221, 0.25);
  transition: padding 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  padding-block: 14px;
}
.site-header.is-scrolled {
  padding-block: 10px;
  box-shadow: 0 10px 24px rgba(15, 26, 42, 0.18);
  background: rgba(15, 26, 42, 0.7);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 0.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  white-space: nowrap;
  color: #f6f7f9;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.logo__image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo__text {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.125rem;
  letter-spacing: 0.2px;
  color: #f6f7f9;
}
.logo__text strong {
  font-weight: 700;
}

/* Optional logo mark styles (used in cards/icons too) */
.logo__glyph,
.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #f6f7f9;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 170, 211, 0.35);
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.2rem;
  color: #e9edf1;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: opacity 0.2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav__link:hover,
.nav__link:focus {
  opacity: 0.9;
}
.nav__link:hover::after,
.nav__link:focus::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Header CTA */
.button.button--primary.nav__cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f6f7f9;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 22px rgba(0, 170, 211, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.button.button--primary.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 170, 211, 0.34);
  background: var(--accent-dark);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(24, 36, 53, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #e9edf1;
  margin: 6px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile Drawer */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(15, 26, 42, 0.96);
    backdrop-filter: blur(10px);
    display: grid;
    align-content: start;
    gap: 1.25rem;
    padding: 1.25rem 1rem 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid rgba(214, 218, 221, 0.18);
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__list {
    display: grid;
    gap: 0.75rem;
  }
  .nav__link {
    font-size: 1.05rem;
    padding: 0.6rem 0;
  }
  .button.button--primary.nav__cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .nav__link::after,
  .button.button--primary.nav__cta,
  .nav,
  .site-header {
    transition: none;
  }
}

/* Hero */
.hero {
  padding-block: 56px;
}
.hero__copy {
  animation: fadeUp 0.6s ease 0.05s both;
}
.hero__title {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  letter-spacing: -0.5px;
  color: var(--navy);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #223046;
  margin-top: 0.75rem;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: #39465a;
}
.hero__image-wrap {
  position: relative;
  min-height: 260px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding-block: 64px;
}
.section--light {
  background: var(--porcelain);
}
.section__title {
  text-align: center;
  margin-bottom: 0.4rem;
}
.section__lead {
  text-align: center;
  color: #314056;
  margin-bottom: 1.25rem;
}

/* Cards */
.cards .card {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.cards .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card__title {
  margin-bottom: 0.4rem;
}
.card__body {
  color: #2c3a50;
}

/* Case Studies */
.case {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(24, 36, 53, 0.08);
  box-shadow: var(--shadow-soft);
}
.case__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.case__content {
  padding: 16px 18px 20px;
}
.case__title {
  margin-bottom: 0.4rem;
}
.case__meta {
  color: #37465b;
  font-size: 0.98rem;
}

/* Steps / Timeline */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.steps__item {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
}
.steps__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-right: 8px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mist);
}
.timeline__item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 22px;
}
.timeline__dot {
  position: absolute;
  left: 4px;
  top: 0.3rem;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.timeline__content {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

/* Page Hero */
.page-hero {
  padding-block: 48px;
  background: var(--porcelain);
  border-bottom: 1px solid rgba(24, 36, 53, 0.06);
}
.page-hero__title {
  margin-bottom: 0.25rem;
}
.page-hero__lead {
  color: #344357;
}

/* Work */
.work-grid .work-card {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.work-grid .work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.work-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.work-card__body {
  padding: 16px 18px 20px;
}
.work-card__title {
  margin-bottom: 0.3rem;
}
.work-card__more {
  margin-top: 0.25rem;
}

/* Tiers */
.tiers .tier {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.tiers .tier--featured {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0, 170, 211, 0.12);
}
.tier__title {
  margin-bottom: 0.5rem;
}
.tier__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #324055;
}

/* Lists */
.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 0.5rem;
}
.bullets {
  margin: 0;
  padding-left: 1.1rem;
}
.bullets li {
  margin-bottom: 0.4rem;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  border: 1px solid var(--mist);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
}

/* Quotes */
.quotes {
  gap: 18px;
}
.quote {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* CTA Band */
.cta {
  background: linear-gradient(180deg, var(--navy), #0c1523);
  color: #fff;
  padding-block: 52px;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.cta__title {
  color: #fff;
}

/* Footer (light theme base) */
.site-footer {
  border-top: 1px solid rgba(24, 36, 53, 0.06);
  background: #fff;
  color: var(--ink);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
}
.footer__brand {
  max-width: 620px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom {
  border-top: 1px solid rgba(24, 36, 53, 0.06);
  padding: 14px 0;
  text-align: center;
  color: #455269;
  font-size: 0.95rem;
}
@media (max-width: 740px) {
  .footer__inner {
    flex-direction: column;
  }
}

/* Forms */
.form {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
label {
  font-weight: 600;
  color: var(--navy);
}
input,
select,
textarea {
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 170, 211, 0.15);
}
.form__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.form__note {
  color: #4b586f;
  font-size: 0.95rem;
}

/* Contact card */
.contact-card {
  background: var(--porcelain);
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: 16px;
  padding: 18px;
  height: fit-content;
}

/* Modals */
.modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  width: min(800px, 92vw);
  box-shadow: 0 30px 70px rgba(15, 26, 42, 0.28);
}
.modal::backdrop {
  background: rgba(15, 26, 42, 0.55);
}
.modal__card {
  display: flex;
  flex-direction: column;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(24, 36, 53, 0.08);
}
.modal__body {
  padding: 16px 18px;
}
.modal__footer {
  padding: 14px 18px;
  border-top: 1px solid rgba(24, 36, 53, 0.08);
  display: flex;
  justify-content: flex-end;
}
.modal__close {
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .modal__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Helpers */
.section--centered {
  text-align: center;
}
.error__title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 0.2rem;
}
.error__subtitle {
  color: #3b485d;
  margin-bottom: 1rem;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #6a778e;
  margin-bottom: 0.25rem;
}

/* Feature cards */
.cards--features .card--feature {
  position: relative;
  padding: 22px;
}
.card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 22px rgba(0, 170, 211, 0.28);
  margin-bottom: 0.75rem;
}
.card__icon svg {
  width: 22px;
  height: 22px;
}

/* Compact checklist */
.checklist--compact {
  gap: 6px;
  margin-top: 0.5rem;
}
.checklist--compact li {
  font-size: 0.96rem;
  color: #334154;
}
.checklist--compact li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 0.5rem;
  transform: translateY(1px);
}

/* Badges / Cases */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(24, 36, 53, 0.88);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
}
.case__media {
  position: relative;
}
.case--concept .case__image {
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Process */
.process__steps {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.process__step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.process__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 170, 211, 0.28);
}
.process__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.process__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.process__time {
  margin-left: auto;
  font-size: 0.9rem;
  color: #4b586f;
  background: var(--porcelain);
  border: 1px solid var(--mist);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.process__text {
  margin: 0 0 0.5rem;
  color: #2f3d52;
}
.process__list {
  margin: 0;
}

/* Band */
.process__band {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 16px;
  background: linear-gradient(180deg, var(--navy), #0c1523);
  color: #fff;
  border-radius: 16px;
}
.process__assures {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process__assures li {
  color: #dfe6f0;
}
.process__assures strong {
  color: #fff;
}
.process__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .process__step {
    grid-template-columns: 1fr;
  }
  .process__time {
    margin-left: 0;
  }
  .process__band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Clean Testimonials */
.quotes--clean {
  gap: 24px;
}
.quotes--clean .quote {
  background: #fff;
  border: 1px solid rgba(24, 36, 53, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.quotes--clean .quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.quotes--clean blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.quotes--clean figcaption {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.quotes--clean a {
  color: var(--accent);
}
@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* CTA Band – centered variant */
.cta {
  background: linear-gradient(180deg, var(--navy), #0c1523);
  color: #fff;
  padding-block: 64px;
  text-align: center;
}
.cta__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta__title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.cta__text {
  color: #e5ebf0;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 620px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}
.button--inverse {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
  font-weight: 600;
}
.button--inverse:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* === FOOTER CLEANUP — Balanced Layout & Spacing (dark version) === */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b111d 100%);
  color: #dbe4ef;
  font-family: "Inter", sans-serif;
  padding-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.footer__accent {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  width: 100%;
  margin-bottom: 2.5rem;
}

/* Layout */
.footer__inner {
  display: grid;
  gap: 3rem;
  align-items: start;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .footer__inner {
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
  }
}

/* Brand Section */
.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer__logo strong {
  color: var(--accent);
}
.logo__mark {
  font-size: 1.3rem;
  color: var(--accent);
}

.footer__tag {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #a9b8cc;
  max-width: 420px;
  line-height: 1.6;
}
.footer__geo {
  color: #8fa1b6;
  font-size: 0.9rem;
}
.footer__legal {
  color: #6d7c91;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Nav Section */
.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .footer__nav {
    align-items: flex-end;
    text-align: right;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .footer__links {
    justify-content: flex-end;
  }
}
.footer__links a {
  color: #dbe4ef;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__links a:hover {
  color: var(--accent-light);
}

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contact-link {
  color: #a9b8cc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__contact-link:hover {
  color: var(--accent);
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a101b;
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  text-align: center;
}
.footer__copy {
  color: #8fa1b6;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Header scroll polish */
.site-header.is-scrolled .logo__image {
  height: 34px;
  opacity: 0.95;
}
.site-header.is-scrolled .logo__text {
  font-size: 1.1rem;
  opacity: 0.96;
}

/* Optional: subtly feature the middle card on large screens */
.case--concept.featured {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.case--concept.featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.badge--accent {
  background: var(--accent, #00aad3);
  color: #fff;
  font-weight: 600;
}

/* ==== Mobile menu: full-screen, readable, elegant ==== */
@media (max-width: 900px) {
  /* Lock page scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Keep the toggle above everything */
  .nav-toggle {
    position: relative;
    z-index: 10001;
  }

  /* Full-screen panel with solid dark backdrop */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 10000; /* higher than .site-header */
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: calc(env(safe-area-inset-top) + 84px) 20px 24px;
    background: rgba(11, 17, 27, 0.97); /* rich navy; nearly solid */
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  /* Center the list, big readable links */
  .nav__list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-items: center;
  }
  .nav__link {
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    opacity: 0.95;
  }
  .nav__link:focus-visible {
    outline: 2px solid #00aad3;
    outline-offset: 3px;
  }
  .nav__link::after {
    display: none;
  } /* remove underline animation on mobile */

  /* CTA in panel */
  .nav__cta {
    width: min(420px, 92vw);
    justify-self: center;
    text-align: center;
    background: #00aad3; /* brand light blue */
    color: #0b111b;
    border-color: transparent;
    box-shadow: 0 10px 26px rgba(0, 170, 211, 0.25);
  }

  /* Header sits above page, but below panel */
  .site-header {
    z-index: 9999;
  }

  /* Make sure the header brand/logo stays legible on dark backdrops */
  .nav-toggle .nav-toggle__bar {
    background: #e9edf1;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar {
    background: #ffffff;
  }
}

/* ==== Mobile menu: full-screen backdrop that reaches the bottom ==== */
@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 9999;
  }
  .nav-toggle {
    position: relative;
    z-index: 10001;
  }

  /* Full-screen panel with solid dark background */
  .nav {
    position: fixed;
    inset: 0; /* cover entire viewport */
    min-height: 100dvh; /* include iOS safari UI height */
    z-index: 10000; /* above header */
    background: rgba(11, 17, 27, 0.97); /* rich navy, nearly solid */
    backdrop-filter: blur(10px);
    overflow: auto; /* scroll inside panel if needed */

    /* layout & animation */
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: calc(env(safe-area-inset-top) + 88px) 20px 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  /* Clear, readable links */
  .nav__list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-items: center;
  }
  .nav__link {
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
    text-decoration: none;
  }
  .nav__link::after {
    display: none;
  } /* remove underline anim on mobile */

  /* CTA inside the panel */
  .nav__cta {
    width: min(420px, 92vw);
    align-self: center;
    text-align: center;
    background: #00aad3;
    color: #0b111b;
    border-color: transparent;
    box-shadow: 0 10px 26px rgba(0, 170, 211, 0.25);
  }
}

/* ===== Refined Minimal Tiles ===== */
.services-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 36px);
}

@media (max-width: 900px) {
  .services-tiles {
    grid-template-columns: 1fr;
  }
}

.service-tile.simple {
  background: #fff;
  border: 1px solid rgba(13, 25, 38, 0.1);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 6px 22px rgba(13, 25, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-tile.simple:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 25, 38, 0.18);
  box-shadow: 0 12px 36px rgba(13, 25, 38, 0.08);
}

.service-tile__head {
  margin-bottom: 14px;
}

.service-tile__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-400, #6b7a8a);
}

.service-tile__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin: 4px 0 0;
  color: var(--ink-900, #0f1b28);
}

.service-tile__list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

/* Elegant bullet style */
.bullets li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px; /* preserves spacing */
  height: 10px;
}

/* ===== Duo Tiles Layout ===== */
.duo-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 36px);
}
@media (max-width: 900px) {
  .duo-tiles {
    grid-template-columns: 1fr;
  }
}

/* ===== Generic Tile ===== */
.tile {
  background: #fff;
  border: 1px solid rgba(13, 25, 38, 0.1);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 8px 24px rgba(13, 25, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13, 25, 38, 0.08);
  border-color: rgba(13, 25, 38, 0.18);
}
.tile--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.tile__head {
  margin-bottom: 12px;
}
.tile__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  color: var(--ink-900, #0f1b28);
  margin: 0 0 4px;
}
.tile__sub {
  color: var(--ink-500, #5f6f80);
  margin: 0;
}

/* ===== Bulleted list inside tile ===== */
.tile__list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.bullets li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px; /* preserves spacing */
  height: 10px;
}

/* ===== Compact Timeline ===== */
.timeline {
  margin-top: 12px;
  display: -moz-box;
  gap: 12px;
}
.timeline__item {
  display: -moz-box;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px 14px;
  padding: 12px 14px;
  border: 1px dashed rgba(13, 25, 38, 0.12);
  border-radius: 14px;
  background: #fff;
}
.timeline__badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--ink-900, #0f1b28);
  background: rgba(47, 121, 167, 0.1);
  border: 1px solid rgba(47, 121, 167, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}
.timeline__time {
  justify-self: end;
  color: var(--ink-600, #3e4f61);
  font-weight: 600;
}

/* Mobile alignment for timeline */
@media (max-width: 560px) {
  .timeline__item {
    grid-template-columns: 1fr;
  }
  .timeline__time {
    justify-self: start;
  }
}

/* ===== Tier Packages ===== */
.tiers-grid.enhanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 3vw, 40px);
  margin-top: 2rem;
}
@media (max-width: 960px) {
  .tiers-grid.enhanced {
    grid-template-columns: 1fr;
  }
}

/* Tier Card */
.tier-card {
  background: #fff;
  border: 1px solid rgba(13, 25, 38, 0.1);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 38px);
  box-shadow: 0 8px 24px rgba(13, 25, 38, 0.06);
  transition: all 0.25s ease;
  position: relative;
  text-align: left;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(13, 25, 38, 0.08);
  border-color: rgba(13, 25, 38, 0.18);
}

/* Featured + Large Plus Tier */
.tier-card--featured {
  background: linear-gradient(180deg, #f9fbfd 0%, #eef6fb 100%);
  border: 1px solid rgba(47, 121, 167, 0.25);
  box-shadow: 0 12px 40px rgba(47, 121, 167, 0.15);
  position: relative;
}
.tier-card--large {
  transform: scale(1.08);
  z-index: 2;
}
.tier-card--large:hover {
  transform: scale(1.1);
}

.tier-card__badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--brand-600, #2f79a7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(47, 121, 167, 0.25);
}

/* Typography */
.tier-card__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 6px;
  color: var(--ink-900, #0f1b28);
}

.tier-card__subtitle {
  color: var(--ink-600, #3e4f61);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Bulleted List */
.tier-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 1.6rem;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px; /* preserves spacing */
  height: 10px;
}

/* Center emphasis for larger card */
.tiers-grid.enhanced .tier-card--large {
  margin-top: -12px;
}
@media (max-width: 960px) {
  .tier-card--large {
    transform: none;
    margin-top: 0;
  }
}

/* Footer Logo and Spacing */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__logo-image {
  width: 55px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease;
}

.footer__logo:hover .footer__logo-image {
  transform: scale(1.05);
}

.footer__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.footer__logo-text--white {
  color: #ffffff;
  font-weight: 600;
}

.footer__logo-text--blue {
  color: var(--brand-500, #2f79a7);
  font-weight: 700;
}

/* --- Selected Work (Pro) --- */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 980px) {
  .pro-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
}

.pro-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(8, 16, 44, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 16, 44, 0.12);
}

.pro-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.pro-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}
.pro-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #0b1c3d;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  opacity: 0.9;
}

.pro-card__body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-card__title {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
  color: #0b1c3d;
}
.pro-card__meta {
  margin: 0;
  color: #46516b;
  font-size: 0.95rem;
}
.pro-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.pro-card__stats span {
  font-size: 0.78rem;
  color: #0b1c3d;
  background: #eef3fb;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}
.pro-card__actions {
  margin-top: 8px;
}

/* --- Lightbox Modal --- */
.pro-modal {
  border: none;
  padding: 0;
  max-width: 92vw;
  width: min(1200px, 92vw);
  background: transparent;
}
.pro-modal::backdrop {
  background: rgba(4, 10, 24, 0.55);
  backdrop-filter: blur(2px);
}

.pro-modal__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 90vh;
  box-shadow: 0 18px 50px rgba(8, 16, 44, 0.25);
}
.pro-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eef0f6;
  background: #f8f9fb;
}
.pro-modal__title {
  font-size: 1rem;
  margin: 0;
  color: #0b1c3d;
}
.pro-modal__open {
  font-size: 0.85rem;
  color: #2b6cb0;
  text-decoration: underline;
  margin-left: auto;
}
.pro-modal__close {
  appearance: none;
  background: #0b1c3d;
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pro-modal__body {
  overflow: auto;
  padding: 12px;
  background: #fff;
}
.pro-modal__imgwrap {
  display: flex;
  justify-content: center;
}
#workModalImg {
  height: auto;
  width: auto;
  max-width: 100%;
  /* This lets very tall screenshots fit and scroll vertically inside modal */
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(8, 16, 44, 0.18);
}

/* Contact tiles */
.contact-tiles {
  gap: 1.25rem;
}
.tile {
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}
.tile__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.tile__icon {
  font-size: 1.25rem;
  line-height: 1;
}
.tile__title {
  margin: 0;
  font-size: 1.1rem;
}
.tile__body {
  margin: 0.25rem 0 0.5rem;
  color: var(--muted, #475467);
}
.tile__list {
  margin: 0 0 0.75rem 1.1rem;
}
.tile__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Form card */
.form--card {
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 0.9rem;
}
.form__row--full {
  grid-column: 1 / -1;
}
.form__row label {
  font-weight: 600;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.7rem 0.85rem;
  background: #fff;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: 2px solid var(--brand, #2a6faa);
  outline-offset: 2px;
  border-color: transparent;
}

/* Sidebar cards */
.contact-aside {
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
}
.card__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}
.card__text {
  margin: 0 0 0.5rem;
  color: var(--muted, #475467);
}
.stack {
  display: grid;
  gap: 0.5rem;
}
.cal-placeholder {
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f6f9fc, #eef3f8);
  display: grid;
  place-items: center;
  color: #667085;
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  padding: 0.5rem 0;
}
.faq > summary {
  cursor: pointer;
  font-weight: 600;
}
.faq[open] {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

/* Spacing */
.grid--gap-lg {
  gap: 1.5rem;
}

/* Mobile */
@media (max-width: 900px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Contact tiles emphasis & layout tweaks --- */
.contact-tiles .tile {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-tiles .tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Featured (middle) card: subtle scale, ring, and raised feeling */
.contact-tiles .tile--featured {
  background: var(--surface, #0b1130); /* uses your dark surface if set */
  color: var(--on-surface, #fff);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
  outline: 1px solid rgba(255, 255, 255, 0.08);
}

/* Featured button contrast on dark card */
.contact-tiles .tile--featured .button--primary {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Keep the middle card visually centered at 3-column breakpoint */
@media (min-width: 900px) {
  .contact-tiles {
    align-items: stretch;
  }
  .contact-tiles .tile--featured {
    /* appears in the middle by being the second element in DOM */
  }
}

/* Mobile: stack with featured first for fastest path to inquiry */
@media (max-width: 899px) {
  .contact-tiles {
    display: grid;
    gap: var(--space-4, 1.25rem);
  }
  .contact-tiles .tile {
    order: 2;
  }
  .contact-tiles .tile--featured {
    order: 1;
  }
}

/* Soften list spacing and remove default bullets if your base differs */
.contact-tiles .tile__list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.1rem;
}

.contact-tiles .tile__actions .button + .button {
  margin-left: 0.5rem;
}

/* --- Emphasis + Gradient Styling --- */
.tile--featured {
  background: linear-gradient(135deg, #005cff 0%, #8a2be2 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  transform: scale(1.08);
  z-index: 2;
  transition: all 0.3s ease;
}

.tile--featured:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.tile--featured .tile__title {
  color: #fff;
}

.tile--featured .tile__body,
.tile--featured .tile__list li {
  color: rgba(255, 255, 255, 0.9);
}

/* Smaller side tiles */
.tile--small {
  transform: scale(0.92);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tile--small:hover {
  transform: scale(0.95);
  opacity: 1;
}

/* Balance spacing on 3-column grid */
@media (min-width: 900px) {
  .contact-tiles {
    align-items: stretch;
    justify-content: center;
  }
  .tile--featured {
    order: 2;
  }
  .tile--small:first-child {
    order: 1;
  }
  .tile--small:last-child {
    order: 3;
  }
}

/* Mobile stack: featured first */
@media (max-width: 899px) {
  .tile--featured {
    order: 1;
  }
  .tile--small {
    order: 2;
  }
}

/* =========================================
   COMPONENTS — Feature Cards
========================================= */

.card__icon--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 170, 211, 0.12); /* matches your accent */
  color: #00aad3;
}
