/* ==========================================================================
   Al Sanad Electromechanical Services — Design System
   Palette drawn from the brand mark: ink black, warm gold, paper white.
   Built with CSS logical properties so one stylesheet serves both
   the English (LTR) and Arabic (RTL) versions of the site.
   ========================================================================== */

:root{
  /* ---- Color tokens (from brand identity) ---- */
  --ink:        #15110c;   /* primary dark — text, header on light, dark sections */
  --charcoal:   #211a12;   /* dark panel background */
  --charcoal-2: #2c2318;   /* dark panel, one step lighter */
  --gold:       #b9862d;   /* primary accent, from logo */
  --gold-light: #d9a94e;   /* hover / highlight */
  --gold-dim:   #8a6624;   /* pressed / border on dark */
  --paper:      #f8f5ef;   /* base light background, warm off-white */
  --paper-2:    #efe8db;   /* secondary light panel */
  --line:       #e3dbc9;   /* hairline borders on light */
  --line-dark:  #40352422; /* hairline on dark (rgba-ish via hex+alpha) */
  --steel:      #5c5647;   /* body text on light */
  --steel-2:    #86806e;   /* muted / captions */
  --white:      #ffffff;
  --success:    #3f7a5b;

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Cairo', sans-serif;
  --font-body:    'Inter', 'Cairo', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Cairo', monospace;

  /* ---- Rhythm ---- */
  --container: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 40px -24px rgba(21,17,12,0.28);
  --gap: clamp(1.25rem, 2vw, 2rem);
  --section-pad: clamp(3.5rem, 7vw, 7rem);

  color-scheme: light;
}

/* Arabic pages: swap the whole type system to Cairo, tuned sizes (Arabic
   reads slightly larger for equivalent visual weight). */
:lang(ar){
  --font-display: 'Cairo', sans-serif;
  --font-body: 'Cairo', sans-serif;
  --font-mono: 'Cairo', monospace;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
:lang(ar) h1, :lang(ar) h2, :lang(ar) h3, :lang(ar) h4{ font-weight: 700; letter-spacing: 0; }

h1{ font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3{ font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
p{ margin: 0 0 1em; color: var(--steel); }
p:last-child{ margin-bottom: 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section{ padding-block: var(--section-pad); }
.section-tight{ padding-block: clamp(2rem, 4vw, 3.5rem); }

.bg-dark{ background: var(--ink); color: var(--paper); }
.bg-dark p{ color: #cfc6b4; }
.bg-dark h1, .bg-dark h2, .bg-dark h3{ color: var(--white); }
.bg-panel{ background: var(--paper-2); }

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-gold{ background: var(--gold); color: var(--ink); }
.btn-gold:hover{ background: var(--gold-light); }
.btn-line{ border-color: currentColor; color: inherit; background: transparent; }
.bg-dark .btn-line{ border-color: #6b5f45; }
.bg-dark .btn-line:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-line:not(.bg-dark .btn-line):hover{ border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-whatsapp{ background: #25543f; color: var(--white); }
.btn-whatsapp:hover{ background: #2f6b50; }
.btn-sm{ padding: 0.6em 1.1em; font-size: 0.85rem; }
.btn svg{ width: 1.1em; height: 1.1em; flex: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,239,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-block-end: 1px solid var(--line);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand{ display: flex; align-items: center; gap: 0.65rem; }
.brand img{ height: 42px; width: auto; }
.brand-name{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-name span{ display:block; font-family: var(--font-mono); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.1em; color: var(--gold-dim); text-transform: uppercase; }

.main-nav{ display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.main-nav a{
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  position: relative; padding-block: 0.3rem;
}
.main-nav a::after{
  content:""; position:absolute; inset-inline-start:0; bottom:0; height:1px; width:0;
  background: var(--gold); transition: width 0.2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ width: 100%; }
.main-nav a[aria-current="page"]{ color: var(--gold-dim); }

.header-actions{ display: flex; align-items: center; gap: 0.6rem; }
.lang-switch{
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.5em 0.8em;
}
.lang-switch:hover{ border-color: var(--gold); color: var(--gold-dim); }

.nav-toggle{
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 920px){
  .main-nav{
    position: fixed; inset-block-start: 68px; inset-inline: 0;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 1.25rem clamp(1.25rem, 6vw, 2.5rem) 2rem;
    border-block-end: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: all 0.22s ease;
    gap: 0.2rem;
  }
  .main-nav.open{ transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a{ padding-block: 0.85rem; border-block-end: 1px solid var(--line); }
  .header-actions .btn-sm.hide-mobile{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ==========================================================================
   Hero + signature schematic
   ========================================================================== */
.hero{
  padding-block-start: clamp(3rem, 7vw, 5.5rem);
  padding-block-end: clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-copy p.lead{ font-size: 1.1rem; max-width: 46ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 0.75rem; margin-block-start: 1.75rem; }

.hero-meta{
  display: flex; flex-wrap: wrap; gap: 0;
  margin-block-start: 2.5rem; padding-block-start: 0;
  border-block-start: 1px solid var(--line);
}
.hero-meta .stat{
  font-family: var(--font-mono);
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1.4rem 1.75rem 1.4rem 0;
  margin-inline-end: 1.75rem;
  border-inline-end: 1px solid var(--line);
}
.hero-meta .stat:last-child{ border-inline-end: none; padding-inline-end: 0; margin-inline-end: 0; }
.hero-meta .stat .stat-icon{
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--paper-2); color: var(--gold-dim);
}
.hero-meta .stat .stat-icon svg{ width: 17px; height: 17px; }
.hero-meta .stat b{ display:block; font-size: 1.3rem; font-family: var(--font-display); color: var(--ink); line-height:1.1; }
.hero-meta .stat small{ font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-2); white-space: nowrap; }
@media (max-width: 560px){
  .hero-meta{ flex-direction: column; gap: 0; }
  .hero-meta .stat{ border-inline-end: none; border-block-end: 1px solid var(--line); width: 100%; padding: 1.1rem 0; margin-inline-end: 0; }
  .hero-meta .stat:last-child{ border-block-end: none; }
}

.schematic-wrap{ position: relative; }

/* ---- Hero photo frame: photo with badge tucked inside ---- */
.photo-frame{
  position: relative;
}
.photo-frame img{
  position: relative; z-index: 1;
  width: 100%; height: clamp(320px, 42vw, 460px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.photo-badge{
  position: absolute; z-index: 2;
  inset-block-end: 18px; inset-inline-start: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--line);
}
.photo-badge .icon{
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display:flex; align-items:center; justify-content:center;
}
.photo-badge .icon svg{ width: 19px; height: 19px; }
.photo-badge b{ display:block; font-family: var(--font-display); font-size: 0.98rem; line-height: 1.15; }
.photo-badge small{ font-size: 0.74rem; color: var(--steel-2); }

/* ==========================================================================
   Trust / credential strip
   ========================================================================== */
.trust-strip{
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}
.trust-strip .container{
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.15rem;
}
.trust-item{ display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--steel); }
.trust-item svg{ width: 18px; height: 18px; flex: none; color: var(--gold-dim); }
.trust-item b{ color: var(--ink); }

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-head{ max-width: 60ch; margin-block-end: clamp(2rem, 4vw, 3rem); }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head.split{
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none;
}
@media (max-width: 700px){ .section-head.split{ flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{ display: grid; gap: 0.75rem; }
.faq-item{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
}
.faq-item summary{
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; font-size: 1.3rem; line-height: 1; color: var(--gold-dim); flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin-block: 0.85rem 0; color: var(--steel); }

/* ==========================================================================
   Service nameplate cards
   ========================================================================== */
.services-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

.nameplate{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.nameplate:hover{ border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.nameplate .card-photo{
  width: 100%; height: 170px; object-fit: cover; display: block;
}
.nameplate .card-body{
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem; flex: 1;
}
.nameplate .tag{
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--gold-dim); text-transform: uppercase;
}
.nameplate .icon{ width: 40px; height: 40px; color: var(--ink); }
.nameplate h3{ margin-block-end: 0.15em; }
.nameplate p{ font-size: 0.92rem; margin-block-end: 0.4rem; }
.nameplate .go{
  margin-block-start: auto; display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
.nameplate .go svg{ width: 14px; height: 14px; transition: transform 0.2s ease; }
:lang(ar) .nameplate .go svg{ transform: scaleX(-1); }
.nameplate:hover .go svg{ transform: translateX(4px); }
:lang(ar) .nameplate:hover .go svg{ transform: scaleX(-1) translateX(4px); }

/* ==========================================================================
   Approach / spec panels (2x2)
   ========================================================================== */
.spec-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.spec-panel{ background: var(--ink); color: var(--paper); padding: clamp(1.5rem, 3vw, 2.5rem); }
.spec-panel .num{ font-family: var(--font-mono); color: var(--gold); font-size: 0.8rem; letter-spacing: 0.08em; }
.spec-panel h3{ color: var(--white); margin-block: 0.5em 0.4em; }
.spec-panel p{ color: #c9c0ac; font-size: 0.92rem; }
@media (max-width: 700px){ .spec-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Why-us list
   ========================================================================== */
.reason-list{ display: grid; gap: 1.1rem; }
.reason{
  display: flex; gap: 1rem; align-items: flex-start;
  padding-block-end: 1.1rem; border-block-end: 1px solid var(--line);
}
.reason:last-child{ border-block-end: none; padding-block-end: 0; }
.reason svg{ width: 22px; height: 22px; flex: none; color: var(--gold); margin-block-start: 0.15em; }
.reason h4{ font-family: var(--font-display); font-size: 1rem; margin-block-end: 0.2em; }
.reason p{ font-size: 0.92rem; }

/* ==========================================================================
   Process steps (real sequence — numbered)
   ========================================================================== */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{ position: relative; padding-inline-start: 0; }
.step .step-num{
  font-family: var(--font-mono); font-size: 1.6rem; color: var(--gold);
  display: block; margin-block-end: 0.5rem;
}
.step h4{ font-family: var(--font-display); font-size: 1.02rem; margin-block-end: 0.3em; }
.step p{ font-size: 0.9rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{ background: var(--ink); color: var(--white); }
.cta-band .container{
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); margin: 0; max-width: 26ch; }
.cta-actions{ display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--charcoal); color: #cfc6b4; padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-block-end: 2.5rem; border-block-end: 1px solid #40352a;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand img{ height: 40px; margin-block-end: 1rem; }
.footer-brand p{ color: #a89f8a; font-size: 0.88rem; max-width: 32ch; }
.footer-col h4{ color: var(--white); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-block-end: 1rem; }
.footer-col ul{ display: grid; gap: 0.6rem; }
.footer-col a{ color: #cfc6b4; font-size: 0.9rem; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-block-start: 1.5rem; font-size: 0.8rem; color: #948b76; }
.footer-bottom a{ color: #948b76; }
.footer-bottom a:hover{ color: var(--gold-light); }

/* Floating WhatsApp button */
.float-whatsapp{
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25543f; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(21,17,12,0.5);
  transition: transform 0.2s ease;
}
.float-whatsapp:hover{ transform: scale(1.06); }
.float-whatsapp svg{ width: 26px; height: 26px; }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{ background: var(--ink); color: var(--white); padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2.5rem,5vw,3.5rem); }
.breadcrumb{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); margin-block-end: 1rem; display:flex; gap:0.5em; flex-wrap:wrap; }
.breadcrumb a{ color: #cfc6b4; }
.breadcrumb a:hover{ color: var(--gold-light); }
.page-header h1{ color: var(--white); max-width: 26ch; }
.page-header p.lead{ color: #c9c0ac; max-width: 55ch; font-size: 1.05rem; }

/* ==========================================================================
   Two-column content + sticky CTA card (service pages)
   ========================================================================== */
.content-layout{ display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px){ .content-layout{ grid-template-columns: 1fr; } }

.service-photo{
  width: 100%; height: clamp(220px, 32vw, 340px);
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-block-end: 2rem;
}

.scope-list{ display: grid; gap: 0.9rem; margin-block-start: 1.5rem; }
.scope-item{ display: flex; gap: 0.85rem; align-items: flex-start; }
.scope-item svg{ width: 20px; height: 20px; flex: none; color: var(--gold-dim); margin-block-start: 0.2em; }
.scope-item p{ margin: 0; font-size: 0.95rem; color: var(--ink); }

.side-card{
  position: sticky; top: 100px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem;
}
.side-card h4{ font-family: var(--font-display); margin-block-end: 0.6rem; }
.side-card p{ font-size: 0.9rem; margin-block-end: 1.2rem; }
.side-card .btn{ width: 100%; justify-content: center; margin-block-end: 0.65rem; }
.side-card .side-meta{ margin-block-start: 1.25rem; padding-block-start: 1.25rem; border-block-start: 1px solid var(--line); font-size: 0.85rem; display: grid; gap: 0.5rem; }
.side-card .side-meta span{ color: var(--steel-2); }

/* ==========================================================================
   About page — company table
   ========================================================================== */
.info-table{ width: 100%; border-collapse: collapse; margin-block: 1.5rem; }
.info-table tr{ border-block-end: 1px solid var(--line); }
.info-table th, .info-table td{ text-align: start; padding: 0.85rem 0.5rem; font-size: 0.92rem; vertical-align: top; }
.info-table th{ color: var(--steel-2); font-weight: 500; width: 38%; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; }
.info-table td{ color: var(--ink); font-weight: 500; }

.pillars{ display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-block-start: 1.5rem; }
@media (max-width: 900px){ .pillars{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }
.pillar{ border-inline-start: 2px solid var(--gold); padding-inline-start: 1rem; }
.pillar h4{ font-family: var(--font-display); font-size: 1rem; margin-block-end: 0.25em; }
.pillar p{ font-size: 0.88rem; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,4vw,3.5rem); }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-channels{ display: grid; gap: 1rem; margin-block-start: 1.5rem; }
.channel{
  display: flex; gap: 1rem; align-items: center;
  padding: 1.1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.channel:hover{ border-color: var(--gold); }
.channel .icon{ width: 40px; height: 40px; flex: none; display:flex; align-items:center; justify-content:center; background: var(--paper-2); border-radius: 50%; color: var(--gold-dim); }
.channel .icon svg{ width: 20px; height: 20px; }
.channel b{ display:block; font-size: 0.95rem; }
.channel span{ font-size: 0.85rem; color: var(--steel-2); }

.form-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.25rem); overflow: hidden; }
.form-embed{ width: 100%; margin-block-start: 1.25rem; }
.form-embed iframe{ display: block; width: 100%; min-height: 539px; border: 0; }

.map-embed{ border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-block-start: 1.5rem; height: 260px; }
.map-embed iframe{ width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }

/* Skip link */
.skip-link{
  position: absolute; inset-inline-start: -9999px; top: 0; background: var(--gold); color: var(--ink);
  padding: 0.75em 1.25em; z-index: 200; font-weight: 600;
}
.skip-link:focus{ inset-inline-start: 1rem; top: 1rem; }

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 2px; }
