/* ==========================================================
   RAWAN DESIGN — CINEMATIC GLASS EDITION
   Shared by all 12 pages. No frameworks or font downloads.
   01 Settings / 02 Base / 03 Logo and navigation / 04 Buttons
   05 Hero / 06 Sections / 07 Contact / 08 Inner pages
   09 Footer / 10 Responsive / 11 Motion and accessibility
   ========================================================== */

/* 01 — EDIT: brand colours, width and animation speed */
:root {
  --ink: #151515;
  --paper: #f4f0e8;
  --paper2: #ebe5da;
  --white: #fffdf8;
  --gold: #b79a63;
  --gold2: #d3bd8d;
  --muted: #615d56;
  --line: rgba(52, 43, 26, 0.15);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --width: 1240px;
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --menu-duration: 360ms;
  --glass-blur: 20px;
}

/* 02 — BASE: content remains visible without JavaScript */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  padding-top: 18px;
  background: var(--paper);
  color: var(--ink);
  font: 1rem / 1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, figure {
  margin: 0;
}

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.13;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

p { color: var(--muted); }
p + p { margin-top: 1rem; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  font: inherit;
  cursor: pointer;
}

a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid #946813;
  outline-offset: 5px;
}

.hero a:focus-visible, .method-section a:focus-visible {
  outline-color: var(--gold2);
}

[hidden] { display: none !important; }
::selection { background: var(--gold2); color: var(--ink); }

.wrap {
  width: min(var(--width), calc(100% - 96px));
  margin-inline: auto;
}

.section { padding-block: 110px; }
.compact { padding-top: 20px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

/* 03 — FLOATING NAVBAR + IMAGE LOGO
   EDIT: replace images/logo.png to change the image everywhere.
   Supplied PNG has transparent margins: these dimensions centre
   the original image without stretching or cropping its mark. */
.site-header {
  position: sticky;
  top: 18px;
  z-index: 40;
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
  border: 1px solid #ffffffe6;
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 12px 35px #00000017, inset 0 1px 0 #fffffff2;
  transition: box-shadow 300ms ease, background 300ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 9px 35px #00000024, inset 0 1px 0 #fff;
}

.header-inner {
  position: relative;
  min-height: 94px;
  padding-inline: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 135px;
  height: 88px;
}

.brand-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
}

.main-nav a {
  position: relative;
  padding: 11px 15px;
  border: 1px solid transparent;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 220ms ease, border-color 220ms ease;
}

.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: #b79a6324;
  border-color: #b79a6326;
}

.main-nav a:last-child {
  margin-left: 8px;
  padding-inline: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #35332e, #151515);
  border-color: #59564d;
  box-shadow: inset 0 1px 0 #ffffff25, 0 5px 12px #00000012;
}

.main-nav a:last-child:hover {
  background: #3d3930;
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #ffffff8c;
  color: var(--ink);
  transition: background 250ms ease, box-shadow 250ms ease;
}

.menu-toggle:hover, .menu-toggle[aria-expanded="true"] {
  background: var(--white);
  box-shadow: 0 3px 10px #00000008;
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 16px;
}

.menu-icon::before, .menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--menu-duration) var(--ease), top var(--menu-duration) var(--ease);
}

.menu-icon::before { top: 5px; }
.menu-icon::after { top: 11px; }

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 8px;
  transform: rotate(-45deg);
}

/* 04 — COMPONENTS + GLASS BUTTONS
   Solid fallback first. Blur enhances supported browsers.
   JS updates highlight position only on mouse/trackpad devices. */
.eyebrow {
  margin-bottom: 22px;
  color: #746143;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lead {
  max-width: 680px;
  font-size: 1.18rem;
  line-height: 1.8;
}

.button {
  --glow-x: 50%;
  --glow-y: 0%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 15px 24px;
  border: 1px solid #ffffffb3;
  border-radius: 100px;
  background: linear-gradient(135deg, #eadbb9, #c5a874);
  color: #242016;
  box-shadow: inset 0 1px 0 #ffffffc4, inset 0 -1px 0 #80612625, 0 6px 18px #15151510;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  transition: transform 350ms var(--ease), box-shadow 350ms ease, border-color 350ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at var(--glow-x) var(--glow-y), #ffffff80, #ffffff00 65%);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -100% -40%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 40%, #ffffff55 50%, transparent 60%);
  transform: translateX(-75%);
  pointer-events: none;
  transition: transform 850ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  border-color: #ffffffdd;
  box-shadow: inset 0 1px 0 #ffffffdd, 0 12px 25px #1515151c;
}

.button:hover::before { opacity: 1; }
.button:hover::after { transform: translateX(75%); }
.button:active { transform: translateY(0) scale(0.98); }
.button > span[aria-hidden] { transition: transform 350ms var(--ease); }
.button:hover > span[aria-hidden] { transform: translate(2px, -2px); }

.button.outline {
  background: #36342f;
  color: var(--white);
  border-color: #ffffff65;
  box-shadow: inset 0 1px 0 #ffffff45, 0 8px 22px #00000018;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-block;
  padding-bottom: 7px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gold);
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover { color: #806126; border-color: currentColor; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.section-heading > .text-link { flex-shrink: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.split .lead + .text-link { margin-top: 25px; }

/* 05 — HERO */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 780px;
  margin-top: -114px;
  padding-top: 114px;
  background: #24231f;
  color: var(--white);
  border-radius: 0 0 36px 36px;
  overflow: hidden;
}

.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image { overflow: hidden; }

.hero-image img {
  object-position: 60% 55%;
  animation: hero-settle 9s var(--ease) both;
}

.hero-shade {
  background: linear-gradient(90deg, #141510eb, #141510ad 45%, #14151022), linear-gradient(0deg, #141510b3, transparent 40%);
}

.hero-content {
  padding-block: 90px 150px;
  animation: intro-arrive 1000ms var(--ease) both;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.5rem, 7.1vw, 6.8rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  color: #dfc697;
}

.hero-content > p:not(.eyebrow) {
  max-width: 510px;
  margin-block: 30px 32px;
  color: #e9e5dc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero .eyebrow { color: #e6d4b2; margin-bottom: 25px; }

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #ffffff35;
  color: #e9e3d8;
  font-size: 0.8125rem;
}

.hero-bottom > a { display: inline-flex; align-items: center; gap: 12px; }
.hero-bottom > a > span:last-child { font-size: 1.1rem; }

/* 06 — HOMEPAGE SECTIONS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  display: block;
  padding: 8px;
  border: 1px solid #ffffffb3;
  border-radius: var(--radius);
  background: #fffdf899;
  box-shadow: 0 3px 10px #15151503;
  transition: transform 500ms var(--ease), box-shadow 500ms ease, background 350ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 20px 40px #302b2112;
}

.card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  background: #d4cdc0;
}

.card-image img { transition: transform 800ms var(--ease); }
.service-card:hover img { transform: scale(1.055); }

.card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffffa3;
  border-radius: 50%;
  background: var(--paper);
  color: #30291b;
  font-size: 0.8125rem;
}

.card-copy { padding: 23px 18px 16px; }
.card-copy h3 { font-size: 1.3rem; }
.card-copy p { margin: 12px 0 24px; font-size: 0.9375rem; }

.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}

.card-link > span:last-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper2);
  transition: background 250ms ease, transform 350ms var(--ease);
}

.service-card:hover .card-link > span:last-child {
  background: var(--gold2);
  transform: rotate(45deg);
}

.vision-section {
  padding-block: 90px;
  background: linear-gradient(115deg, #e8e1d5, #f0eae0);
  border-block: 1px solid #ddd5c8;
}

.vision-section .split { align-items: center; }

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 35px;
}

.gallery figure { min-width: 0; }

.gallery img {
  height: auto;
  aspect-ratio: 1.32;
  border-radius: var(--radius);
  background: var(--paper2);
}

.gallery figcaption { padding: 22px 4px 0; }
.gallery figcaption h2 { font-size: 1.65rem; letter-spacing: -0.025em; }
.gallery figcaption p { margin-top: 12px; }
.gallery figcaption span, figcaption { font-size: 0.8125rem; color: var(--muted); }
.gallery figcaption span { display: block; margin-top: 8px; }

.method-section {
  padding-block: 95px;
  background: radial-gradient(ellipse at 90% 0, #4c4534, #22231f 48%, #171915);
  color: var(--white);
}

.method-section .eyebrow { color: var(--gold2); }
.method-section .text-link:hover { color: var(--gold2); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.steps article {
  padding: 30px;
  border: 1px solid #ffffff24;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff0f, #ffffff03);
  box-shadow: inset 0 1px 0 #ffffff0d;
}

.steps article > span { color: var(--gold2); font-family: var(--serif); font-size: 2.5rem; }
.steps h3 { margin: 23px 0 14px; }
.steps p { color: #d3cfc7; }

/* 07 — CONTACT + ALWAYS-VISIBLE WHATSAPP ICON */
.contact-band {
  padding-block: 100px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 85% 70%, #e3d4b5, transparent 60%);
}

.contact-band p:not(.eyebrow) { margin-top: 20px; max-width: 500px; }
.contact-band .split { align-items: center; }
.contact-band .actions { justify-content: flex-end; }

.button.whatsapp {
  background: linear-gradient(135deg, #32634e, #214e3b);
  color: #fff;
  border-color: #749683;
  box-shadow: inset 0 1px 0 #ffffff33, 0 6px 15px #13312312;
}

.button[aria-disabled="true"] {
  background: #ded9cf;
  color: #555149;
  border-color: #c7c0b4;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.button[aria-disabled="true"]::before, .button[aria-disabled="true"]::after { display: none; }

.floating-whatsapp {
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  right: calc(22px + env(safe-area-inset-right, 0px));
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  background: linear-gradient(135deg, #38735a, #214e3b);
  color: #fff;
  box-shadow: inset 0 1px 1px #ffffff55, 0 8px 24px #0e2f2426;
  transition: transform 350ms var(--ease), box-shadow 350ms ease;
}

.floating-whatsapp > span { display: none; }
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: inset 0 1px 1px #ffffff88, 0 12px 30px #0e2f2438; }
.floating-whatsapp svg { width: 25px; height: 25px; flex-shrink: 0; }

/* 08 — INNER PAGES */
.page-intro { padding-block: 80px 55px; }
.page-intro h1 { max-width: 940px; }
.page-intro .lead { margin-top: 25px; }
.breadcrumbs { padding-top: 38px; color: var(--muted); font-size: 0.8125rem; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs + .page-intro { padding-top: 35px; }
.detail-photo img { height: 520px; border-radius: 28px; background: var(--paper2); }
.detail-photo figcaption, .about-photo figcaption { margin-top: 12px; }
.detail-photo img, .about-photo img { box-shadow: 0 18px 45px #302b2110; }

.details article + article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.details article p { margin-top: 16px; }
.details > .button { margin-top: 30px; }

.preparation {
  padding: 45px;
  margin-bottom: 85px;
  border: 1px solid var(--white);
  border-radius: var(--radius);
  background: linear-gradient(130deg, #ebe5da, #f7f2e8);
  box-shadow: inset 0 1px 0 #fff;
}

.preparation h2 { margin-bottom: 20px; font-size: 2rem; }
.preparation p { max-width: 800px; }
.about-photo img { height: 550px; border-radius: 24px; }
.timeline { max-width: 940px; }

.timeline article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 30px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.timeline article > span { font-family: var(--serif); font-size: 2.5rem; color: #806126; }
.timeline h2 { margin-bottom: 16px; font-size: 1.75rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 65px;
  align-items: start;
}

.contact-panel {
  padding: 42px;
  border: 1px solid #ffffffb3;
  border-radius: 28px;
  background: linear-gradient(140deg, #fffdf8cc, #e7decd);
  box-shadow: 0 12px 35px #302b2108, inset 0 1px 0 #fff;
}

.contact-panel h2, .contact-layout h2 { margin-bottom: 22px; font-size: 2rem; }
.contact-panel .button { margin-top: 25px; }
.contact-status { margin-top: 20px; font-size: 0.9375rem; }
.contact-panel > .text-link { margin-top: 20px; overflow-wrap: anywhere; }
.check-list { padding-left: 22px; margin: 24px 0; }
.check-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }

/* 09 — FOOTER */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-block: 40px 100px;
}

.footer .brand { justify-content: flex-start; margin-left: -12px; }
.footer p { margin-top: 12px; font-size: 0.875rem; }
.footer > div:last-child { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.875rem; }
.footer small { flex-basis: 100%; color: var(--muted); }

/* Blur is an enhancement; opaque fallbacks stay readable. */
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: #f4f0e8e6;
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
  }

  .button {
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    background: linear-gradient(135deg, #eadbb9ed, #c5a874c9);
  }

  .button.outline { background: linear-gradient(135deg, #ffffff29, #ffffff12); }
  .card-number { background: #f4f0e8e0; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
}

/* 10 — RESPONSIVE LAYOUTS AND ANIMATED MOBILE MENU */
@media (min-width: 1600px) {
  .hero { min-height: 860px; }
}

@media (max-width: 1120px) {
  .wrap { width: calc(100% - 64px); }
  .header-inner { padding-inline: 20px 15px; gap: 14px; }
  .main-nav a { padding-inline: 11px; }
  .split { gap: 45px; }
  .service-grid { gap: 20px; }
  .card-image { height: 225px; }
  .card-copy { padding-inline: 14px; }
  .contact-band .actions { justify-content: flex-start; }
  .contact-layout { gap: 35px; }
}

@media (max-width: 900px) {
  .site-header { top: 12px; width: calc(100% - 32px); border-radius: 23px; }
  body { padding-top: 12px; }
  .header-inner { min-height: 86px; flex-wrap: wrap; gap: 0; padding-inline: 20px; }
  .brand { width: 122px; height: 84px; }
  .brand-logo { width: 124px; height: 124px; }
  .menu-toggle:not([hidden]) { display: inline-flex; }

  /* No-JS fallback: links stay visible below the brand. */
  .main-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding-block: 10px 20px;
  }

  .main-nav a { padding: 13px 16px; }
  .main-nav a:last-child { margin: 8px 0 0; }

  /* JS also removes hidden menu links from keyboard focus. */
  .main-nav[data-enhanced="true"] {
    position: absolute;
    top: calc(100% + 10px);
    left: -1px;
    right: -1px;
    display: flex;
    max-height: calc(100vh - 132px);
    max-height: calc(100dvh - 132px);
    padding: 15px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #ffffffcc;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: inset 0 1px 0 #fff, 0 18px 40px #00000024;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.975);
    transform-origin: top center;
    transition: opacity 240ms ease, transform var(--menu-duration) var(--ease), visibility 0s linear var(--menu-duration);
  }

  .main-nav[data-enhanced="true"].open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 240ms ease, transform var(--menu-duration) var(--ease), visibility 0s;
  }

  .main-nav[data-enhanced="true"] a {
    flex-shrink: 0;
    border-radius: 13px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 260ms var(--ease), background 200ms ease;
  }

  .main-nav[data-enhanced="true"].open a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0ms), var(--delay, 0ms), 0ms;
  }

  .main-nav a:nth-child(1) { --delay: 30ms; }
  .main-nav a:nth-child(2) { --delay: 55ms; }
  .main-nav a:nth-child(3) { --delay: 80ms; }
  .main-nav a:nth-child(4) { --delay: 105ms; }
  .main-nav a:nth-child(5) { --delay: 130ms; }
  .main-nav a:nth-child(6) { --delay: 155ms; }

  .hero { min-height: 720px; margin-top: -100px; padding-top: 100px; border-radius: 0 0 28px 28px; }
  .hero-content { padding-block: 85px 135px; }
  .hero h1 { font-size: clamp(3.7rem, 8.3vw, 5.5rem); }
  .section { padding-block: 75px; }
  .compact { padding-top: 15px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .card-image { height: 260px; }
  .split, .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 35px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .vision-section, .method-section, .contact-band { padding-block: 70px; }
  .steps { gap: 16px; }
  .steps article { padding: 23px; }
  .steps h3 { font-size: 1.2rem; }
  .gallery { gap: 25px; }
  .detail-photo img { height: 400px; }
  .page-intro { padding-block: 60px 40px; }
  .about-photo img { height: 440px; }
  .footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .wrap { width: calc(100% - 40px); }
  .site-header { width: calc(100% - 24px); }
  .header-inner { padding-inline: 12px 15px; min-height: 84px; }
  .menu-toggle { font-size: 0.875rem; padding-inline: 14px; }
  .hero { min-height: 730px; }
  .hero-content { padding-block: 70px 135px; }
  .hero h1 { font-size: clamp(3rem, 11.5vw, 4.3rem); }
  .hero .eyebrow { max-width: 270px; }
  .hero-content > p:not(.eyebrow) { font-size: 1rem; margin-block: 25px; }
  .hero-shade { background: linear-gradient(90deg, #141510e6, #14151080), linear-gradient(0deg, #141510b3, transparent); }
  .hero .actions { align-items: stretch; flex-direction: column; max-width: 340px; }
  .hero-bottom { bottom: 28px; align-items: flex-end; }
  .hero-bottom > a { gap: 8px; }
  .hero-bottom > span { max-width: 110px; text-align: right; }
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; }
  h1 { font-size: clamp(2.65rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(2rem, 7.7vw, 2.6rem); }
  .section { padding-block: 62px; }
  .compact { padding-top: 12px; }
  .section-heading { margin-bottom: 30px; }
  .service-grid, .gallery, .steps { grid-template-columns: minmax(0, 1fr); }
  .service-grid { gap: 22px; }
  .card-image { height: 280px; }
  .card-copy { padding: 22px 18px 16px; }
  .card-copy h3 { font-size: 1.4rem; }
  .card-copy p { font-size: 1rem; }
  .gallery { gap: 34px; }
  .gallery img { aspect-ratio: 1.2; }
  .steps { margin-top: 30px; gap: 18px; }
  .steps article { padding: 28px; }
  .steps h3 { font-size: 1.35rem; margin-top: 15px; }
  .contact-band .actions { align-items: stretch; flex-direction: column; }
  .button { max-width: 100%; min-height: 56px; padding-inline: 22px; gap: 18px; }
  .timeline article { grid-template-columns: 42px minmax(0, 1fr); gap: 18px; }
  .detail-photo img { height: 300px; border-radius: 20px; }
  .about-photo img { height: 360px; }
  .preparation { padding: 28px; margin-bottom: 60px; }
  .contact-panel { padding: 28px; }
  .contact-panel .button { width: 100%; }
  .lead { font-size: 1.1rem; }
  .footer > div:last-child { padding-right: 45px; }
  .floating-whatsapp { width: 52px; height: 52px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
}

/* 11 — MOTION / ACCESSIBILITY
   Content is NEVER hidden while waiting for JS or an observer. */
@keyframes hero-settle {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

@keyframes intro-arrive {
  from { transform: translateY(16px); }
  to { transform: translateY(0); }
}

@keyframes section-arrive {
  from { transform: translateY(20px); }
  to { transform: translateY(0); }
}

.in-view { animation: section-arrive 850ms var(--ease) both; }

@media (hover: none) {
  .service-card:hover, .button:hover, .floating-whatsapp:hover { transform: none; }
  .service-card:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header, .main-nav[data-enhanced="true"] { background: var(--paper); }
  .button { background: var(--gold2); }
  .button.outline { background: #35332e; }
  .button.whatsapp { background: #235c43; }
  *, *::before, *::after { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
}
