/* aminajuuksur.ee — full relaunch — editorial premium */

:root {
  /* Warm paper light theme */
  --bg: #F5EFE6;
  --bg-paper: #FAF6EE;
  --bg-card: #FFFBF3;
  --ink: #1F1612;
  --ink-soft: #4A3A33;
  --ink-mute: #7A6A60;
  --rule: #E3D9C9;
  --accent: #8C5A2B;        /* deep bronze */
  --accent-hover: #6F4520;
  --accent-soft: #B68E5A;
  --shadow: 0 1px 0 rgba(31,22,18,.04), 0 10px 30px -12px rgba(31,22,18,.18);
  --shadow-lift: 0 1px 0 rgba(31,22,18,.04), 0 24px 60px -24px rgba(31,22,18,.28);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Anchor offset under fixed topbar */
[id] { scroll-margin-top: 96px; }

/* Focus-visible — accessibility baseline */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 24%, transparent);
}

/* Placeholder styles */
::placeholder { color: var(--ink-mute); opacity: 0.6; }
::-webkit-input-placeholder { color: var(--ink-mute); opacity: 0.6; }

/* Disabled states */
button:disabled,
.btn:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn:disabled:hover { transform: none; box-shadow: none; }

body {
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #FAF6EE; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography ------------------------------------------------- */
.serif { font-family: var(--font-serif); font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

h1 { font-size: clamp(44px, 6.4vw, 96px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.0; overflow-wrap: break-word; }
h2 { font-size: clamp(32px, 5vw, 64px); font-weight: 400; letter-spacing: -0.025em; line-height: 1.02; }
h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; line-height: 1.15; }
h4 { font-size: 18px; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }

p { font-size: clamp(16px, 1.05vw, 17px); color: var(--ink-soft); max-width: 60ch; }
.lead { font-size: clamp(18px, 1.3vw, 22px); color: var(--ink-soft); line-height: 1.5; max-width: 56ch; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: var(--font-sans);
}

a.inline { color: var(--accent); border-bottom: 1px solid currentColor; transition: color .2s var(--ease); }
a.inline:hover { color: var(--accent-hover); }

/* Layout primitives ----------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 144px) 0; }
.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* Topbar ---------------------------------------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), padding .25s var(--ease), background .25s var(--ease);
}
.topbar.scrolled { padding: 12px 0; border-bottom-color: var(--rule); }
.topbar .row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 2px;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-mute); font-weight: 500;
  border-left: 1px solid var(--rule); padding-left: 20px; margin-left: 4px;
}
.lang a { color: var(--ink-mute); transition: color .2s var(--ease); }
.lang a.active, .lang a:hover { color: var(--ink); }
.lang .sep { color: var(--rule); }

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font: 500 14px/1 var(--font-sans);
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--bg-paper); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg-paper); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .25s var(--ease), color .2s var(--ease);
}
.btn-link:hover { gap: 12px; color: var(--accent-hover); }

/* Hero ------------------------------------------------------ */
.hero { padding-top: clamp(120px, 13vw, 180px); padding-bottom: clamp(80px, 10vw, 140px); position: relative; --parallax-y: 0px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-text { max-width: 720px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1; }
.hero .lead { margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  box-shadow: var(--shadow-lift);
  transform: translateZ(0);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02);
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.hero-photo:hover img { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05); }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,22,18,.08));
  pointer-events: none;
}
.hero-meta {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 13px; color: var(--bg-paper); font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-meta .tag {
  padding: 7px 14px; background: rgba(31,22,18,.78);
  backdrop-filter: blur(8px); border-radius: 999px;
  color: var(--bg-paper);
}

/* Facts strip ----------------------------------------------- */
.facts {
  background: var(--bg-paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.facts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.fact {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--rule);
}
.fact:last-child { border-right: 0; }
.fact .num {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.fact h4 { margin-bottom: 8px; color: var(--ink); }
.fact p { color: var(--ink-mute); font-size: 15px; max-width: none; }

/* Master section -------------------------------------------- */
.master-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.master-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.master-photo img { width: 100%; height: 100%; object-fit: cover; }
.master-text h2 { margin-bottom: 32px; }
.master-text p { margin-bottom: 18px; max-width: 56ch; font-size: 17px; line-height: 1.65; }
.master-quote {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 26px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}
.master-quote::before { content: '“'; font-size: 1.5em; line-height: 0; color: var(--accent); position: relative; top: 0.4em; margin-right: 4px; }
.master-quote::after { content: '”'; font-size: 1.5em; line-height: 0; color: var(--accent); position: relative; top: 0.4em; margin-left: 2px; }

/* Services -------------------------------------------------- */
.services-head {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.services-head h2 { margin: 0; }
.services-head p { max-width: 50ch; }

.services-list { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: color-mix(in oklch, var(--accent) 25%, var(--rule)); }

.service-photo {
  position: relative; min-height: 320px;
  background: var(--bg-paper);
  overflow: hidden;
}
.service-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .4s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 12px; background: rgba(31,22,18,.85); color: var(--bg-paper);
  border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-body { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 20px; }
.service-body h3 { margin-bottom: 0; }
.service-price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.service-price small { font-size: 0.4em; color: var(--ink-mute); font-weight: 400; margin-left: 8px; letter-spacing: 0; font-family: var(--font-sans); }

.service-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.service-meta div { display: flex; flex-direction: column; gap: 3px; }
.service-meta dt { font-size: 12px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.02em; }
.service-meta dd { color: var(--ink); font-weight: 500; }

.service-body p { font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 52ch; }

/* Gallery --------------------------------------------------- */
.gallery-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap;
}
.gallery-grid {
  columns: 4 240px;
  column-gap: clamp(12px, 1.6vw, 22px);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.6vw, 22px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  cursor: zoom-in;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: filter .4s var(--ease);
}
.gallery-item:hover img { filter: brightness(1.04); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(140,90,43,0));
  transition: background .3s var(--ease);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31,22,18,.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 92vw; max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: var(--bg-paper); color: var(--ink);
  border-radius: 50%; border: 0;
  font-size: 24px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox-counter {
  position: absolute; top: 28px; left: 32px;
  color: var(--bg-paper); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
}

/* Contact --------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 4vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.contact-info { padding: clamp(36px, 5vw, 60px); display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 { margin-bottom: 8px; }
.contact-row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: baseline; }
.contact-row dt { font-size: 13px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-row dd { font-size: 16px; color: var(--ink); font-weight: 500; }
.contact-row a { color: var(--ink); transition: color .2s var(--ease); border-bottom: 1px solid var(--rule); }
.contact-row a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.contact-socials { display: flex; gap: 10px; margin-top: 8px; }
.contact-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--rule); border-radius: 50%;
  color: var(--ink-soft);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .25s var(--ease);
}
.contact-socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.contact-socials svg { width: 18px; height: 18px; }

.map { position: relative; min-height: 360px; background: var(--bg-card); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.6) brightness(1.02); }

/* Booking form ---------------------------------------------- */
.form-wrap {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  max-width: 720px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.solo { grid-template-columns: 1fr; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 18px 16px 14px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font: 500 15px/1.4 var(--font-sans);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--accent); background: var(--bg-paper);
}
.field textarea { resize: vertical; min-height: 110px; padding-top: 22px; }
.field label {
  position: absolute; left: 16px; top: 18px;
  font-size: 14px; color: var(--ink-mute); pointer-events: none;
  transition: transform .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease), top .2s var(--ease);
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 40%, var(--bg-card) 60%, transparent 60%);
  padding: 0 4px;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: -7px; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.field.select::after {
  content: ''; position: absolute; top: 50%; right: 18px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink-mute); border-bottom: 1.5px solid var(--ink-mute);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.form-status { font-size: 14px; font-weight: 500; }
.form-status.success { color: #2A7F4F; }
.form-status.error { color: #B23A2C; }

/* FAQ ------------------------------------------------------- */
.faq-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
.faq-head h2 { margin-bottom: 16px; }
.faq-head p { font-size: 16px; color: var(--ink-mute); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item .faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  transition: color .2s var(--ease);
}
.faq-item:hover .faq-q { color: var(--accent); }
.faq-toggle {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--rule); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-paper);
  transition: background .2s var(--ease), transform .3s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute;
  width: 12px; height: 1.5px; background: var(--ink); border-radius: 1px;
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq-toggle::after { transform: rotate(90deg); }
.faq-item.open .faq-toggle::after { transform: rotate(0); }
.faq-item.open .faq-toggle { background: var(--accent); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--bg-paper); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .35s var(--ease), padding .3s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; padding-top: 16px; }
.faq-a p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 64ch; }

/* Footer ---------------------------------------------------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 48px 0 36px;
  background: var(--bg-paper);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h5 {
  font-size: 12px; font-weight: 600; color: var(--ink-mute);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
  font-family: var(--font-sans);
}
.footer-grid p, .footer-grid a { font-size: 15px; color: var(--ink-soft); }
.footer-grid a { display: block; padding: 4px 0; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--accent); }
.footer-brand { font-family: var(--font-serif); font-size: 26px; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mute);
}

/* Sticky CTA ------------------------------------------------ */
.sticky-cta {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink); color: var(--bg-paper);
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 20px 40px -10px rgba(31,22,18,.4);
  opacity: 0; transform: translateY(20px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s var(--ease);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--accent); }
.sticky-cta svg { width: 16px; height: 16px; }

/* Mobile menu ----------------------------------------------- */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 50%;
  align-items: center; justify-content: center;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 11px; right: 11px;
  height: 1.5px; background: var(--ink); border-radius: 1px;
  transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

.mobile-nav {
  position: fixed; inset: 0; top: 64px; z-index: 95;
  background: var(--bg);
  padding: 48px var(--gutter);
  display: flex; flex-direction: column; gap: 24px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav .btn { margin-top: 16px; align-self: flex-start; }
.mobile-nav .lang { margin-top: auto; padding-top: 24px; border-left: 0; padding-left: 0; }

/* Reveal-on-scroll ------------------------------------------ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive ------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 540px; margin: 0 auto; width: 100%; }
  .master-grid { grid-template-columns: 1fr; gap: 36px; }
  .master-photo { max-width: 480px; margin: 0; }
  .services-head { grid-template-columns: 1fr; gap: 20px; }
  .service-card { grid-template-columns: 1fr; }
  .service-photo { min-height: 280px; aspect-ratio: 16 / 11; }
  .contact-grid { grid-template-columns: 1fr; }
  .map { min-height: 320px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
}
@media (max-width: 720px) {
  .nav, .lang { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding-top: 110px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--rule); }
  .fact:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 100px 1fr; }
  .sticky-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 13px; }
  .sticky-cta span.text { display: none; }
  .gallery-grid { columns: 2 160px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
