/* =========================================================
   BRAND SYSTEM (from your PDF)
   Dark Green:  R10 G38 B26  -> #0A261A
   Sand/Gold:   R208 G174 B135 -> #D0AE87
   White:       R254 G254 B254 -> #FEFEFE
   Fonts: Tahoma Regular/Bold, Kurdish: "Sarkar Dusha" (fallback)
========================================================= */

:root{
  --bg: #0A261A;
  --bg-2:#071A12;

  /* warmer premium gold */
  --gold:#D0AE87;
  --gold-2:#C8A57F;

  --white:#FEFEFE;
  --ink:#071A12;

  --line: rgba(208,174,135,.22);
  --line-strong: rgba(208,174,135,.35);

  --muted-dark: rgba(7,26,18,.72);
  --muted-light: rgba(254,254,254,.78);

  --shadow: 0 22px 70px rgba(0,0,0,.28);
  --radius: 18px;

  /* responsive header height */
  --topbar-h: 92px;
}

/* =========================
   Base / Reset
========================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Anchor offset for fixed header (100% usable on all screens) */
section[id] { scroll-margin-top: calc(var(--topbar-h) + 14px); }

body {
  margin: 0;
  font-family: Tahoma, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Kurdish / Arabic fallback (if you later add the font file, it will match perfectly) */
.ku, [lang="ku"], [lang="ar"]{
  font-family: "Sarkar Dusha", Tahoma, Arial, sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, label:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid rgba(7,26,18,.25);
  transform: translateY(-200%);
  transition: transform .2s ease;
  z-index: 9999;
  border-radius: 12px;
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Give bottom space so mobileBar never covers content */
main { padding-bottom: 86px; }
@media (min-width: 920px){
  main { padding-bottom: 0; }
}

/* Premium soft grain on dark areas (subtle + warm) */
.section--dark,
.topbar,
.hero::after{
  position: relative;
}
.section--dark::before,
.topbar::before,
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(255,255,255,.05), transparent 55%),
    radial-gradient(1100px 650px at 85% 35%, rgba(255,255,255,.04), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 6px);
  opacity:.16;
  mix-blend-mode: overlay;
}

/* =========================
   Typography (readable everywhere)
========================= */
.kicker {
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
  margin: 0 0 10px;
}
.kicker--light { color: rgba(254,254,254,.84); }

.h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 700;
}
.h2--light { color: var(--white); }

.muted { color: var(--muted-dark); margin: 0; }
.muted--light { color: var(--muted-light); }

.link {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
  color: var(--ink);
}
.link:hover { opacity: 1; transform: translateX(2px); }
.link--light { color: rgba(254,254,254,.88); }

/* =========================
   Buttons (warm premium)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid rgba(208,174,135,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .15s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.btn:hover { transform: translateY(-1px); border-color: rgba(208,174,135,.82); }
.btn--ghost {
  background: rgba(254,254,254,.06);
  color: var(--white);
  border-color: rgba(208,174,135,.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(208,174,135,.12); }
.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(254,254,254,.28);
}

/* =========================
   Topbar (Dark Green)
========================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,38,26,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208,174,135,.18);
}

.topbar__inner {
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
}

@media (min-width: 900px) {
  :root { --topbar-h: 104px; }
}

/* ✅ BIGGER COMPANY LOGO */
.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  position: relative;
}
.brand img {
  height: 74px;
  width: auto;
  opacity: .98;
  transform-origin: 50% 50%;
  animation: brandFloat 4.4s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}
@media (min-width: 900px) {
  .brand img { height: 86px; }
}

/* Premium sheen */
.brand::after {
  content: "";
  position: absolute;
  inset: -10px -14px;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent 20%, rgba(208,174,135,.28) 40%, transparent 60%);
  transform: translateX(-40%);
  opacity: 0;
  pointer-events: none;
  animation: sheen 7.2s ease-in-out infinite;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.toplink {
  display: none;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  opacity: .9;
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(254,254,254,.88);
}
.toplink:hover { opacity: 1; }

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(208,174,135,.28);
  background: rgba(7,26,18,.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(208,174,135,.12);
  border-color: rgba(208,174,135,.46);
}

.icon-btn__lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}
.icon-btn__lines::before,
.icon-btn__lines::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.8px;
  background: var(--gold);
  border-radius: 2px;
}
.icon-btn__lines::before { top: 2px; opacity:.92; }
.icon-btn__lines::after  { bottom: 2px; opacity:.78; }

.icon-btn__phone{
  width: 16px; height: 16px;
  border: 1.8px solid var(--gold);
  border-radius: 6px;
  position: relative;
  opacity: .92;
}
.icon-btn__phone::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width: 8px; height: 1.8px;
  background: var(--gold);
  transform: translate(-50%,-50%);
  border-radius: 2px;
}

.icon-btn__pin{
  width: 14px; height: 14px;
  border: 1.8px solid var(--gold);
  border-radius: 10px 10px 10px 0;
  transform: rotate(-45deg);
  position: relative;
  opacity: .92;
}
.icon-btn__pin::after{
  content:"";
  position:absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

@media (min-width: 900px) {
  .toplink { display: inline-flex; }
}

/* =========================
   Overlays (Menu) - readability
========================= */
.overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,26,18,.76);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.overlay__panel {
  position: relative;
  width: min(1120px, calc(100% - 24px));
  margin: calc(var(--topbar-h) + 18px) auto 24px;
  border-radius: var(--radius);
  background: rgba(10,38,26,.97);
  border: 1px solid rgba(208,174,135,.22);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-10px);
  transition: transform .2s ease;
}
.overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(208,174,135,.18);
}
.overlay__title {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(254,254,254,.82);
}
.overlay__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(208,174,135,.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(254,254,254,.92);
  background: rgba(208,174,135,.08);
}

.nav-toggle:checked ~ .overlay--nav {
  opacity: 1;
  pointer-events: auto;
}
.nav-toggle:checked ~ .overlay--nav .overlay__panel {
  transform: translateY(0);
}

/* =========================
   Menu content
========================= */
.menu {
  display: grid;
  gap: 18px;
  padding: 18px;
}
.menu__item{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 18px;
  letter-spacing: -.01em;
  color: rgba(254,254,254,.94);
  transition: background .15s ease, transform .15s ease;
}
.menu__item:hover { background: rgba(208,174,135,.10); transform: translateX(2px); }

.menu__label{
  margin: 14px 10px 8px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(208,174,135,.88);
}
.menu__sub{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(254,254,254,.86);
  transition: background .15s ease, transform .15s ease;
}
.menu__sub:hover { background: rgba(208,174,135,.10); transform: translateX(2px); }

.menu__note{
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(208,174,135,.22);
  background: linear-gradient(180deg, rgba(208,174,135,.10), rgba(10,38,26,.24));
  animation: softBreath 6.2s ease-in-out infinite;
}
.menu__headline{
  margin: 8px 0 8px;
  font-size: 22px;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: rgba(254,254,254,.95);
}
.menu__ctaRow{ display:flex; gap:10px; flex-wrap:wrap; }

@media (min-width: 900px) {
  .menu { grid-template-columns: 1fr 1fr 1.2fr; }
}

/* =========================
   Hero (premium + readable)
========================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--topbar-h);
  display: grid;
  align-items: end;
  background: var(--bg);
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7,26,18,.82), rgba(7,26,18,.20)),
    center/cover no-repeat;
  transform: scale(1.02);
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 520px at 18% 18%, rgba(208,174,135,.16), transparent 60%),
    radial-gradient(900px 560px at 85% 30%, rgba(254,254,254,.10), transparent 65%),
    linear-gradient(0deg, rgba(7,26,18,.38), transparent 60%);
  pointer-events: none;
  animation: shadeDrift 10s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 0 28px;
  color: var(--white);
}
.hero__title {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 700;
  text-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.hero__subtitle {
  margin: 0 0 22px;
  color: rgba(254,254,254,.82);
  font-size: clamp(14px, 1.4vw, 18px);
  max-width: 64ch;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__bottom {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(254,254,254,.80);
  gap: 14px;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: dotPulse 2.6s ease-in-out infinite;
}
.scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: .94;
}
.scroll:hover { opacity: 1; }
.scroll__line {
  width: 42px;
  height: 1px;
  background: rgba(208,174,135,.76);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.scroll__text {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

/* =========================
   Connected Panels (0 gaps)
========================= */
.panels{
  display:grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px){
  .panels{ grid-template-columns: repeat(3, 1fr); }
}

.panel{
  position: relative;
  min-height: 52svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid rgba(208,174,135,.14);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.panel__shade{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(7,26,18,.86), rgba(7,26,18,.12));
  transition: background .2s ease;
}
.panel__content{
  position: relative;
  padding: 18px 18px 20px;
  color: var(--white);
}
.panel__kicker{
  font-size: 11px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(208,174,135,.95);
  margin-bottom: 8px;
  text-shadow: 0 12px 22px rgba(0,0,0,.4);
}
.panel__title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.18;
  max-width: 34ch;
  text-shadow: 0 14px 28px rgba(0,0,0,.45);
}
.panel__link{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .95;
  text-shadow: 0 14px 24px rgba(0,0,0,.45);
}
.panel:hover .panel__shade{
  background: linear-gradient(0deg, rgba(7,26,18,.90), rgba(7,26,18,.16));
}

/* =========================
   Sections (tight + connected)
========================= */
.section { padding: 56px 0; }
.section--tight { padding: 46px 0; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.section--dark {
  background: var(--bg);
  color: var(--white);
  border-top: 1px solid rgba(208,174,135,.12);
  border-bottom: 1px solid rgba(208,174,135,.12);
}

/* =========================
   Grid / Projects
========================= */
.grid { display: grid; gap: 14px; }
.grid--projects { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--projects { grid-template-columns: repeat(2, 1fr); }
}

.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7,26,18,.10);
  aspect-ratio: 16 / 10;
  display: block;
  background: #000;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.project:hover img { transform: scale(1.08); }

.project__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(7,26,18,.92), rgba(7,26,18,.08));
  color: var(--white);
  border-top: 1px solid rgba(208,174,135,.14);
}
.project__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-shadow: 0 14px 24px rgba(0,0,0,.45);
}
.project__meta {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(254,254,254,.76);
  text-shadow: 0 14px 24px rgba(0,0,0,.4);
}

/* =========================
   Mosaic (connected gallery)
========================= */
.mosaic{
  display:grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px){
  .mosaic{
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: 1fr 1fr;
  }
  .mosaic__big{ grid-row: 1 / span 2; }
}
.mosaic__big, .mosaic__small{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7,26,18,.10);
  background: #000;
}
.mosaic__big img, .mosaic__small img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.mosaic__big:hover img, .mosaic__small:hover img{ transform: scale(1.07); }

.mosaic__cap{
  position:absolute;
  inset:auto 0 0 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(7,26,18,.94), rgba(7,26,18,.10));
  color: var(--white);
  border-top: 1px solid rgba(208,174,135,.14);
}
.mosaic__title{
  font-weight:700;
  letter-spacing:-.01em;
  text-shadow: 0 14px 24px rgba(0,0,0,.45);
}
.mosaic__meta{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(254,254,254,.76);
  text-shadow: 0 14px 24px rgba(0,0,0,.4);
}

/* =========================
   Chips (gold outline)
========================= */
.chips { display:flex; flex-wrap:wrap; gap:10px; margin: 12px 0 16px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(208,174,135,.40);
  color: rgba(254,254,254,.92);
  background: rgba(208,174,135,.10);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.chip:hover{
  transform: translateY(-1px);
  background: rgba(208,174,135,.16);
  border-color: rgba(208,174,135,.58);
}

/* =========================
   Strip Gallery (connected, no card gaps)
========================= */
.stripGallery{
  display:grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(208,174,135,.18);
  background: rgba(0,0,0,.15);
}
@media (min-width: 860px){
  .stripGallery{ grid-template-columns: repeat(3, 1fr); }
}
.stripGallery__item{
  aspect-ratio: 16/10;
  overflow:hidden;
  position:relative;
}
.stripGallery__item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(7,26,18,.40), transparent);
  pointer-events:none;
}
.stripGallery__item img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .7s ease;
}
.stripGallery__item:hover img{ transform: scale(1.08); }

/* =========================
   Location / Contact (Phones + Map)
========================= */
.contactGrid{
  display:grid;
  gap: 14px;
}
@media (min-width: 900px){
  .contactGrid{ grid-template-columns: 1.1fr .9fr; }
}
.contactCard{
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(208,174,135,.22);
  background: linear-gradient(180deg, rgba(208,174,135,.11), rgba(7,26,18,.24));
  animation: softBreath 7.2s ease-in-out infinite;
}
.contactCard--map{
  background: linear-gradient(180deg, rgba(254,254,254,.07), rgba(7,26,18,.26));
}
.contactCard__title{
  font-size: 12px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(208,174,135,.95);
  margin-bottom: 10px;
}
.contactCard__big{
  display:block;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 0;
  color: rgba(254,254,254,.96);
  border-top: 1px solid rgba(208,174,135,.14);
}
.contactCard__big:hover{ color: var(--gold); }
.contactCard__note{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(254,254,254,.74);
}
.contactCard__text{ margin: 0 0 14px; }

/* =========================
   Call Anchor (gold block like PDF)
========================= */
.callAnchor{
  background: var(--gold);
  color: var(--ink);
  border-top: 1px solid rgba(7,26,18,.10);
}
.callAnchor__inner{
  padding: 44px 0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.callAnchor .kicker{ opacity: .9; }
.callAnchor__actions{ display:flex; gap:10px; flex-wrap:wrap; }
.callAnchor .btn{
  background: var(--ink);
  color: var(--white);
  border-color: rgba(7,26,18,.25);
  box-shadow:none;
}
.callAnchor .btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: rgba(7,26,18,.25);
}
.callAnchor .btn--ghost:hover{ background: rgba(7,26,18,.10); }

/* =========================
   Footer (minimal, brand colors)
========================= */
.footer{
  padding: 42px 0 22px;
  background: var(--bg);
  color: var(--white);
  border-top: 1px solid rgba(208,174,135,.16);
}
.footer__grid{
  display:grid;
  gap: 18px;
}
@media (min-width: 860px){
  .footer__grid{ grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
.footer__brand img{
  height: 64px;
  width: auto;
  opacity: .98;
  animation: brandFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}
.footer__col{ display:grid; gap: 10px; align-content: start; }
.footer__title{
  font-size: 12px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(208,174,135,.95);
}
.footer__col a{
  color: rgba(254,254,254,.86);
  transition: color .2s ease, transform .2s ease;
}
.footer__col a:hover{ color: var(--gold); transform: translateX(2px); }
.footer__bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(208,174,135,.14);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(254,254,254,.76);
}

/* =========================
   Mobile Bar (Call + Maps)
========================= */
.mobileBar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobileBar__btn{
  text-align:center;
  padding: 14px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid rgba(208,174,135,.62);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.mobileBar__btn--light{
  background: rgba(254,254,254,.14);
  color: var(--white);
  border-color: rgba(208,174,135,.34);
  backdrop-filter: blur(10px);
}
@media (min-width: 920px){
  .mobileBar{ display:none; }
}

/* =========================
   Animations (alive but premium)
========================= */
@keyframes brandFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.01); }
}
@keyframes sheen {
  0%   { transform: translateX(-40%); opacity: 0; }
  10%  { opacity: .35; }
  35%  { opacity: 0; }
  100% { transform: translateX(70%); opacity: 0; }
}
@keyframes heroSlowZoom {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
@keyframes shadeDrift {
  0% { transform: translate3d(0,0,0); opacity: 1; }
  100% { transform: translate3d(12px, -10px, 0); opacity: .95; }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.22); opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); opacity: .7; }
  50% { transform: scaleX(1.35); opacity: 1; }
}
@keyframes softBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* =========================
   Performance hints
========================= */
@supports (content-visibility: auto) {
  .section { content-visibility: auto; contain-intrinsic-size: 800px; }
}

/* =========================
   Accessibility: reduce motion
========================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}