

/* ============================================================
   TOKENS
   ============================================================ */
:root{
  --ink:        #101a2c;
  --ink-2:      #1b2a45;
  --ink-3:      #24365a;
  --paper:      #eef1ef;
  --paper-dim:  #e4e8e5;
  --card:       #ffffff;
  --line:       #d9ddd8;
  --line-dark:  rgba(255,255,255,.14);
  --text:       #17212f;
  --muted:      #5b6675;
  --muted-dark: #aeb8c6;
  --brass:      #b5822f;
  --brass-deep: #8a6220;
  --brass-tint: #f3e6cd;
  --whatsapp:   #25d366;
  --whatsapp-d: #1da851;
  --danger:     #c0432c;
  --radius-s:   8px;
  --radius-m:   14px;
  --radius-l:   22px;
  --shadow-s:   0 1px 2px rgba(16,26,44,.06);
  --shadow-m:   0 10px 30px -12px rgba(16,26,44,.25);
  --shadow-l:   0 24px 60px -20px rgba(16,26,44,.35);
  --maxw:       1180px;
  --font-d:     'Space Grotesk', sans-serif;
  --font-b:     'Inter', sans-serif;
  --font-m:     'IBM Plex Mono', monospace;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0;
  font-family:var(--font-b);
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-d); margin:0; line-height:1.12; letter-spacing:-.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
.container{ max-width:var(--maxw); margin-inline:auto; padding-inline:20px; }
@media (min-width:860px){ .container{ padding-inline:32px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-m); font-size:12.5px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; color:var(--brass-deep);
}
.eyebrow::before{ content:""; width:16px; height:2px; background:var(--brass); display:inline-block; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(28px,4vw,38px); margin-top:10px; }
.section-head p{ color:var(--muted); margin-top:12px; font-size:16px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow::before{ display:none; }

section{ padding:76px 0; }
.on-dark{ background:var(--ink); color:#fff; }
.on-dim{ background:var(--paper-dim); }

/* icon svg base */
.icon{ width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.icon.filled{ fill:currentColor; stroke:none; }

/* buttons */
.btn{
  --btn-h:50px;
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  height:var(--btn-h); padding:0 24px; border-radius:var(--radius-s);
  font-weight:700; font-size:15px; border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-brass{ background:var(--brass); color:#1c1204; }
.btn-brass:hover{ background:var(--brass-deep); color:#fff; }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:var(--ink-2); }
.btn-whatsapp{ background:var(--whatsapp); color:#08320f; }
.btn-whatsapp:hover{ background:var(--whatsapp-d); color:#fff; }
.btn-outline{ background:transparent; border-color:var(--line); color:var(--text); }
.btn-outline:hover{ border-color:var(--brass); color:var(--brass-deep); }
.btn-outline-light{ background:transparent; border-color:var(--line-dark); color:#fff; }
.btn-outline-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn-block{ width:100%; }
.btn-sm{ --btn-h:42px; padding:0 18px; font-size:14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed; inset-inline:0; top:0; z-index:60;
  transition:background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(16,26,44,.92); backdrop-filter:blur(10px);
  border-color:var(--line-dark); box-shadow:0 2px 18px rgba(0,0,0,.18);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:76px; gap:20px; }
.brand{ display:flex; align-items:center; gap:11px; color:#fff; }
.brand-mark{
  width:44px; height:44px; border-radius:50%; flex-shrink:0; overflow:hidden;
  box-shadow:0 0 0 2px rgba(255,255,255,.15);
}
.brand-mark img{ width:100%; height:100%; object-fit:cover; display:block; }
.brand-name{ font-family:var(--font-d); font-weight:700; font-size:18px; line-height:1.1; }
.brand-tag{ display:block; font-family:var(--font-m); font-size:10.5px; letter-spacing:.09em; text-transform:uppercase; color:var(--muted-dark); font-weight:500; }

.main-nav{ display:none; align-items:center; gap:2px; }
.main-nav ul.menu{ display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0; }
.main-nav li{ list-style:none; }
.main-nav a{
  color:rgba(255,255,255,.8); font-weight:600; font-size:14.5px;
  padding:9px 14px; border-radius:8px; transition:background-color .15s, color .15s;
  display:inline-block;
}
.main-nav a:hover{ color:#fff; background:rgba(255,255,255,.08); }

.header-cta{ display:none; align-items:center; gap:10px; }
.header-phone{
  display:flex; align-items:center; gap:8px; color:#fff; font-family:var(--font-m);
  font-size:14px; font-weight:600; padding:0 6px;
}

.menu-toggle{
  display:flex; width:42px; height:42px; align-items:center; justify-content:center;
  border-radius:8px; border:1px solid var(--line-dark); background:transparent; color:#fff;
}
@media (min-width:960px){
  .main-nav{ display:flex; }
  .header-cta{ display:flex; }
  .menu-toggle{ display:none; }
}

.mobile-nav{
  position:fixed; inset:76px 0 0 0; z-index:59; background:var(--ink);
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:opacity .2s ease, transform .2s ease; overflow-y:auto;
}
.mobile-nav.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
.mobile-nav .container{ padding-top:18px; padding-bottom:28px; }
.mobile-nav ul.menu{ display:flex; flex-direction:column; gap:4px; list-style:none; margin:0; padding:0; }
.mobile-nav li{ list-style:none; }
.mobile-nav a{ display:block; color:#fff; font-weight:600; font-size:17px; padding:14px 6px; border-bottom:1px solid var(--line-dark); }
.mobile-nav .cta-row{ display:flex; flex-direction:column; gap:10px; margin-top:18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; background:var(--ink); color:#fff; overflow:hidden;
  padding-top:150px; padding-bottom:80px;
}
.hero::before{
  /* blueprint / pipework grid texture */
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse 90% 70% at 30% 20%, #000 40%, transparent 85%);
}
.hero::after{
  content:""; position:absolute; right:-160px; top:-160px; width:560px; height:560px;
  border-radius:50%; background:radial-gradient(circle, rgba(181,130,47,.28), transparent 70%);
  pointer-events:none;
}
.hero-grid{
  position:relative; display:grid; gap:52px; align-items:start;
}
@media (min-width:980px){ .hero-grid{ grid-template-columns:1.15fr .85fr; gap:40px; } }

.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.badge{
  display:inline-flex; align-items:center; gap:7px; font-size:12.5px; font-weight:700;
  padding:7px 13px; border-radius:999px; letter-spacing:.02em;
}
.badge-brass{ background:var(--brass); color:#1c1204; }
.badge-outline{ border:1px solid var(--line-dark); color:#fff; background:rgba(255,255,255,.05); }

.hero h1{ font-size:clamp(34px,5.2vw,58px); font-weight:700; max-width:16ch; }
.hero h1 em{ font-style:normal; color:var(--brass); }
.hero-lede{ margin-top:18px; max-width:46ch; color:var(--muted-dark); font-size:17px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }

.hero-meta{ display:flex; flex-wrap:wrap; gap:26px; margin-top:44px; }
.hero-meta-item{ display:flex; align-items:center; gap:10px; }
.hero-meta-item .icon{ color:var(--brass); width:20px; height:20px; }
.hero-meta-num{ font-family:var(--font-d); font-weight:700; font-size:20px; line-height:1; }
.hero-meta-label{ font-size:12px; color:var(--muted-dark); }

/* ticket widget — signature element */
.ticket{
  position:relative; background:var(--card); color:var(--text);
  border-radius:var(--radius-m); box-shadow:var(--shadow-l);
  padding:26px 24px 24px;
}
.ticket::before,.ticket::after{
  content:""; position:absolute; left:0; right:0; height:16px;
  background-image:radial-gradient(circle at 14px 8px, var(--ink) 8px, transparent 8.5px);
  background-size:28px 16px; background-repeat:repeat-x;
}
.ticket::before{ top:-8px; }
.ticket::after{ bottom:-8px; transform:rotate(180deg); }
.ticket-head{ display:flex; align-items:center; justify-content:space-between; padding-bottom:14px; margin-bottom:16px; border-bottom:1px dashed var(--line); }
.ticket-head .t-label{ font-family:var(--font-m); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.ticket-head .t-no{ font-family:var(--font-m); font-size:12px; font-weight:600; color:var(--brass-deep); }
.ticket h3{ font-size:20px; }
.ticket-sub{ color:var(--muted); font-size:13.5px; margin-top:4px; }

.field{ margin-top:14px; }
.field label{ display:block; font-size:12.5px; font-weight:700; margin-bottom:6px; color:var(--text); }
.field select, .field input{
  width:100%; height:46px; border-radius:var(--radius-s); border:1px solid var(--line);
  background:var(--paper); padding:0 13px; font-family:var(--font-b); font-size:14.5px; color:var(--text);
  transition:border-color .15s, box-shadow .15s;
}
.field select:focus, .field input:focus{ outline:none; border-color:var(--brass); box-shadow:0 0 0 3px var(--brass-tint); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ticket .btn{ margin-top:18px; }
.ticket-note{ display:flex; align-items:center; gap:7px; font-size:12px; color:var(--muted); margin-top:12px; justify-content:center; text-align:center; }
.ticket-note .icon{ width:15px; height:15px; color:var(--brass); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip{ background:var(--ink-2); border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.trust-strip .container{
  display:grid; grid-template-columns:repeat(2,1fr); gap:22px; padding-block:26px;
}
@media (min-width:720px){ .trust-strip .container{ grid-template-columns:repeat(4,1fr); } }
.trust-item{ display:flex; align-items:center; gap:12px; color:#fff; }
.trust-item .icon-wrap{
  width:40px; height:40px; border-radius:10px; background:rgba(181,130,47,.16);
  display:flex; align-items:center; justify-content:center; color:var(--brass); flex-shrink:0;
}
.trust-item strong{ display:block; font-size:14.5px; font-weight:700; }
.trust-item span{ display:block; font-size:12.5px; color:var(--muted-dark); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{ display:grid; gap:48px; align-items:center; }
@media (min-width:920px){ .about-grid{ grid-template-columns:.85fr 1.15fr; gap:60px; } }

.about-card{
  position:relative; background:var(--ink); color:#fff; border-radius:var(--radius-l);
  padding:34px 28px; overflow:hidden;
}
.about-card::before{
  content:""; position:absolute; inset:0; opacity:.35;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:30px 30px;
}
.about-card-inner{ position:relative; }
.about-seal-row{ display:flex; align-items:center; gap:14px; }
.about-seal{ width:64px; height:64px; border-radius:50%; flex-shrink:0; object-fit:cover; box-shadow:0 0 0 3px rgba(181,130,47,.5), 0 8px 20px rgba(0,0,0,.35); }
.about-stat-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:22px; }
.about-stat{ border:1px solid var(--line-dark); border-radius:var(--radius-s); padding:16px; }
.about-stat .num{ font-family:var(--font-d); font-size:30px; font-weight:700; color:var(--brass); }
.about-stat .lbl{ font-size:12.5px; color:var(--muted-dark); margin-top:4px; }

.feature-list{ display:grid; gap:16px; margin-top:30px; }
@media (min-width:620px){ .feature-list{ grid-template-columns:1fr 1fr; } }
.feature{ display:flex; gap:14px; padding:18px; border:1px solid var(--line); border-radius:var(--radius-m); background:var(--card); }
.feature .icon-wrap{
  width:42px; height:42px; border-radius:10px; background:var(--paper-dim);
  display:flex; align-items:center; justify-content:center; color:var(--brass-deep); flex-shrink:0;
}
.feature h4{ font-size:15.5px; }
.feature p{ font-size:13.5px; color:var(--muted); margin-top:4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.filter-btn{
  padding:9px 18px; border-radius:999px; border:1px solid var(--line); background:var(--card);
  font-size:13.5px; font-weight:700; color:var(--muted); transition:.15s;
}
.filter-btn:hover{ border-color:var(--brass); color:var(--brass-deep); }
.filter-btn.active{ background:var(--ink); border-color:var(--ink); color:#fff; }

.service-grid{ display:grid; gap:18px; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); }
.service-card{
  position:relative; background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m);
  padding:24px 22px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex; flex-direction:column;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-m); border-color:var(--brass); }
.service-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.service-icon{ width:46px; height:46px; border-radius:11px; background:var(--ink); color:var(--brass); display:flex; align-items:center; justify-content:center; }
.service-code{ font-family:var(--font-m); font-size:11px; color:var(--muted); border:1px solid var(--line); border-radius:6px; padding:3px 7px; }
.service-card h3{ font-size:17px; margin-top:16px; }
.service-card p{ font-size:13.5px; color:var(--muted); margin-top:6px; flex:1; }
.service-link{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13.5px; font-weight:700; color:var(--brass-deep); }
.service-link .icon{ width:15px; height:15px; transition:transform .15s; }
.service-card:hover .service-link .icon{ transform:translateX(3px); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{ display:grid; gap:20px; counter-reset:step; }
@media (min-width:820px){ .steps{ grid-template-columns:repeat(3,1fr); } }
.step{ position:relative; padding:28px 24px 24px; border:1px solid var(--line); border-radius:var(--radius-m); background:var(--card); }
.step-num{ font-family:var(--font-d); font-size:38px; font-weight:700; color:var(--brass-tint); -webkit-text-stroke:1.5px var(--brass); line-height:1; }
.step h3{ font-size:17px; margin-top:14px; }
.step p{ font-size:13.5px; color:var(--muted); margin-top:8px; }
.step-connector{ display:none; }
@media (min-width:820px){
  .step:not(:last-child)::after{
    content:""; position:absolute; right:-22px; top:50%; width:16px; height:1px;
    background:repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px);
  }
}

/* ============================================================
   WORK / VISUAL SHOWCASE
   ============================================================ */
.work-grid{ display:grid; gap:14px; grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .work-grid{ grid-template-columns:repeat(3,1fr); } }
.work-tile{
  position:relative; aspect-ratio:1/1; border-radius:var(--radius-m); overflow:hidden;
  background:linear-gradient(155deg, var(--ink-3), var(--ink) 70%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:18px;
  isolation:isolate;
}
.work-tile::before{
  content:""; position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:22px 22px; z-index:-1;
}
.work-tile .work-icon{ color:var(--brass); width:32px; height:32px; margin-bottom:auto; }
.work-tile span{ color:#fff; font-weight:700; font-size:14.5px; }
.work-tile small{ color:var(--muted-dark); font-size:11.5px; font-family:var(--font-m); }

/* ============================================================
   REVIEWS
   ============================================================ */
.rating-summary{
  display:flex; flex-wrap:wrap; align-items:center; gap:26px; justify-content:center;
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-l);
  padding:26px 32px; margin-bottom:40px;
}
.rating-num{ font-family:var(--font-d); font-size:46px; font-weight:700; }
.rating-stars{ display:flex; gap:3px; color:var(--brass); margin-top:4px; }
.rating-stars .icon{ width:17px; height:17px; }
.rating-sep{ width:1px; height:44px; background:var(--line); }
.rating-src{ display:flex; flex-direction:column; gap:3px; }
.rating-src strong{ font-size:14.5px; }
.rating-src span{ font-size:12.5px; color:var(--muted); }

.review-grid{ display:grid; gap:18px; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); }
.review-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:22px; position:relative; }
.review-top{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:42px; height:42px; border-radius:50%; background:var(--ink); color:var(--brass);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-weight:700; font-size:15px; flex-shrink:0;
}
.review-name{ font-weight:700; font-size:14.5px; }
.review-date{ font-size:12px; color:var(--muted); }
.review-stars{ display:flex; gap:2px; color:var(--brass); margin-top:12px; }
.review-stars .icon{ width:14px; height:14px; }
.review-quote{ font-size:14px; color:var(--text); margin-top:10px; line-height:1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:760px; margin-inline:auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius-m); background:var(--card); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:19px 22px; text-align:left; background:transparent; border:none; font-weight:700; font-size:15.5px; color:var(--text);
}
.faq-q .icon{ color:var(--brass); transition:transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q .icon{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a-inner{ padding:0 22px 20px; color:var(--muted); font-size:14px; }

/* ============================================================
   BOOKING (full form)
   ============================================================ */
.booking-panel{
  background:var(--ink); color:#fff; border-radius:var(--radius-l); padding:40px 28px;
  position:relative; overflow:hidden;
}
.booking-panel::before{
  content:""; position:absolute; inset:0; opacity:.4;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:36px 36px;
}
.booking-inner{ position:relative; display:grid; gap:36px; }
@media (min-width:900px){ .booking-inner{ grid-template-columns:.9fr 1.1fr; align-items:center; } }
.booking-copy .eyebrow{ color:var(--brass); }
.booking-copy .eyebrow::before{ background:var(--brass); }
.booking-copy h2{ font-size:clamp(26px,4vw,34px); margin-top:10px; color:#fff; }
.booking-copy p{ color:var(--muted-dark); margin-top:12px; }
.booking-list{ margin-top:22px; display:flex; flex-direction:column; gap:12px; }
.booking-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--muted-dark); }
.booking-list .icon{ color:var(--brass); width:18px; height:18px; margin-top:2px; flex-shrink:0; }

.booking-form{ background:var(--card); color:var(--text); border-radius:var(--radius-m); padding:26px; box-shadow:var(--shadow-l); }
.booking-form .field-row3{ display:grid; gap:14px; }
@media (min-width:520px){ .booking-form .field-row3{ grid-template-columns:1fr 1fr; } }
.booking-form .btn{ margin-top:18px; }
.form-actions{ display:grid; gap:10px; margin-top:20px; }
@media (min-width:480px){ .form-actions{ grid-template-columns:1fr 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ background:var(--ink); color:var(--muted-dark); padding-top:64px; }
.footer-grid{ display:grid; gap:40px; }
@media (min-width:780px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; } }
.footer-brand p{ margin-top:14px; font-size:13.5px; max-width:32ch; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:9px; border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:.15s;
}
.footer-social a:hover{ background:var(--brass); border-color:var(--brass); color:#1c1204; }
.footer-col h4{ font-family:var(--font-b); color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.07em; font-weight:700; }
.footer-col ul{ margin-top:16px; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; transition:color .15s; }
.footer-col a:hover{ color:#fff; }
.footer-col li{ display:flex; gap:9px; align-items:flex-start; font-size:14px; }
.footer-col .icon{ width:17px; height:17px; color:var(--brass); margin-top:2px; flex-shrink:0; }
.footer-bottom{
  margin-top:52px; border-top:1px solid var(--line-dark); padding-block:22px;
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between; font-size:12.5px;
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.float-actions{ position:fixed; right:18px; bottom:18px; z-index:55; display:flex; flex-direction:column; gap:12px; }
.float-btn{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-l); transition:transform .15s ease;
}
.float-btn:hover{ transform:scale(1.06); }
.float-btn.call{ background:var(--brass); color:#1c1204; }
.float-btn.wa{ background:var(--whatsapp); color:#08320f; }

/* toast */
.toast{
  position:fixed; left:50%; bottom:26px; transform:translate(-50%,20px); z-index:80;
  background:var(--ink); color:#fff; padding:12px 20px; border-radius:999px; font-size:13.5px; font-weight:600;
  box-shadow:var(--shadow-l); opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
  display:flex; align-items:center; gap:8px;
}
.toast.show{ opacity:1; transform:translate(-50%,0); }
.toast .icon{ width:16px; height:16px; color:var(--brass); }

/* reveal-on-scroll (only hides content once JS confirms it can reveal it again) */
.js .reveal{ opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.js .reveal.in{ opacity:1; transform:translateY(0); }

/* misc */
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.sr-skip{ position:absolute; left:-999px; top:auto; }
.sr-skip:focus{ left:20px; top:12px; z-index:100; background:#fff; color:#000; padding:10px 16px; border-radius:8px; }
:focus-visible{ outline:2px solid var(--brass); outline-offset:2px; }

/* ============================================================
   WORDPRESS CORE / GENERIC PAGE & POST CONTENT
   (used by page.php, single.php, archive.php, 404.php, search.php)
   ============================================================ */
.page-hero{
  background:var(--ink); color:#fff; padding:150px 0 56px; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse 90% 70% at 30% 20%, #000 40%, transparent 85%);
}
.page-hero .container{ position:relative; }
.page-hero h1{ font-size:clamp(28px,4.5vw,44px); }
.page-hero p.subhead{ margin-top:12px; color:var(--muted-dark); font-size:16px; max-width:60ch; }
.breadcrumbs{ font-family:var(--font-m); font-size:12px; color:var(--muted-dark); margin-bottom:14px; letter-spacing:.03em; }
.breadcrumbs a{ color:var(--muted-dark); }
.breadcrumbs a:hover{ color:#fff; }

.content-area{ padding:64px 0; }
.content-wrap{ display:grid; gap:48px; }
@media (min-width:960px){ .content-wrap.has-sidebar{ grid-template-columns:1fr 300px; } }

article.entry{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:32px; margin-bottom:28px; }
article.entry .entry-thumb{ border-radius:var(--radius-s); overflow:hidden; margin-bottom:22px; }
article.entry .entry-meta{ font-family:var(--font-m); font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; }
article.entry .entry-title{ font-size:26px; margin-bottom:14px; }
article.entry .entry-title a{ color:var(--text); }
article.entry .entry-title a:hover{ color:var(--brass-deep); }

.entry-content{ color:var(--text); font-size:16px; line-height:1.75; }
.entry-content > *+*{ margin-top:1.1em; }
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4{ margin-top:1.6em; margin-bottom:.4em; }
.entry-content h2{ font-size:26px; }
.entry-content h3{ font-size:21px; }
.entry-content p{ margin:0; }
.entry-content ul,.entry-content ol{ padding-left:1.3em; list-style:revert; }
.entry-content li{ margin:.35em 0; }
.entry-content a{ color:var(--brass-deep); text-decoration:underline; text-underline-offset:2px; }
.entry-content a:hover{ color:var(--brass); }
.entry-content img{ border-radius:var(--radius-s); height:auto; }
.entry-content blockquote{
  border-left:3px solid var(--brass); padding:4px 0 4px 18px; color:var(--muted); font-style:italic;
}
.entry-content table{ width:100%; border-collapse:collapse; font-size:14.5px; }
.entry-content table th,.entry-content table td{ border:1px solid var(--line); padding:10px 12px; text-align:left; }
.entry-content table th{ background:var(--paper-dim); }
.entry-content .wp-caption{ max-width:100%; }
.entry-content .wp-caption-text{ font-size:12.5px; color:var(--muted); margin-top:6px; text-align:center; }
.entry-content pre{ background:var(--ink); color:#fff; padding:16px; border-radius:var(--radius-s); overflow-x:auto; font-size:13.5px; }
.entry-content code{ background:var(--paper-dim); padding:.15em .4em; border-radius:4px; font-size:.9em; }

.entry-footer{ margin-top:24px; padding-top:18px; border-top:1px solid var(--line); font-size:13px; color:var(--muted); display:flex; flex-wrap:wrap; gap:14px; }
.entry-footer a{ color:var(--brass-deep); font-weight:600; }

.pagination{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.pagination a,.pagination span{
  display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 10px;
  border:1px solid var(--line); border-radius:var(--radius-s); font-size:13.5px; font-weight:600; color:var(--text);
}
.pagination a:hover{ border-color:var(--brass); color:var(--brass-deep); }
.pagination .current{ background:var(--ink); border-color:var(--ink); color:#fff; }

.post-nav{ display:flex; justify-content:space-between; gap:16px; margin-top:8px; flex-wrap:wrap; }
.post-nav a{ font-size:13.5px; font-weight:700; color:var(--brass-deep); max-width:46%; }
.post-nav .label{ display:block; font-family:var(--font-m); font-size:11px; color:var(--muted); text-transform:uppercase; margin-bottom:4px; }

.sidebar .widget{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:22px; margin-bottom:20px; }
.sidebar .widget-title{ font-family:var(--font-d); font-size:16px; margin-bottom:14px; }
.sidebar ul{ display:flex; flex-direction:column; gap:10px; }
.sidebar a{ font-size:14px; color:var(--muted); }
.sidebar a:hover{ color:var(--brass-deep); }

/* search form (search.php / widget) */
.search-form{ display:flex; gap:8px; }
.search-form input[type="search"]{
  flex:1; height:46px; border-radius:var(--radius-s); border:1px solid var(--line); background:var(--paper); padding:0 14px; font-size:14.5px;
}
.search-form button{ height:46px; padding:0 18px; border-radius:var(--radius-s); background:var(--ink); color:#fff; border:none; font-weight:700; }

/* comments */
.comments-area{ margin-top:36px; }
.comments-title{ font-size:20px; margin-bottom:20px; }
.comment-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:18px; }
.comment-body{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:18px 20px; }
.comment-author{ font-weight:700; font-size:14.5px; }
.comment-meta{ font-size:12px; color:var(--muted); margin-bottom:8px; }
.comment-content p{ font-size:14.5px; color:var(--text); }
.comment-reply-link{ font-size:12.5px; font-weight:700; color:var(--brass-deep); }
.comment-respond{ margin-top:24px; background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:22px; }
.comment-respond .comment-form p{ margin-top:14px; }
.comment-respond label{ display:block; font-size:12.5px; font-weight:700; margin-bottom:6px; }
.comment-respond input[type="text"],.comment-respond input[type="email"],.comment-respond input[type="url"],.comment-respond textarea{
  width:100%; border-radius:var(--radius-s); border:1px solid var(--line); background:var(--paper); padding:10px 13px; font-size:14.5px; font-family:var(--font-b);
}
.comment-respond textarea{ min-height:120px; }

/* 404 */
.error-404{ text-align:center; padding:90px 0; }
.error-404 .code{ font-family:var(--font-d); font-size:96px; font-weight:700; color:var(--brass-tint); -webkit-text-stroke:2px var(--brass); line-height:1; }
.error-404 h1{ margin-top:14px; font-size:26px; }
.error-404 p{ color:var(--muted); margin-top:10px; }
.error-404 .btn{ margin-top:26px; }

/* alignments inside content */
.entry-content .alignwide{ width:100%; }
.entry-content .alignfull{ width:100vw; margin-left:calc(50% - 50vw); max-width:none; }

/* woocommerce/back-compat safety: keep default WP gallery from breaking */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.gallery img{ border-radius:var(--radius-s); }
