/* =========================================================
   פוטו ריאו — Photorio
   Lightweight, responsive, RTL-first stylesheet
   ========================================================= */

:root {
  /* Warm "golden hour" palette — neutral UI lets photos provide the colour */
  --bg: #f7f6f3;
  --bg-tint: #efece4;
  --surface: #ffffff;
  --ink: #1c1b18;
  --ink-2: #59554e;
  --line: #e7e3da;
  --accent: #c2761b;
  --accent-2: #9d5d14;
  --accent-soft: #f2e7d5;
  --dark: #1a1916;
  --dark-2: #26231e;
  --wa: #25d366;
  --wa-deep: #1da851;

  --shadow-sm: 0 1px 2px rgba(28, 27, 24, .05), 0 1px 3px rgba(28, 27, 24, .04);
  --shadow: 0 8px 24px -14px rgba(28, 27, 24, .16);
  --shadow-lg: 0 22px 50px -28px rgba(28, 27, 24, .22);

  --r-sm: 9px;
  --r: 13px;
  --r-lg: 18px;
  --pill: 999px;

  --font-display: "Rubik", "Assistant", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font: "Assistant", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 96%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

.skip-link {
  position: fixed; inset-block-start: -100px; inset-inline-start: 16px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: inset-block-start .2s;
}
.skip-link:focus { inset-block-start: 16px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  color: var(--accent-2); text-transform: none; margin-block-end: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow-light { color: #f0c98c; }
.eyebrow-light::before { background: #f0c98c; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.7rem);
  line-height: 1.18; letter-spacing: -.01em; color: var(--ink);
}
.section-lead { color: var(--ink-2); font-size: 1.08rem; margin-block-start: 14px; max-width: 60ch; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--pill);
  font-weight: 700; font-size: .98rem; line-height: 1;
  background: var(--btn-bg); color: #fff;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }

.btn-primary { background: var(--accent); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-2); box-shadow: var(--shadow-lg); }

.btn-wa { background: var(--wa); }
.btn-wa:hover { background: var(--wa-deep); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); background: var(--surface); }

.btn-outline {
  background: rgba(255, 255, 255, .06); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35); backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; inset-block-start: 0; z-index: 100;
  background: rgba(251, 248, 243, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-block-end: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-block-end-color: var(--line); }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; flex: none; border-radius: 13px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 12px -8px rgba(28, 27, 24, .22);
}
.brand-mark .icon { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.brand-sub { font-size: .72rem; color: var(--ink-2); font-weight: 600; letter-spacing: .01em; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.main-nav a {
  position: relative; padding: 9px 14px; border-radius: var(--r-sm);
  font-weight: 600; color: var(--ink); transition: color .2s, background .2s;
}
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 14px; inset-block-end: 4px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease;
}
.main-nav a:hover { color: var(--accent-2); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--surface);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; background: var(--dark); color: #fff; }

/* slideshow: all slides share one grid cell and cross-fade */
.slides { display: grid; }
.slide {
  grid-area: 1 / 1; position: relative; display: flex; align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(40px, 6vh, 80px);
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility 0s linear .8s;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity .8s ease, visibility 0s; }

.slide-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.slide-1 .slide-bg { background-image: url("hero/slide-1.svg"); }
.slide-2 .slide-bg { background-image: url("hero/slide-2.svg"); }
.slide-3 .slide-bg { background-image: url("hero/slide-3.svg"); }
.slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to left, rgba(16, 12, 8, .82), rgba(16, 12, 8, .46) 48%, rgba(16, 12, 8, .26)),
    linear-gradient(to top, rgba(16, 12, 8, .55), transparent 42%);
}
.slide.is-active .slide-bg { animation: kenburns 9s ease-out both; }

.slide .hero-inner { position: relative; z-index: 1; max-width: 760px; }
.slide.is-active .hero-inner > * { animation: heroUp .7s both; }
.slide.is-active .hero-inner > *:nth-child(2) { animation-delay: .08s; }
.slide.is-active .hero-inner > *:nth-child(3) { animation-delay: .16s; }
.slide.is-active .hero-inner > *:nth-child(4) { animation-delay: .24s; }
.slide.is-active .hero-inner > *:nth-child(5) { animation-delay: .32s; }

.hero .eyebrow { color: #f3cf94; }
.hero .eyebrow::before { background: #f3cf94; }
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem);
  line-height: 1.06; letter-spacing: -.02em; margin-block: 6px 18px;
}
.hero-lead { font-size: clamp(1rem, .95rem + .35vw, 1.16rem); color: rgba(255, 255, 255, .82); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block: 24px 20px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: rgba(255, 255, 255, .72); font-weight: 600; font-size: .95rem;
}
.hero-meta .icon { width: 1.1em; height: 1.1em; color: var(--accent); }
.hero-meta .dot { opacity: .4; margin-inline: 4px; }

/* slideshow controls */
.slide-nav {
  position: absolute; inset-block-start: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px); transition: background .2s ease;
}
.slide-nav:hover { background: rgba(255, 255, 255, .24); }
.slide-nav .icon { width: 24px; height: 24px; }
.slide-prev { inset-inline-end: 18px; }
.slide-next { inset-inline-start: 18px; }
.slide-prev .icon { transform: scaleX(-1); }

.slide-dots { position: absolute; inset-block-end: 24px; inset-inline: 0; z-index: 5; display: flex; gap: 9px; justify-content: center; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .42); transition: background .25s ease, width .3s ease, border-radius .3s ease; }
.dot:hover { background: rgba(255, 255, 255, .75); }
.dot.is-active { background: var(--accent); width: 30px; border-radius: 6px; }

.slide-toggle {
  position: absolute; inset-block-end: 20px; inset-inline-end: 20px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .28); backdrop-filter: blur(6px);
}
.slide-toggle .icon { width: 18px; height: 18px; }
.slide-toggle .ic-play { display: none; }
.slide-toggle.paused .ic-play { display: block; }
.slide-toggle.paused .ic-pause { display: none; }

.slide-live { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.13); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* =========================================================
   Trust strip
   ========================================================= */
.trust { background: var(--surface); border-block-end: 1px solid var(--line); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding-block: 18px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 8px 16px; }
.trust-item + .trust-item { border-inline-start: 1px solid var(--line); }
.trust-item .icon { width: 30px; height: 30px; color: var(--accent); flex: none; }
.trust-item div { display: flex; flex-direction: column; line-height: 1.25; }
.trust-item strong { font-size: 1rem; }
.trust-item span { font-size: .85rem; color: var(--ink-2); }

/* =========================================================
   Sections
   ========================================================= */
.section { padding-block: clamp(40px, 5vw, 76px); }
.section-tint { background: var(--bg-tint); }
.section-head { max-width: 720px; margin-block-end: 32px; }

/* ---------- Service cards ---------- */
.cards {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 20px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #e0d4bf; }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2); margin-block-end: 18px;
}
.card-icon .icon { width: 28px; height: 28px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; margin-block-end: 8px; }
.card p { color: var(--ink-2); font-size: .98rem; }

.card-cta {
  background: linear-gradient(150deg, var(--dark), var(--dark-2));
  color: #fff; border: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.card-cta h3 { color: #fff; }
.card-cta p { color: rgba(255, 255, 255, .78); }
.card-cta .btn { margin-block-start: auto; }

/* ---------- Studio tiles ---------- */
.tiles {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.tile {
  position: relative; overflow: hidden; min-height: 168px; border-radius: var(--r);
  display: flex; align-items: flex-end; padding: 20px;
  color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
  isolation: isolate;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .55));
}
.tile-1 { background: radial-gradient(60% 55% at 75% 20%, rgba(255, 228, 180, .28), transparent 60%), radial-gradient(45% 45% at 18% 85%, rgba(255, 255, 255, .10), transparent 60%), linear-gradient(145deg, #c9762a, #8a4a18); }
.tile-2 { background: radial-gradient(60% 55% at 80% 25%, rgba(255, 233, 190, .30), transparent 60%), radial-gradient(40% 40% at 15% 80%, rgba(255, 255, 255, .10), transparent 60%), linear-gradient(145deg, #d98e3e, #a85d1f); }
.tile-3 { background: radial-gradient(60% 55% at 78% 22%, rgba(180, 205, 230, .22), transparent 60%), radial-gradient(45% 45% at 20% 85%, rgba(255, 255, 255, .08), transparent 60%), linear-gradient(145deg, #3f4a55, #20262e); }
.tile-4 { background: radial-gradient(60% 55% at 76% 20%, rgba(255, 220, 180, .26), transparent 60%), radial-gradient(40% 40% at 18% 82%, rgba(255, 255, 255, .09), transparent 60%), linear-gradient(145deg, #b06a3a, #6f3c1c); }
.tile-5 { background: radial-gradient(60% 55% at 80% 24%, rgba(210, 225, 220, .20), transparent 60%), radial-gradient(40% 40% at 16% 84%, rgba(255, 255, 255, .08), transparent 60%), linear-gradient(145deg, #5a6b6a, #2f3c3b); }
.tile-6 { background: radial-gradient(60% 55% at 78% 22%, rgba(255, 221, 186, .26), transparent 60%), radial-gradient(45% 45% at 20% 85%, rgba(255, 255, 255, .09), transparent 60%), linear-gradient(145deg, #c06a44, #7a3a24); }
.tile-icon {
  position: absolute; inset-block-start: 16px; inset-inline-end: 16px;
  width: 40px; height: 40px; color: rgba(255, 255, 255, .55);
  transition: transform .3s ease, color .3s ease;
}
.tile:hover .tile-icon { transform: scale(1.12) rotate(-6deg); color: rgba(255, 255, 255, .85); }
.tile-label { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; position: relative; z-index: 1; }
.tiles-note { text-align: center; margin-block-start: 26px; color: var(--ink-2); }
.tiles-note a { color: var(--accent-2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Online order band
   ========================================================= */
.order-band {
  background: linear-gradient(135deg, var(--dark), #2c2113 70%);
  color: #fff; position: relative; overflow: hidden;
}
.order-band::before {
  content: ""; position: absolute; inset-block-start: -30%; inset-inline-start: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(217, 131, 36, .35), transparent 62%);
}
.order-inner {
  position: relative; padding-block: clamp(40px, 5vw, 68px);
  display: grid; gap: 30px; align-items: center;
  grid-template-columns: 1.1fr 1fr; grid-template-areas: "text steps" "btn steps";
}
.order-text { grid-area: text; }
.order-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); line-height: 1.2; }
.order-lead { color: rgba(255, 255, 255, .8); margin-block-start: 12px; max-width: 46ch; }
.order-btn { grid-area: btn; justify-self: start; align-self: start; }
.steps { grid-area: steps; display: flex; flex-direction: column; gap: 14px; }
.step {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r); padding: 16px 18px; backdrop-filter: blur(4px);
}
.step-num {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  background: var(--accent); color: #fff;
}
.step div { display: flex; flex-direction: column; line-height: 1.3; }
.step strong { font-size: 1.05rem; }
.step span { color: rgba(255, 255, 255, .68); font-size: .9rem; }

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-text p { color: var(--ink-2); margin-block-start: 16px; font-size: 1.05rem; }
.about-text strong { color: var(--ink); }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 28px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--accent-2); line-height: 1; }
.stat-label { display: block; margin-block-start: 8px; color: var(--ink-2); font-weight: 600; font-size: .92rem; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-ic {
  width: 46px; height: 46px; flex: none; border-radius: 13px;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-2);
}
.info-ic .icon { width: 24px; height: 24px; }
.info-list strong { display: block; font-size: .92rem; color: var(--ink-2); font-weight: 700; margin-block-end: 2px; }
.info-list a, .info-list > li > div > span { color: var(--ink); font-weight: 600; font-size: 1.08rem; }
.info-list a:hover { color: var(--accent-2); }
.map-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 10px; }
.hours { border-collapse: collapse; margin-block-start: 4px; font-size: .98rem; }
.hours th { text-align: start; font-weight: 700; color: var(--ink); padding: 3px 0; padding-inline-end: 18px; white-space: nowrap; }
.hours td { color: var(--ink-2); padding: 3px 0; }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow);
}
.contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-block-end: 20px; }
.field { margin-block-end: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--bg);
  color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #a89e8e; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(217, 131, 36, .14);
}
.field .invalid { border-color: #d9534f; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 6px; }
.form-actions .btn { flex: 1 1 auto; }
.form-hint { color: var(--ink-2); font-size: .88rem; margin-block-start: 14px; text-align: center; }
.form-hint.ok { color: var(--wa-deep); font-weight: 700; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, .76); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.1fr;
  padding-block-end: 40px; border-block-end: 1px solid rgba(255, 255, 255, .1);
}
.brand-light .brand-name { color: #fff; }
.brand-light .brand-sub { color: rgba(255, 255, 255, .6); }
.footer-about { margin-block: 16px 18px; max-width: 38ch; font-size: .96rem; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #fff; transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin-block-end: 16px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; padding-block: 5px; color: rgba(255, 255, 255, .72); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  padding-block: 22px; font-size: .86rem; color: rgba(255, 255, 255, .55);
}

/* =========================================================
   Floating buttons
   ========================================================= */
.fab-wa {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px -12px rgba(28, 27, 24, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab-wa .icon { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.08); }
/* Floating button kept calm — no pulsing ring, for a more professional feel */

.to-top {
  position: fixed; inset-block-end: 90px; inset-inline-end: 26px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.to-top:not([hidden]) { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--accent-2); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-inner { grid-template-columns: 1fr; grid-template-areas: "text" "steps" "btn"; }
  .order-lead { max-width: none; }
}

@media (max-width: 860px) {
  .header-cta .call-btn { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; inset-block-start: var(--header-h); inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-block-start: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 12px;
    margin-inline-start: 0;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .3s ease, opacity .25s ease;
  }
  .site-header.nav-open .main-nav { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 14px; font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .main-nav a:hover { background: var(--accent-soft); }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { margin-inline-start: auto; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .trust-item:nth-child(odd) { border-inline-start: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-block-start: 1px solid var(--line); padding-block-start: 16px; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: 11px; border-radius: 12px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-inline-start: 0 !important; }
  .trust-item:not(:first-child) { border-block-start: 1px solid var(--line); padding-block-start: 14px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-actions .btn { width: 100%; flex: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .slide-nav { display: none; }
  .slide { min-height: calc(100svh - var(--header-h)); padding-block: clamp(28px, 5vh, 56px); }
  .slide-toggle { inset-block-end: 16px; inset-inline-end: 16px; }
  .slide-dots { inset-block-end: 18px; }
}

@media print {
  .site-header, .fab-wa, .to-top, .hero-actions, .nav-toggle, .order-btn,
  .contact-form-wrap, .slide-nav, .slide-dots, .slide-toggle, .slide-bg { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .slide { background: #fff; color: #000; min-height: 0; padding-block: 20px; }
  .slide:not(.is-active) { display: none !important; }
  .hero .eyebrow, .hero-title, .hero-lead, .hero-meta { color: #000 !important; }
}

/* ---------- Real photo layers (generated SVG / gradient stays as fallback underneath) ---------- */
.slide-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.slide-bg::after { z-index: 1; }
.tile-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
