/*
  Beauty Art Studio dark premium visual override.
  Additive only: load after main.css, bhi-desktop.css, and mobile-fixes.css.
*/

/* ── Google Fonts ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --bas-dark-bg: #030a1a;
  --bas-dark-900: #041126;
  --bas-dark-850: #061935;
  --bas-dark-800: #08234b;
  --bas-dark-700: #0b3269;
  --bas-cyan: #22d9ff;
  --bas-cyan-soft: #8befff;
  --bas-white: #ffffff;
  --bas-pearl: #edf8ff;
  --bas-muted-light: rgba(237, 248, 255, 0.76);
  --bas-muted: rgba(237, 248, 255, 0.62);
  --bas-hairline: rgba(139, 239, 255, 0.2);
  --bas-panel: rgba(6, 25, 53, 0.86);
  --bas-panel-solid: #071a37;
  --bas-panel-lift: rgba(10, 45, 91, 0.78);
  --bas-shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.34);
  --bas-shadow-cyan: 0 16px 42px rgba(34, 217, 255, 0.2);
}

html {
  background: var(--bas-dark-bg);
}

body {
  color: var(--bas-pearl);
  background:
    linear-gradient(180deg, #020713 0%, #06162f 42%, #030a1a 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(34, 217, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%, rgba(34, 217, 255, 0.035) 100%);
  content: "";
}

::selection {
  color: #031025;
  background: var(--bas-cyan);
}

.container {
  width: min(1220px, calc(100% - 40px));
}

.section {
  position: relative;
  background: transparent;
}

/* Header */
.site-header,
.site-header.is-scrolled {
  background: rgba(3, 10, 26, 0.86);
  border-bottom: 1px solid var(--bas-hairline);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  background: rgba(3, 10, 26, 0.94);
}

/* ── Centered logo layout ───────────────────────────────────────────── */
.site-header--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  grid-template-areas: "nav logo actions";
  align-items: center;
  gap: 0;
  padding: 14px clamp(18px, 4vw, 58px);
}

.site-header--centered .header-logo-center {
  grid-area: logo;
  justify-self: center;
}

.site-header--centered .header-logo-center svg,
.site-header--centered .header-logo-center img {
  width: min(180px, 38vw);
  height: auto;
  display: block;
}

.site-header--centered .primary-nav--left {
  grid-area: nav;
  justify-self: start;
}

.site-header--centered .header-actions--right {
  grid-area: actions;
  justify-self: end;
}

.site-header--centered .nav-toggle {
  display: none;
}

@media (max-width: 860px) {
  .site-header--centered {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "toggle logo actions";
  }
  .site-header--centered .primary-nav--left {
    grid-area: unset;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(3, 10, 26, 0.97);
    border-bottom: 1px solid var(--bas-hairline);
    padding: 18px clamp(18px, 5vw, 40px);
    transform: translateY(-110%);
    transition: transform 260ms ease;
    z-index: 19;
  }
  .site-header--centered .primary-nav--left.is-open {
    transform: translateY(0);
  }
  .site-header--centered .primary-nav--left .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-header--centered .nav-toggle {
    display: flex;
    grid-area: toggle;
  }
  .site-header--centered .header-logo-center svg,
  .site-header--centered .header-logo-center img {
    width: min(150px, 40vw);
  }
}

/* ── Service card photos ─────────────────────────────────── */
.service-image {
  background-image: none !important;
  background-size: cover !important;
  background-position: center center !important;
}

.service-card:nth-child(1) .service-image,
.service-archive-list .service-card:nth-child(1) .service-image {
  background-image: url('https://artbeauty.studio/wp-content/uploads/2026/05/services-collage.webp') !important;
}

.service-card:nth-child(2) .service-image,
.service-archive-list .service-card:nth-child(2) .service-image {
  background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=800&q=80&auto=format&fit=crop') !important;
}

.service-card:nth-child(3) .service-image,
.service-archive-list .service-card:nth-child(3) .service-image {
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&q=80&auto=format&fit=crop') !important;
}

.service-card:nth-child(4) .service-image,
.service-archive-list .service-card:nth-child(4) .service-image {
  background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=800&q=80&auto=format&fit=crop') !important;
}

.service-card:nth-child(5) .service-image,
.service-archive-list .service-card:nth-child(5) .service-image {
  background-image: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=800&q=80&auto=format&fit=crop') !important;
}

.service-card:nth-child(6) .service-image,
.service-archive-list .service-card:nth-child(6) .service-image {
  background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=800&q=80&auto=format&fit=crop') !important;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 10, 26, 0.55) 100%);
  pointer-events: none;
}

.service-image {
  position: relative;
}

/* Legacy img logo */
.hero-logo {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

/* Animated SVG logo in header */
.brand--svg {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
}

.brand--svg svg {
  width: min(200px, 44vw);
  height: auto;
  display: block;
  overflow: visible;
}

/* Footer SVG logo */
.footer-logo-svg {
  display: block;
  margin-bottom: 16px;
}

.footer-logo-svg svg {
  width: min(240px, 60vw);
  height: auto;
  display: block;
  overflow: visible;
}

.menu a,
.header-phone {
  color: rgba(237, 248, 255, 0.88);
}

.menu a:hover,
.menu a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--bas-cyan);
}

.menu a::after {
  background: var(--bas-cyan);
  box-shadow: 0 0 16px rgba(34, 217, 255, 0.56);
}

.nav-toggle {
  background: rgba(6, 25, 53, 0.88);
  border-color: var(--bas-hairline);
}

.nav-toggle span:not(.screen-reader-text) {
  background: var(--bas-cyan);
}

/* Buttons */
.button {
  color: #021022;
  background: linear-gradient(135deg, var(--bas-white), var(--bas-cyan) 58%, #18a9ff);
  border-color: rgba(139, 239, 255, 0.5);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-cyan);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 22px 52px rgba(34, 217, 255, 0.28);
  transform: translateY(-2px);
}

.button-ghost,
.button-outline,
.gift-box .button {
  color: var(--bas-pearl);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 239, 255, 0.38);
  box-shadow: none;
}

.button-ghost:hover,
.button-outline:hover,
.gift-box .button:hover,
.button-ghost:focus-visible,
.button-outline:focus-visible,
.gift-box .button:focus-visible {
  color: #021022;
  background: var(--bas-cyan);
  border-color: var(--bas-cyan);
}

/* Hero */
.hero {
  min-height: 720px;
  background: #030a1a;
  border-bottom: 1px solid var(--bas-hairline);
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(3, 10, 26, 0.98) 0%, rgba(4, 17, 38, 0.9) 35%, rgba(4, 17, 38, 0.48) 64%, rgba(3, 10, 26, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 10, 26, 0.16), rgba(3, 10, 26, 0.9)),
    url("../img/hero-studio.webp") 72% center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #030a1a);
  content: "";
}

.hero::after {
  background: linear-gradient(90deg, var(--bas-cyan), rgba(255, 255, 255, 0.84));
  box-shadow: 0 0 28px rgba(34, 217, 255, 0.42);
}

.hero-content {
  z-index: 2;
}

.hero-logo {
  width: min(286px, 72vw);
  margin-bottom: 26px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.reviews-grid h2,
.gift-box h2,
.contact-grid h2,
.page-section h1 {
  color: var(--bas-white);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.25rem, 6.5vw, 6.15rem);
}

.hero p {
  color: var(--bas-muted-light);
}

.hero-actions {
  margin-top: 36px;
}

/* Intro strip */
.intro-strip {
  color: var(--bas-pearl);
  background: transparent;
}

@media (min-width: 721px) {
  .intro-strip {
    width: min(1220px, calc(100% - 40px));
    margin: -44px auto 0;
    padding: 0;
  }
}

.intro-grid {
  overflow: hidden;
  background: rgba(6, 25, 53, 0.92);
  border: 1px solid var(--bas-hairline);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

.intro-grid p {
  color: var(--bas-white);
}

.intro-grid p + p {
  border-left-color: var(--bas-hairline);
}

.intro-grid p::before {
  border-color: var(--bas-cyan);
  box-shadow: 0 0 22px rgba(34, 217, 255, 0.38);
}

.intro-grid p::after {
  color: var(--bas-muted);
}

/* Shared text system */
.eyeline {
  color: var(--bas-cyan);
}

.section-heading > p:not(.eyeline),
.about-copy > p,
.gift-box p,
.contact-grid > div > p,
.trust-list p,
.service-body p,
.entry-content {
  color: var(--bas-muted-light);
}

/* Services */
.services-grid {
  gap: 20px;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(8, 35, 75, 0.9), rgba(5, 18, 40, 0.96));
  border: 1px solid var(--bas-hairline);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

.service-card:hover {
  border-color: rgba(34, 217, 255, 0.48);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.4), 0 0 34px rgba(34, 217, 255, 0.12);
}

.service-image {
  position: relative;
  isolation: isolate;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 26, 0.04), rgba(3, 10, 26, 0.4)),
    linear-gradient(90deg, rgba(34, 217, 255, 0.12), transparent 44%);
  content: "";
}

.service-body h3,
.service-body h2,
.trust-list h3,
.contact-details strong,
.contact-form label,
.site-footer h2 {
  color: var(--bas-white);
}

.service-body a,
.service-body span,
.contact-details a,
.site-footer a {
  color: var(--bas-cyan);
}

.service-body a:hover,
.service-card-link:hover .service-body span,
.contact-details a:hover,
.site-footer a:hover {
  color: var(--bas-cyan-soft);
}

.service-body a::after {
  color: var(--bas-cyan);
}

/* Trust, about, gallery */
.trust-section,
.gallery-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(4, 17, 38, 0.86), rgba(3, 10, 26, 0.94));
  border-top: 1px solid rgba(139, 239, 255, 0.12);
  border-bottom: 1px solid rgba(139, 239, 255, 0.1);
}

.trust-list article,
.contact-form,
blockquote {
  background: var(--bas-panel);
  border: 1px solid var(--bas-hairline);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

.trust-list span {
  color: #021022;
  background: linear-gradient(135deg, var(--bas-white), var(--bas-cyan));
  box-shadow: 0 0 24px rgba(34, 217, 255, 0.22);
}

.about-image,
.gallery-large,
.gallery-tile {
  border: 1px solid var(--bas-hairline);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image::after,
.gallery-large::after,
.gallery-tile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 10, 26, 0.04), rgba(3, 10, 26, 0.32));
  content: "";
}

.gallery-large,
.gallery-tile {
  position: relative;
  overflow: hidden;
}

/* Reviews and gift */
.reviews-section {
  background:
    linear-gradient(135deg, rgba(2, 7, 19, 0.98), rgba(6, 31, 67, 0.96) 58%, rgba(4, 17, 38, 0.98));
  border-top: 1px solid var(--bas-hairline);
  border-bottom: 1px solid var(--bas-hairline);
}

.reviews-section .eyeline,
.reviews-grid h2,
.gift-box .eyeline,
.gift-box h2,
.gift-box p {
  color: var(--bas-white);
}

blockquote {
  border-left: 4px solid var(--bas-cyan);
}

blockquote p {
  color: var(--bas-pearl);
}

cite {
  color: var(--bas-cyan-soft);
}

.gift-section {
  background: #030a1a;
}

.gift-box {
  background:
    linear-gradient(135deg, rgba(3, 10, 26, 0.94), rgba(8, 35, 75, 0.8)),
    linear-gradient(90deg, rgba(34, 217, 255, 0.14), transparent 58%),
    url("../img/reception-studio.webp") center / cover no-repeat;
  border: 1px solid rgba(139, 239, 255, 0.24);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

/* Contact */
.contact-details p {
  border-bottom-color: var(--bas-hairline);
}

input,
select,
textarea {
  color: var(--bas-pearl);
  background: rgba(3, 10, 26, 0.72);
  border-color: rgba(139, 239, 255, 0.24);
  border-radius: 6px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(237, 248, 255, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bas-cyan);
  box-shadow: 0 0 0 3px rgba(34, 217, 255, 0.18);
  outline: none;
}

select option {
  color: var(--bas-pearl);
  background: #071a37;
}

/* Footer */
.site-footer {
  color: var(--bas-pearl);
  background:
    linear-gradient(180deg, #041126, #020713);
  border-top: 1px solid var(--bas-hairline);
}

.site-footer p {
  color: var(--bas-muted-light);
}

.copyright {
  border-top-color: rgba(139, 239, 255, 0.16);
}

/* Inner content fallback */
.page-section {
  background: #030a1a;
}

.service-archive-hero,
.service-detail-hero {
  background:
    linear-gradient(90deg, rgba(3, 10, 26, 0.98), rgba(6, 25, 53, 0.82) 58%, rgba(3, 10, 26, 0.46)),
    linear-gradient(180deg, rgba(3, 10, 26, 0.08), rgba(3, 10, 26, 0.92)),
    url("../img/hero-studio.webp") 70% center / cover no-repeat;
  border-bottom: 1px solid var(--bas-hairline);
}

.service-archive-hero h1,
.service-detail-hero h1 {
  color: var(--bas-white);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.service-archive-hero p,
.service-detail-hero p {
  color: var(--bas-muted-light);
}

.service-detail-image,
.service-answer-grid article {
  background-color: var(--bas-panel);
  border: 1px solid var(--bas-hairline);
  border-radius: 6px;
  box-shadow: var(--bas-shadow-dark);
}

.service-detail-image {
  position: relative;
  overflow: hidden;
}

.service-detail-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 26, 0.04), rgba(3, 10, 26, 0.34)),
    linear-gradient(90deg, rgba(34, 217, 255, 0.12), transparent 44%);
  content: "";
}

.service-answer-grid article {
  background: linear-gradient(180deg, rgba(8, 35, 75, 0.86), rgba(5, 18, 40, 0.94));
}

.service-answer-grid h2 {
  color: var(--bas-white);
}

.service-answer-grid p:last-child,
.service-card-link p,
.entry-content {
  color: var(--bas-muted-light);
}

.service-seo-block,
.service-faq-section,
.related-services-section {
  background: transparent;
}

/* Tablet and mobile */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    padding-top: 10px;
  }

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

  .menu {
    background: rgba(6, 25, 53, 0.96);
    border: 1px solid var(--bas-hairline);
    border-radius: 6px;
    box-shadow: var(--bas-shadow-dark);
  }

  .menu a {
    padding: 13px 16px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(3, 10, 26, 0.96), rgba(4, 17, 38, 0.72) 58%, rgba(3, 10, 26, 0.32)),
      linear-gradient(180deg, rgba(3, 10, 26, 0.06), rgba(3, 10, 26, 0.9)),
      url("../img/hero-studio.webp") 68% center / cover no-repeat;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 10px 16px;
  }

  .brand img,
  .custom-logo {
    width: clamp(150px, 46vw, 196px);
    padding: 6px 8px;
  }

  .hero {
    min-height: min(720px, 100svh);
    padding: 112px 16px 56px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(3, 10, 26, 0.58) 0%, rgba(3, 10, 26, 0.82) 48%, rgba(3, 10, 26, 0.98) 100%),
      url("../img/hero-studio.webp") 64% center / cover no-repeat;
  }

  .hero-logo {
    width: min(228px, 70vw);
    padding: 7px 9px;
  }

  .hero h1 {
    font-size: clamp(2.38rem, 11vw, 3.2rem);
    line-height: 1.04;
  }

  .hero p {
    color: rgba(237, 248, 255, 0.84);
  }

  .hero-actions {
    gap: 10px;
  }

  .intro-strip {
    padding: 0;
    margin-top: 0;
    background: #030a1a;
  }

  .intro-grid {
    gap: 0;
  }

  .intro-grid p {
    padding: 17px 16px;
    border-top: 1px solid rgba(139, 239, 255, 0.14);
  }

  .intro-grid p + p {
    border-left: 0;
  }

  .service-card,
  .trust-list article,
  .contact-form,
  blockquote,
  .gift-box {
    border-radius: 6px;
  }

  .section-heading h2,
  .about-copy h2,
  .reviews-grid h2,
  .gift-box h2,
  .contact-grid h2,
  .page-section h1 {
    font-size: clamp(1.8rem, 7.6vw, 2.28rem);
  }

  .about-image {
    min-height: clamp(320px, 84vw, 410px);
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: 260px 200px 200px !important;
  }

  .gallery-large {
    grid-column: 1;
    grid-row: 1;
    background:
      linear-gradient(135deg, rgba(34,217,255,.05), rgba(6,25,53,.25)),
      url("https://artbeauty.studio/wp-content/uploads/2026/05/hero-studio.webp") center / cover no-repeat !important;
  }

  .gallery-tile.tile-1 {
    grid-column: 1;
    grid-row: 2;
    background:
      linear-gradient(135deg, rgba(34,217,255,.05), rgba(6,25,53,.25)),
      url("https://artbeauty.studio/wp-content/uploads/2026/05/services-collage.webp") center top / cover no-repeat !important;
  }

  .gallery-tile.tile-2 {
    grid-column: 1;
    grid-row: 3;
    background:
      linear-gradient(135deg, rgba(34,217,255,.05), rgba(6,25,53,.25)),
      url("https://artbeauty.studio/wp-content/uploads/2026/05/reception-studio.webp") center bottom / cover no-repeat !important;
  }

  .contact-details p {
    padding: 15px 0;
  }

  .site-footer {
    background: #020713;
  }
}

/* ── Typography ─────── */
body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.reviews-grid h2,
.gift-box h2,
.contact-grid h2,
.page-section h1,
.service-archive-hero h1,
.service-detail-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--bas-cyan);
}

.hero-sub {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--bas-muted-light);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Stats section ── */
.stats-section {
  padding: 48px 0;
  background: rgba(4, 17, 38, 0.7);
  border-top: 1px solid var(--bas-hairline);
  border-bottom: 1px solid var(--bas-hairline);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--bas-hairline);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bas-white);
}

.stat-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bas-muted);
}

/* ── Service card mouse-glow ── */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(34, 217, 255, 0.07),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 217, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bas-cyan) !important;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

.intro-icon {
  display: inline-block;
  margin-right: 7px;
  color: var(--bas-cyan);
  font-size: 0.7em;
  vertical-align: middle;
}

.trust-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.about-copy h2 {
  margin-bottom: 20px;
}

.gallery-section .section-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.gift-box h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid var(--bas-hairline);
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--bas-hairline);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── About page ── */
.about-story-section {
  background: var(--bas-dark-900);
}

.about-story-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 721px) {
  .about-story-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
}

.about-story-body p {
  color: var(--bas-muted-light);
  line-height: 1.72;
  margin-bottom: 18px;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.about-value-card {
  padding: 28px 26px;
  background: rgba(8, 35, 75, 0.6);
  border: 1px solid var(--bas-hairline);
  border-radius: 8px;
  transition: border-color 200ms ease, background 200ms ease;
}

.about-value-card:hover {
  background: rgba(8, 35, 75, 0.9);
  border-color: rgba(34, 217, 255, 0.35);
}

.about-value-icon {
  display: block;
  color: var(--bas-cyan);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.about-value-card h3 {
  color: var(--bas-white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-value-card p {
  color: var(--bas-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-why-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-why-list ul li {
  color: var(--bas-pearl);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.about-why-list ul li::before {
  content: "\u2726";
  position: absolute;
  left: 0;
  color: var(--bas-cyan);
  font-size: 0.65rem;
  top: 5px;
}

.about-team-section {
  background: var(--bas-dark-850);
}
