/* ════════════════════════════════════════════════════════════════
   RAEED & SONS · Light editorial theme
   Friendly · Clean · Professional · Modern
   ════════════════════════════════════════════════════════════════ */

:root {
  /* —— Colors —— */
  --bg: #fafaf7;            /* warm off-white */
  --bg-2: #ffffff;
  --bg-cream: #f4f1ea;      /* subtle cream for sections */
  --ink: #0f1922;           /* near-black, slightly blue */
  --ink-soft: #2c3a47;
  --ink-mute: #6b7785;
  --ink-faint: #98a2ad;
  --line: #e5e1d8;
  --line-soft: #ede9e0;
  --accent: #1f4068;        /* trust blue */
  --accent-deep: #152b48;
  --accent-soft: #e8eef5;
  --gold: #c89849;          /* warm secondary for trust badges */
  --green: #2f8a4f;

  /* —— Type —— */
  --f-display: "Fraunces", Georgia, serif;
  --f-sans: "Geist", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-mono: "Geist Mono", "SF Mono", Menlo, monospace;

  /* —— Motion —— */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* —— Layout —— */
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, video { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* —————————————— Utility —————————————— */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--accent); }

.section-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 600px;
  margin-top: 16px;
}

/* —————————————— Buttons —————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.005em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31,64,104,.25);
}
.btn--ghost {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* —————————————— Top bar (announcement) —————————————— */
.topbar {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .03em;
  text-align: center;
}
.topbar .live {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  vertical-align: middle;
}
.topbar .live::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: .4;
  animation: ping 2s infinite;
}
@keyframes ping {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.topbar a { color: var(--bg); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 540px) { .topbar { font-size: 11px; padding: 8px 12px; } }

/* —————————————— Navigation —————————————— */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(250,250,247,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.nav__links a {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f-mono);
  letter-spacing: .02em;
  transition: all .2s var(--ease);
}
.nav__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all .3s var(--ease);
  border-radius: 2px;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.06);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { width: 100%; font-size: 22px; padding: 14px 20px; font-family: var(--f-display); }
  .nav__burger { display: flex; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 540px) {
  .nav__cta span.lbl { display: none; }
}

/* —————————————— Hero — phone number front and center —————————————— */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero__trust .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.hero__trust .pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 540px;
  margin-bottom: 40px;
}

/* — THE BIG PHONE — */
.hero__phone {
  display: block;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(28px, 5vw, 48px);
  margin-bottom: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
  border: 1px solid var(--ink);
}
.hero__phone:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(31,64,104,.25);
}
.hero__phone::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__phone__lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__phone__lbl .live {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
}
.hero__phone__lbl .live::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: #4ade80;
  opacity: .4;
  animation: ping 2s infinite;
}
.hero__phone__num {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}
.hero__phone__num svg {
  width: clamp(28px, 4vw, 44px);
  height: clamp(28px, 4vw, 44px);
  flex-shrink: 0;
  opacity: .9;
  transition: transform .3s var(--ease);
}
.hero__phone:hover .hero__phone__num svg {
  transform: rotate(-12deg) scale(1.1);
}
.hero__phone__sub {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-family: var(--f-mono);
  letter-spacing: .02em;
}

.hero__or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__or::before, .hero__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

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

/* — Hero photo card (right side) — */
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--accent-soft);
  box-shadow:
    0 1px 2px rgba(15,25,34,.04),
    0 24px 60px rgba(15,25,34,.08);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__photo__badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg-2);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.hero__photo__badge .num {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: var(--accent);
}
.hero__photo__badge .lbl {
  font-size: 11px;
  font-family: var(--f-mono);
  color: var(--ink-mute);
  letter-spacing: .04em;
  line-height: 1.2;
}

.hero__photo__quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}
.hero__photo__quote .by {
  display: block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .04em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero__photo { aspect-ratio: 16/12; max-width: 600px; margin: 0 auto; }
}

/* —————————————— Trust strip —————————————— */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-2);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) { .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-item .icon svg { width: 22px; height: 22px; }
.trust-item .num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.trust-item .lbl {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* —————————————— Section base —————————————— */
section { position: relative; }
.section-padding { padding: clamp(72px, 10vw, 128px) 0; }
.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 800px;
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .eyebrow { margin-bottom: 20px; }

/* —————————————— Reviews section (homepage — second priority) —————————————— */
.reviews-home {
  background: var(--bg-cream);
}
.reviews-home__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .reviews-home__top { grid-template-columns: 1fr; gap: 32px; align-items: start; } }

.reviews-home__score {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.reviews-home__score .big {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
}
.reviews-home__score .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; margin-bottom: 4px; }
.reviews-home__score .src { font-size: 13px; color: var(--ink-mute); }
.reviews-home__score .src strong { color: var(--ink); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,25,34,.06);
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.review-card p {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.review-card .by {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.review-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-card .meta { flex: 1; }
.review-card .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-card .src {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .03em;
  margin-top: 2px;
}

/* —————————————— Meet the owner —————————————— */
.owner {
  background: var(--bg);
}
.owner__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .owner__inner { grid-template-columns: 1fr; gap: 40px; } }

.owner__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--accent-soft);
}
.owner__photo img { width: 100%; height: 100%; object-fit: cover; }
.owner__photo__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--bg-2);
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink-mute);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.owner__photo__caption strong { color: var(--ink); font-weight: 600; }

.owner__quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
}
.owner__quote::before {
  content: "\201C";
  position: absolute;
  top: -.4em; left: -.5em;
  font-size: 4em;
  color: var(--accent-soft);
  z-index: -1;
  font-family: var(--f-display);
  line-height: 1;
}
.owner__sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.owner__sig .name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}
.owner__sig .role {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
  letter-spacing: .03em;
}

.owner__story {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
}
.owner__story p { margin-bottom: 14px; }

/* —————————————— Services preview —————————————— */
.services-home { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.services-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .services-home__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-home__grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--bg-2);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,25,34,.08);
}
.svc-card .icon {
  width: 56px; height: 56px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all .3s var(--ease);
}
.svc-card:hover .icon { background: var(--accent); color: #fff; }
.svc-card .icon svg { width: 26px; height: 26px; }
.svc-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 10px;
  color: var(--ink);
}
.svc-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.svc-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--accent);
  font-weight: 600;
  transition: gap .3s var(--ease);
}
.svc-card:hover .arrow { gap: 12px; }
.svc-card .arrow svg { width: 14px; height: 14px; }

/* —————————————— CTA Block —————————————— */
.cta-block {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,64,104,.5), transparent 70%);
  border-radius: 50%;
}
.cta-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .cta-block__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-block h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta-block h2 em { font-style: italic; opacity: .8; }
.cta-block p {
  font-size: 17px;
  color: rgba(250,250,247,.7);
  max-width: 480px;
}
@media (max-width: 880px) { .cta-block p { margin: 0 auto; } }
.cta-block .btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 880px) { .cta-block .btns { justify-content: center; } }
.cta-block .btn--primary { background: var(--bg); color: var(--ink); }
.cta-block .btn--primary:hover { background: var(--accent); color: #fff; }
.cta-block .btn--ghost {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250,250,247,.3);
}
.cta-block .btn--ghost:hover {
  background: rgba(250,250,247,.1);
  border-color: var(--bg);
}

/* —————————————— Footer —————————————— */
.footer {
  background: var(--bg);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand p {
  margin: 20px 0;
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
}
.footer__contact a { color: var(--accent); font-weight: 500; }

.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col a, .footer__col span {
  display: block;
  padding: 4px 0;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* —————————————— Reveals —————————————— */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .07s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* —————————————— Page hero (interior pages) —————————————— */
.page-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: var(--bg);
}
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-mute);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: var(--ink-soft); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-faint); }

.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 1000px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero > .container > p {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 640px;
}

/* —————————————— Service rows (services page) —————————————— */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .service-row.reverse { direction: ltr; }
}

.service-row__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--accent-soft);
  position: relative;
}
.service-row__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-row__image:hover img { transform: scale(1.04); }
.service-row__image__num {
  position: absolute;
  top: 16px; left: 16px;
  width: 48px; height: 48px;
  background: var(--bg-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.service-row__text .eyebrow { margin-bottom: 16px; }
.service-row__text h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.service-row__text h2 em { font-style: italic; color: var(--accent); }
.service-row__text > p {
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}

.service-row__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.service-row__list > div {
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-row__list .check {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-row__list .check::before {
  content: "";
  width: 5px; height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.service-row__price {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 13px;
}
.service-row__price .lbl { color: var(--ink-mute); }
.service-row__price .val { color: var(--accent); font-weight: 600; }

/* —————————————— About / timeline —————————————— */
.timeline { margin-top: 56px; }
.timeline__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 640px) { .timeline__item { grid-template-columns: 1fr; gap: 12px; } }
.timeline__year {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -.02em;
}
.timeline__content h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.timeline__content p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
}

/* —————————————— Values grid —————————————— */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.value-card .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* —————————————— Gallery —————————————— */
.masonry {
  columns: 3;
  column-gap: 16px;
}
@media (max-width: 880px) { .masonry { columns: 2; } }
@media (max-width: 540px) { .masonry { columns: 1; } }
.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.masonry__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,25,34,.1);
}
.masonry__item img { width: 100%; display: block; transition: transform .8s var(--ease); }
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item .caption {
  padding: 16px 20px;
  background: var(--bg-2);
}
.masonry__item .caption h4 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}
.masonry__item .caption p {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

/* —————————————— Reviews page —————————————— */
.review-summary {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .review-summary { grid-template-columns: 1fr; gap: 32px; padding: 32px; } }
.review-summary__big { text-align: center; }
.review-summary__big .num {
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.03em;
}
.review-summary__big .stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-top: 8px; }
.review-summary__big .src { font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute); margin-top: 8px; }

.review-bars { display: flex; flex-direction: column; gap: 12px; }
.review-bar { display: grid; grid-template-columns: 70px 1fr 50px; gap: 14px; align-items: center; }
.review-bar .lbl { font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute); }
.review-bar .pct { font-family: var(--f-mono); font-size: 12px; color: var(--accent); text-align: right; font-weight: 600; }
.bar-track {
  height: 8px;
  background: var(--accent-soft);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  width: 0;
  transition: width 1.6s var(--ease-out);
}
.review-bar.in-view .bar-fill { width: var(--w, 50%); }

/* —————————————— Contact page —————————————— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.contact-info__item:hover {
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 12px 32px rgba(15,25,34,.06);
}
.contact-info__item .icon {
  width: 56px; height: 56px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info__item .icon svg { width: 24px; height: 24px; }
.contact-info__item h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-info__item p { font-size: 16px; line-height: 1.5; color: var(--ink); }
.contact-info__item a {
  color: var(--accent);
  font-size: 13px;
  font-family: var(--f-mono);
  margin-top: 8px;
  display: inline-block;
  font-weight: 500;
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h2 {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: all .2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.contact-form button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  transition: all .25s var(--ease);
}
.contact-form button:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(31,64,104,.25); }
.contact-form button:disabled { opacity: .85; cursor: progress; transform: none; box-shadow: none; }
.form-status {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--f-mono);
  color: var(--ink-mute);
  min-height: 1.2em;
}
.form-status[data-kind="ok"] { color: var(--green); }
.form-status[data-kind="err"] { color: #b94a48; }

.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 460px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* —————————————— Find the shop (home) —————————————— */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.visit__grid .map-wrap { height: 100%; min-height: 460px; }
@media (max-width: 880px) {
  .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .visit__grid .map-wrap { min-height: 360px; }
}

/* —————————————— Lightbox —————————————— */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 34, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__stage {
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  object-fit: contain;
}
.lightbox__stage figcaption {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(250, 250, 247, .85);
  text-align: center;
  white-space: pre-line;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, .25); transform: scale(1.05); }
.lightbox__close { top: 20px; right: 20px; font-size: 32px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 540px) {
  .lightbox__close, .lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}
