/* =============================================================
   HOT & COOL — styles.css
   Hand-crafted, mobile-first. No frameworks.
   ============================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }

/* The HTML `hidden` attribute must always win over our display:flex/grid rules */
[hidden] { display: none !important; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

:root {
  /* Brand colors derived from logo */
  --hot-50:  #FFF1F1;
  --hot-100: #FFDFDF;
  --hot-400: #F26B6B;
  --hot-500: #E63027;
  --hot-600: #D11B1B;
  --hot-700: #A8120F;

  --cool-50:  #EEF1FB;
  --cool-100: #D9DFF7;
  --cool-400: #5D74D6;
  --cool-500: #2D44B8;
  --cool-600: #1E40AF;
  --cool-700: #162E80;

  --ink:        #0B0E14;
  --ink-soft:   #1A1F2B;
  --ink-muted:  #565E70;
  --ink-line:   #E5E7EB;

  --cream: #FAFAF7;
  --bone:  #F4F2EB;
  --white: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(11,14,20,.06), 0 1px 1px rgba(11,14,20,.04);
  --shadow-md: 0 8px 24px rgba(11,14,20,.08), 0 2px 6px rgba(11,14,20,.05);
  --shadow-lg: 0 24px 60px rgba(11,14,20,.14), 0 8px 18px rgba(11,14,20,.06);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1200px;
  --gutter:    1.25rem;

  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', 'Times New Roman', serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 768px) { :root { --gutter: 2rem; } }
@media (min-width: 1200px) { :root { --gutter: 3rem; } }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.5rem, 7.5vw, 5.5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.875rem, 4.5vw, 3.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.875rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-muted); }

.muted { color: var(--ink-muted); font-weight: 500; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--hot  { background: var(--hot-500);  box-shadow: 0 0 0 4px rgba(230,48,39,.15); }
.dot--cool { background: var(--cool-600); box-shadow: 0 0 0 4px rgba(30,64,175,.15); }

.grad-hot {
  background: linear-gradient(180deg, var(--hot-500) 0%, var(--hot-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-cool {
  background: linear-gradient(180deg, var(--cool-500) 0%, var(--cool-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease-out), background .2s, color .2s, box-shadow .2s, border-color .2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--cool-400); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--hot-500);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(230,48,39,0);
}
.btn--primary:hover {
  background: var(--hot-600);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(230,48,39,.10);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink-line);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--ghost-light {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.btn--link {
  padding: 0;
  background: transparent;
  color: var(--cool-600);
  border-radius: 0;
  border: 0;
  font-weight: 600;
  position: relative;
}
.btn--link::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(.3); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.btn--link:hover::after { transform: scaleX(1); }
.btn--link:hover { transform: translateX(2px); }

.btn--lg { padding: 1.05rem 1.6rem; font-size: 1.02rem; }
.btn--sm { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Site header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-line);
  background: rgba(250,250,247,.96);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  height: 68px;
}
.brand { display: inline-flex; }
.brand__mark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand__mark--lg { font-size: 1.6rem; }
.brand__hot, .brand__cool, .brand__amp {
  padding: 0.45em 0.55em;
  color: var(--white);
}
.brand__hot  { background: var(--hot-500); }
.brand__amp  { background: linear-gradient(90deg, var(--hot-500) 0%, var(--cool-600) 100%); padding-inline: 0.3em; }
.brand__cool { background: var(--cool-600); }

.nav {
  margin-left: auto;
  display: none;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav a { position: relative; padding: 0.25rem 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

@media (min-width: 900px) {
  .nav { display: inline-flex; }
}

.header-cta { display: none; margin-left: 1rem; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1rem var(--gutter) 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--cream);
  border-bottom: 1px solid var(--ink-line);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 0.5rem; }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ---------- Hero — split editorial layout ---------- */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(620px, 100svh, 960px);
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* LEFT — text content */
.hero__content {
  display: flex;
  align-items: center;
  padding: 2.5rem var(--gutter) 3rem;
  position: relative;
}
.hero__content::before {
  /* subtle warm radial accent in background */
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle at center, rgba(230,48,39,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__content::after {
  content: "";
  position: absolute;
  bottom: -15%; right: -15%;
  width: 70%; height: 70%;
  background: radial-gradient(circle at center, rgba(30,64,175,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__content-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 5rem var(--gutter) 5rem;
  }
  .hero__content-inner {
    margin-inline: 0;
    margin-left: auto;
    padding-right: 2rem;
  }
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.9rem 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-sm);
}

.hero__h {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero__h .grad-hot  { background: linear-gradient(180deg, var(--hot-500) 0%, var(--hot-700) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__h .grad-cool { background: linear-gradient(180deg, var(--cool-500) 0%, var(--cool-700) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
  border-top: 1px solid var(--ink-line);
  padding-top: 1.5rem;
  max-width: 600px;
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero__meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* RIGHT — full-bleed photo */
.hero__media {
  position: relative;
  min-height: 360px;
  background: var(--ink);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero__media { min-height: 100%; }
}
.hero__pic {
  position: absolute; inset: 0;
}
.hero__pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% 30%;
  /* No scale transform — keeps native-size sharpness */
  image-rendering: -webkit-optimize-contrast;
}

/* Small floating "live" badge on photo */
.hero__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem 0.5rem 0.8rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero__badge-pulse {
  width: 8px; height: 8px;
  background: var(--hot-500);
  border-radius: 50%;
  position: relative;
}
.hero__badge-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--hot-500);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge-pulse::before { animation: none; }
}
@media (min-width: 1024px) {
  .hero__badge { bottom: 2rem; left: 2rem; font-size: 0.85rem; padding: 0.6rem 1.1rem 0.6rem 0.95rem; }
}

/* ---------- Trust ---------- */
.trust {
  padding: 4rem 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--ink-line);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
}
.trust__item p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.trust__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--ink-soft);
  color: var(--cream);
}
.trust__icon--hot  { background: var(--hot-500); color: var(--white); }
.trust__icon--cool { background: var(--cool-600); color: var(--white); }

/* ---------- Brands ---------- */
.brands {
  padding: 3rem 0 4rem;
  background: var(--white);
  overflow: hidden;
}
.brands__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.brands__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.brands__track {
  display: flex; align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.brands__track img {
  height: 36px;
  width: auto;
  filter: grayscale(100%) opacity(.55);
  transition: filter .3s;
}
.brands__track img:hover { filter: grayscale(0%) opacity(1); }
@media (min-width: 768px) {
  .brands__track { gap: 6rem; }
  .brands__track img { height: 44px; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---------- Section heads ---------- */
.section-head {
  margin-bottom: 3rem;
  max-width: 720px;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 1rem;
  text-wrap: balance;
}

/* ---------- Services ---------- */
.services {
  padding: 6rem 0;
  background: var(--cream);
}
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}
.service:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .service { grid-template-columns: 1.05fr 1fr; gap: 4rem; margin-bottom: 6rem; }
  .service--reverse .service__media { order: 2; }
}

.service__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.service__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service:hover .service__media img { transform: scale(1.04); }

.service__badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.service__badge--cool { background: var(--cool-600); }
.service__badge--hot  { background: var(--hot-500); }

.service__body h3 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  text-wrap: balance;
}
.service__body p {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.5rem;
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
@media (min-width: 520px) {
  .service__list { grid-template-columns: 1fr 1fr; }
}
.service__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 2px;
  transform: rotate(45deg);
}
.service:nth-of-type(1) .service__list li::before { background: var(--cool-600); }
.service:nth-of-type(2) .service__list li::before { background: var(--hot-500); }
.service:nth-of-type(3) .service__list li::before { background: var(--cool-600); }

/* ---------- Process ---------- */
.process {
  padding: 6rem 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(230,48,39,.18) 0%, transparent 60%),
    radial-gradient(800px 400px at 80% 100%, rgba(30,64,175,.22) 0%, transparent 60%);
  pointer-events: none;
}
.process .section-head h2 { color: var(--white); }
.process .eyebrow { color: rgba(255,255,255,.65); }
.process .muted { color: rgba(255,255,255,.5); }

.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
@media (min-width: 700px) { .process__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process__list { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.process__step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform .4s var(--ease-out), background .3s, border-color .3s;
}
.process__step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
}
.process__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--hot-500) 0%, var(--cool-400) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.5rem;
}
.process__step h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.process__step p {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  line-height: 1.55;
}
.process__step a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.4); }
.process__step a:hover { border-bottom-color: var(--white); }

/* ---------- About + Gallery ---------- */
.about {
  padding: 6rem 0;
  background: var(--bone);
}
.about__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .about__intro { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
}
.about__copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
  }
  .gallery__item     { grid-row: span 1; }
  .gallery__item--lg { grid-row: span 2; }
}
@media (min-width: 1100px) {
  .gallery { grid-auto-rows: 220px; gap: 1rem; }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 3 / 4;
  display: block;
}
@media (min-width: 700px) {
  .gallery__item { aspect-ratio: auto; }
  .gallery__item--lg { aspect-ratio: auto; }
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .4s;
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ---------- Reviews ---------- */
.reviews { padding: 6rem 0; background: var(--cream); }
.reviews__sub { margin-top: 0.75rem; font-size: 1rem; }
.reviews__widget {
  max-width: 760px; margin-inline: auto;
}
.reviews__placeholder {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-line);
}
.reviews__stars {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #FFB400;
  margin-bottom: 1rem;
}
.reviews__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.reviews__author { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 2rem; }

/* ---------- Contact ---------- */
.contact {
  padding: 6rem 0;
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(230,48,39,.06) 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(30,64,175,.08) 0%, transparent 60%),
    var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
}
.contact__info h2 { margin: 1rem 0 2rem; }

.contact__list {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--ink-line);
  padding-top: 1.5rem;
}
.contact__list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
@media (min-width: 520px) {
  .contact__list li { grid-template-columns: 130px 1fr; align-items: baseline; }
}
.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .2s;
}
a.contact__big:hover { color: var(--hot-600); }

/* ---------- Form ---------- */
.form {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 600px) {
  .form { padding: 2.5rem; }
}
.form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.form__sub { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: block; margin-bottom: 1rem; }
.field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-size: 1rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cool-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,64,175,.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.5;
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--hot-500); }
.check a { text-decoration: underline; color: var(--ink-soft); }

.form__note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 1rem;
}
.form__note a { color: var(--ink-soft); }

.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid transparent;
}
.form__status--success {
  background: #E8F7EE;
  color: #0A6B2E;
  border-color: #BFE9CB;
}
.form__status--error {
  background: var(--hot-50);
  color: var(--hot-700);
  border-color: var(--hot-100);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__brand { max-width: 360px; }
.footer__tag {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.footer__legal {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.5rem; }
.footer__col a { font-size: 0.95rem; color: rgba(255,255,255,.8); transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}
.footer__bottom a:hover { color: var(--white); }
@media (min-width: 700px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- Mobile sticky call ---------- */
.mobile-call {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--hot-500);
  color: var(--white);
  font-weight: 600;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.mobile-call:hover { background: var(--hot-600); }
.mobile-call:active { transform: scale(0.98); }
@media (min-width: 900px) { .mobile-call { display: none; } }

/* ---------- Cookies bar ---------- */
.cookies {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 70;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  max-width: 720px;
  margin-inline: auto;
}
.cookies a { text-decoration: underline; }
.cookies__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookies .btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.cookies .btn--ghost:hover { border-color: var(--white); }
@media (min-width: 700px) {
  .cookies { flex-direction: row; align-items: center; justify-content: space-between; left: 50%; transform: translateX(-50%); right: auto; bottom: 1.5rem; }
}

/* When mobile-call is showing, give body bottom padding so cookies/footer not hidden */
@media (max-width: 899px) {
  body { padding-bottom: 4.5rem; }
  .cookies { bottom: 4.5rem; }
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Legal pages (GDPR, Cookies) ---------- */
.legal {
  padding: 6rem 0 4rem;
  background: var(--cream);
  min-height: 70vh;
}
.legal__inner {
  max-width: 760px;
  margin-inline: auto;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.legal__updated {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ink-line);
}
.legal h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.legal p, .legal li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal ul, .legal ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal ul li { list-style: disc; }
.legal ol li { list-style: decimal; }
.legal a {
  color: var(--cool-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--hot-600); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s;
}
.legal__back:hover { color: var(--ink); }
.legal__contact {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.legal__contact strong { display: block; margin-bottom: 0.5rem; }

/* ---------- Selection ---------- */
::selection { background: var(--hot-500); color: var(--white); }
