:root{
  --gold:#d6b25e;
  --black:#0b0b0c;
  --white:#fff;
  --bg:#f6f6f7;
  --text:#0f1115;
  --muted:#5a606a;
  --ring: rgba(214,178,94,.35);
  --shadow: 0 14px 34px rgba(0,0,0,.14);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
.container{
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 0;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .85rem 0;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: .75rem;
  text-decoration:none;
  color: inherit;
  flex: 0 0 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.14);
  background: #0b0b0c;
}
.brand__text{ line-height:1.05; min-width: 0; padding-right: 6px; }
.brand__name{
  display:block;
  font-family: Oswald, Inter, sans-serif;
  font-weight:700;
  letter-spacing:.4px;
  line-height: 1.05;
}
.brand__nameLine{ display:block; line-height: 1.05; }

/* Mobile nav */
.navToggle{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 14px;
  padding: .55rem .6rem;
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  flex: 0 0 auto;
}
.navToggle span{
  width:22px;
  height:2px;
  background: var(--black);
  display:block;
  border-radius: 2px;
}

/* Mobile dropdown */
.nav{
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display:none;
  max-height: calc(100vh - 72px);
  overflow: auto;
  border-radius: 0 0 18px 18px;
  z-index: 60;
}
.nav a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--text);
  font-weight:600;
}
.nav a:hover{ background: rgba(0,0,0,.04); }
.nav__cta{ margin-top: 8px; width: 100%; }
.nav.isOpen{ display:block; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight:900;
  letter-spacing:.2px;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  --btn-y: 0px;
  transform: translateY(var(--btn-y)) scale(1);
}
.btn:hover{ transform: translateY(calc(var(--btn-y) - 1px)) scale(1.03); }
.btn:active{ transform: translateY(var(--btn-y)) scale(1.01); }
.btn:focus{ outline:none; }
.btn:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.btn--quote{
  background: #fff;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 16px 28px rgba(0,0,0,.14);
}
.btn--call{
  background: #000;
  color: #fff;
  border: 2px solid rgba(214,178,94,.45);
  box-shadow: 0 16px 28px rgba(0,0,0,.18);
}
.btn--ghostGold{
  background: rgba(0,0,0,.30);
  color: #fff;
  border: 1px solid rgba(214,178,94,.60);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.btn--lg{ padding: 1rem 1.25rem; }

/* Hero */
.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: #000;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: url("./b1d23148-c3e1-4497-bab9-7c6aa4b9c5cf.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 50% 20%, rgba(0,0,0,.15), rgba(0,0,0,.72));
}
.hero__inner{
  position:relative;
  padding: 3.25rem 0 2.5rem;
  display:flex;
  justify-content:center;
}
.hero__panel{
  width: min(860px, 100%);
  text-align:center;
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(214,178,94,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
  color:#fff;
}
.hero__headline{
  font-family: Oswald, Inter, sans-serif;
  font-weight:700;
  letter-spacing: 1px;
  font-size: clamp(2.1rem, 6vw, 4.3rem);
  margin: 0 0 .75rem;
  text-transform: uppercase;
}
.hero__sub{
  margin: 0 auto 1.2rem;
  max-width: 60ch;
  color: rgba(255,255,255,.92);
  font-size: 1.02rem;
}
.hero__actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Sections */
.section{ padding: 3.2rem 0; }
.section--light{ background: var(--bg); color: var(--text); }
.section--dark{
  background: #070708;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.section__head{ text-align:center; margin-bottom: 1.5rem; }
.section__title{
  font-family: Oswald, Inter, sans-serif;
  letter-spacing: .9px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 .35rem;
  color: var(--black);
  text-transform: uppercase;
}
.section__sub{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.55;
}
.section__title--dark{ color: #fff; }
.section__sub--dark{ color: rgba(255,255,255,.74); }

/* Services */
.serviceWrap{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 18px;
  margin-top: 22px;
}
.serviceCard{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  width: min(360px, 100%);
  min-height: 330px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 80px rgba(0,0,0,.16);
  border: 1px solid rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.serviceCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 34px 95px rgba(0,0,0,.20);
  border-color: rgba(214,178,94,.28);
}
@media (max-width: 767px){
  .serviceCard{
    width: min(420px, 100%);
    min-height: 380px;
  }
}
.serviceCard__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.88));
}
.serviceCard__shine{
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(214,178,94,.22), rgba(255,255,255,0) 55%);
  opacity: .65;
  transform: rotate(12deg);
  pointer-events:none;
}
.serviceCard__content{
  position:relative;
  height: 100%;
  padding: 18px;
  color:#fff;
  display:grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}
.serviceCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  height: 140px;
}
.serviceCard__titleBlock{ min-width: 0; }
.serviceCard__content h3{
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  letter-spacing:.8px;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.05;
}
.serviceCard__mini{
  margin: 10px 0 0;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
  font-weight: 650;
  max-width: 36ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.45em * 2);
}
.tag{
  display:inline-flex;
  align-items:center;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(214,178,94,.40);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
}
.tag--ghost{ visibility:hidden; }

.serviceCard__actions{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: end;
}
.serviceCard__actions .btn{ width: 100%; justify-content:center; }

/* Reels */
.reels{
  width: min(980px, 100%);
  margin: 0 auto;
}

/* Mobile helper bar: centered only */
.reelsBar{ display:none; }
@media (max-width: 767px){
  .reelsBar{
    display:flex;
    justify-content:center;
    margin: 0 auto 10px;
  }
  .reelsBar__pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: .55rem .95rem;
    border-radius: 999px;
    font-weight: 950;
    letter-spacing: .35px;
    font-size: .85rem;
    color: rgba(255,255,255,.95);
    background: rgba(0,0,0,.75);
    border: 1px solid rgba(214,178,94,.45);
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }
  .reelsBar__pill::after{
    content:"→";
    font-weight: 900;
    color: rgba(214,178,94,.92);
  }
}

/* Mobile: horizontal swipe rail (no scroll trap) */
@media (max-width: 767px){
  .reels{
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    padding: 0 8px 6px;
  }
  .reels::-webkit-scrollbar{ display:none; }

  .reel{
    scroll-snap-align: start;
    position: relative;
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: #000;
    box-shadow: 0 18px 44px rgba(0,0,0,.12);
    height: 62vh;
  }

  .reel__video{
    pointer-events:none;
    touch-action: pan-x pan-y;
  }
}

/* Desktop grid */
@media (min-width: 768px){
  .reels{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .reel{
    position: relative;
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: #000;
    box-shadow: 0 18px 44px rgba(0,0,0,.12);
    aspect-ratio: 9 / 16;
    cursor: pointer;
  }
}

.reel__video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background: transparent;
}

/* Title pill */
.reel__meta{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(214,178,94,.22);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.reel__title{
  font-weight: 900;
  letter-spacing: .4px;
  color: rgba(255,255,255,.94);
}

/* Desktop play overlay */
.reel__overlay{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 2;
  background: radial-gradient(800px 420px at 50% 40%, rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events:none;
}

.reel__playBadge{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: .85rem 1.05rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .35px;
  color: rgba(255,255,255,.96);
  background: rgba(0,0,0,.74);
  border: 2px solid rgba(214,178,94,.55);
  box-shadow:
    0 24px 70px rgba(0,0,0,.45),
    0 0 0 6px rgba(214,178,94,.10);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  animation: playPulse 1.35s ease-in-out infinite;
}
.reel__playIcon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(214,178,94,.18);
  border: 1px solid rgba(214,178,94,.55);
  position: relative;
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
}
.reel__playIcon::before{
  content:"";
  position:absolute;
  left: 19px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255,255,255,.95);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.reel__playText{ white-space: nowrap; }

@keyframes playPulse{
  0%, 100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-2px) scale(1.02); }
}

@media (min-width: 768px){
  .reel__overlay{ display:flex; }
  .reel:hover .reel__overlay{ background: radial-gradient(800px 420px at 50% 40%, rgba(0,0,0,.14), rgba(0,0,0,.62)); }
  .reel.isPlaying .reel__overlay{
    opacity: 0;
    transition: opacity .18s ease;
  }
}

/* Work carousel */
.carousel{ margin: 18px auto 0; width: min(980px, 100%); }
.carousel__frame{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 12px;
}
.carousel__viewport{
  overflow:hidden;
  border-radius: 22px;
  position: relative;
  background: rgba(255,255,255,.02);
  aspect-ratio: 4 / 5;
}
.carousel__track{ display:flex; transition: transform .28s ease; }
.carousel__slide{ flex: 0 0 100%; }
.carouselArrow{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(214,178,94,.40);
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.95);
  font-size: 1.7rem;
  cursor:pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.carouselDots--overlay{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  z-index: 3;
  display:flex;
  gap: 8px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.18);
}
.dot.isActive{
  width: 22px;
  background: rgba(214,178,94,.75);
  border-color: rgba(214,178,94,.85);
}

/* Compare */
.compare{
  --pos: 12%;
  --ratio: 4 / 5;
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(214,178,94,.18);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
  background: #0b0b0c;
}
.compare__stage{
  width: 100%;
  aspect-ratio: var(--ratio);
  background-image: var(--after);
  background-size: var(--afterSize, var(--mediaSize, cover));
  background-position: var(--afterPos, center);
  background-repeat: no-repeat;
  position: relative;
}
.compare__stage::after{
  content:"";
  position:absolute;
  inset:0;
  width: var(--pos);
  background-image: var(--before);
  background-size: var(--beforeSize, var(--mediaSize, cover));
  background-position: var(--beforePos, center);
  background-repeat: no-repeat;
  border-right: 2px solid rgba(255,255,255,.70);
}
.compare__range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
}
.compare__handle{
  position:absolute;
  top:0;
  left: var(--pos);
  transform: translateX(-50%);
  height: 100%;
  width: 44px;
  pointer-events:none;
}
.compare__handle::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,.60);
  border: 1px solid rgba(214,178,94,.60);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.compare__handle::after{
  content:"↔";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

/* How it works */
.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}
.stepCard{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  padding: 16px;
  position: relative;
  overflow:hidden;
}
.stepCard::before{
  content:"";
  position:absolute;
  inset:-200px -200px auto -200px;
  height: 260px;
  background: radial-gradient(circle at 20% 30%, rgba(214,178,94,.22), rgba(255,255,255,0) 55%);
}
.stepTop{ display:flex; align-items:center; gap: 12px; position: relative; }
.stepNum{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: Oswald, Inter, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #000;
  background: rgba(214,178,94,.25);
  border: 1px solid rgba(214,178,94,.35);
}
.stepTitle{
  margin:0;
  font-family: Oswald, Inter, sans-serif;
  letter-spacing:.7px;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--black);
}
.stepText{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
}
.stepCard--finish{ border-color: rgba(214,178,94,.32); }

/* Service area / About / Reviews / Modals / Footer */
.areaGrid{ display:grid; grid-template-columns: 1fr; gap: 14px; margin-top: 20px; align-items: stretch; }

.areaMap{
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  background: #000;
}

.areaMap img{
  width:100%;
  height: 320px;
  object-fit: cover;
  object-position: 18% 12%;
  transform: scale(1.00);
  transform-origin: 18% 12%;
  display:block;
}


.areaCard{
  border-radius: 22px; border: 1px solid rgba(0,0,0,.08); background: #fff; padding: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.12); height: 100%; display:flex; flex-direction:column;
}
.areaTitle{ margin: 0 0 8px; font-family: Oswald, Inter, sans-serif; letter-spacing: .7px; text-transform: uppercase; }
.areaText{ margin: 0 0 12px; color: var(--muted); line-height: 1.7; }
.areaList{ margin-top: 12px; border-radius: 16px; border: 1px solid rgba(0,0,0,.08); background: rgba(0,0,0,.02); padding: 12px 14px; }
.areaList__title{ font-weight: 900; margin-bottom: 8px; color: var(--text); }
.areaList__ul{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.areaActions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: auto; padding-top: 14px; }

#service-area .areaCard{ background: #0b0b0c; border: 1px solid rgba(214,178,94,.40); box-shadow: 0 18px 44px rgba(0,0,0,.35); }
#service-area .areaTitle{ color: rgba(255,255,255,.92); }
#service-area .areaText{ color: rgba(255,255,255,.74); }
#service-area .areaList{ border: 1px solid rgba(214,178,94,.22); background: rgba(255,255,255,.04); }
#service-area .areaList__title{ color: rgba(255,255,255,.92); }
#service-area .areaList__ul{ color: rgba(255,255,255,.74); }

.aboutGrid{ display:grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; align-items:center; }
.aboutCopy{ text-align: center; }
.aboutTitle{ margin: 0 0 10px; font-family: Oswald, Inter, sans-serif; letter-spacing: .6px; text-transform: uppercase; font-size: 1.6rem; color: #000; }
.aboutText{ margin: 0 auto 10px; line-height: 1.7; color: var(--muted); max-width: 68ch; }
.aboutMedia img{ width:100%; height: 320px; object-fit: cover; border-radius: 22px; border: 1px solid rgba(0,0,0,.10); box-shadow: 0 26px 70px rgba(0,0,0,.18); }
.aboutActions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; justify-content: center; }

.reviewsRailWrap{ position: relative; margin-top: 16px; padding: 0 56px; }
.reviewsRail--dark{
  --rail-gap: 14px; --rail-pad: 18px; display:grid; grid-auto-flow: column; grid-auto-columns: 88%;
  gap: var(--rail-gap); overflow-x: auto; scroll-snap-type: x mandatory; padding: 18px var(--rail-pad);
  border-radius: 22px; background: rgba(0,0,0,.88); border: 1px solid rgba(0,0,0,.12); box-shadow: 0 18px 44px rgba(0,0,0,.12);
  -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-padding-left: var(--rail-pad); scroll-padding-right: var(--rail-pad);
}
.reviewsRail--dark::-webkit-scrollbar{ display:none; }
.rCard{ scroll-snap-align: start; border-radius: 20px; padding: 14px; }
.rCard--dark{
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(600px 240px at 20% 10%, rgba(214,178,94,.12), rgba(255,255,255,0) 60%), rgba(255,255,255,.04);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.rCard--rail{ min-height: 180px; }
.rHead{ display:flex; align-items:center; gap: 12px; }
.rAvatar{ width: 44px; height: 44px; border-radius: 999px; display:flex; align-items:center; justify-content:center; font-weight: 900; border: 1px solid rgba(214,178,94,.35); background: rgba(214,178,94,.14); color: rgba(255,255,255,.92); }
.rMeta{ flex: 1; }
.rName--dark{ font-weight: 900; color: rgba(255,255,255,.92); }
.rLoc--dark{ font-size: .92rem; margin-top: 2px; color: rgba(255,255,255,.68); }
.rStars{ color: var(--gold); letter-spacing: 1px; font-size: 1rem; }
.rText--dark{ margin: 10px 0 0; line-height: 1.7; color: rgba(255,255,255,.74); }

.railArrow{
  position:absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.55); color: rgba(255,255,255,.92); font-size: 1.6rem; cursor:pointer; z-index: 3; box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.railArrow--left{ left: 0; }
.railArrow--right{ right: 0; }
.sectionCtas{ display:flex; justify-content:center; gap: 10px; margin-top: 14px; }

.modal{ position: fixed; inset: 0; display:none; z-index: 80; align-items: center; justify-content: center; padding: 1.25rem; }
.modal.isOpen{ display:flex; }
.modal__overlay{ position:absolute; inset:0; background: rgba(0,0,0,.60); }
@keyframes fadeIn{ from{ opacity: 0; transform: translateY(10px); } to{ opacity: 1; transform: translateY(0); } }
.modal__panel, .callPanel, .quotePanel, .contactPanel{ animation: fadeIn .18s ease both; }
.modal__close{
  position:absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 12px; border: 1px solid rgba(0,0,0,.12);
  background:#fff; cursor:pointer; font-size: 1.2rem;
}
.modal__panel{
  position:relative; width: min(680px, 100%); background:#fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 18px; max-height: calc(100vh - 3rem); overflow:auto;
}
.modal__title{ margin: 0 0 10px; font-family: Oswald, Inter, sans-serif; letter-spacing:.7px; text-transform: uppercase; color: var(--black); }
.modal__content{ color: var(--muted); line-height: 1.7; }
.modal__actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.tiers{ display:grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.tier{
  border-radius: 16px; border: 1px solid rgba(0,0,0,.10);
  background: radial-gradient(600px 240px at 20% 10%, rgba(214,178,94,.12), rgba(255,255,255,0) 60%), #fff;
  padding: 12px; box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.tier__top{ display:flex; justify-content:space-between; gap: 10px; align-items:flex-start; }
.tier__name{ font-weight: 900; color: #111; }
.tier__tag{ font-weight: 900; font-size: .85rem; padding: .25rem .55rem; border-radius: 999px; border: 1px solid rgba(214,178,94,.40); background: rgba(214,178,94,.12); color: #111; white-space: nowrap; }
.tier ul{ margin: 10px 0 0 18px; padding: 0; }

.callPanel{
  position:relative; width: min(560px, 100%); background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 18px; max-height: calc(100vh - 3rem); overflow:auto;
}
.callTitle{ margin: 0 0 6px; font-family: Oswald, Inter, sans-serif; letter-spacing: .7px; text-transform: uppercase; color: var(--black); }
.callText{ margin: 0 0 10px; color: var(--muted); line-height: 1.6; }
.callNumber{
  display:inline-block; font-weight: 900; font-size: 1.35rem; color: var(--gold); text-decoration: none;
  padding: 10px 12px; border-radius: 12px; background: rgba(214,178,94,.10); border: 1px solid rgba(214,178,94,.35);
}
.callHint{ margin: 10px 0 0; color: rgba(0,0,0,.60); line-height: 1.6; }

.footer--light{ background: #fff; color: #111; border-top: 1px solid rgba(0,0,0,.08); }
.footerMini{ padding: 1.05rem 0; display:flex; flex-direction:column; gap: 10px; }
.footerMini__name{ font-family: Oswald, Inter, sans-serif; letter-spacing: .8px; text-transform: uppercase; font-size: 1.25rem; }
.footerMini__actions{ display:flex; gap: 10px; flex-wrap:wrap; }
.footer__bottom--light{ border-top: 1px solid rgba(0,0,0,.08); }
.footer__bottomInner--light{
  padding: 10px 0; display:flex; justify-content:space-between; gap: 12px; font-size: .95rem; color: rgba(0,0,0,.65);
}
.footerProduced{ color: rgba(0,0,0,.65); font-weight: 600; display:inline-flex; align-items:center; gap: 8px; flex-wrap: wrap; }
.footerLink{ color: rgba(0,0,0,.78); text-decoration: underline; text-underline-offset: 3px; }
.footerLink:hover{ color: rgba(0,0,0,.95); }
.footerSep{ opacity: .55; }

/* Desktop enhancements */
@media (min-width: 768px){
  .nav{
    position: static;
    display:flex !important;
    align-items:center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    inset:auto;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    gap: 26px;
    padding-right: 220px;
    position: relative;
  }
  .nav a{ padding: 10px 6px; white-space: nowrap; }

  .nav__cta{
    position: absolute;
    right: 0;
    top: 50%;
    --btn-y: -50%;
    margin: 0;
    width: auto;
  }

  .navToggle{ display:none; }

  .aboutGrid{ grid-template-columns: 1.1fr .9fr; gap: 22px; }
  .aboutMedia img{ height: 380px; }

  .steps{ grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .areaGrid{ grid-template-columns: 1fr 1fr; gap: 18px; }

  .areaMap img{ height: 100%; min-height: 380px; }

  .tiers{ grid-template-columns: repeat(3, 1fr); }

  .footerMini{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
  }

  .reviewsRailWrap{ padding: 0 64px; }
  .serviceCard__actions{ grid-template-columns: 1fr 1fr; gap: 12px; }
  #work .carousel{ width: min(760px, 100%); }
  #work .carousel__viewport{ aspect-ratio: 4 / 5; }
}

/* CONTACT CTA (mid-page) */
.contactCta{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(214,178,94,.14), rgba(255,255,255,0) 55%),
    rgba(0,0,0,.02);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contactCta__title{
  margin:0;
  font-family:Oswald, Inter, sans-serif;
  letter-spacing:.7px;
  text-transform:uppercase;
  color:#111;
}
.contactCta__sub{
  margin:6px 0 0;
  color:rgba(0,0,0,.65);
  line-height:1.6;
  font-weight:600;
}
.contactCta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

@media (min-width:768px){
  .contactCta{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:18px;
  }
  .contactCta__copy{ max-width:60%; }
}

/* CONTACT MODAL + FORM */
.contactPanel{
  position:relative;
  width:min(620px, 100%);
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
  max-height:calc(100vh - 3rem);
  overflow:auto;
}

.contactTitle{
  margin:0;
  font-family:Oswald, Inter, sans-serif;
  letter-spacing:.7px;
  text-transform:uppercase;
  color:#111;
}
.contactText{
  margin:8px 0 14px;
  color:rgba(0,0,0,.62);
  line-height:1.6;
  font-weight:600;
}

.contactForm{ display:block; }

.contactGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:10px;
}
@media (min-width:768px){
  .contactGrid{ grid-template-columns:1fr 1fr; }
}

.cField label{
  display:block;
  font-weight:900;
  margin-bottom:6px;
  color:#111;
}
.cField input,
.cField textarea,
.cField select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  outline:none;
  font-weight:600;
  font-family:inherit;
  background:#fff;
}
.cField textarea{
  min-height:120px;
  resize:vertical;
}
.cField input:focus,
.cField textarea:focus,
.cField select:focus{
  border-color:rgba(214,178,94,.70);
  box-shadow:0 0 0 4px rgba(214,178,94,.18);
}

.hpField{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contactSubmit{
  width:100%;
  margin-top:12px;
  justify-content:center;
}

.contactStatus{
  margin-top:10px;
  font-weight:850;
  color:rgba(0,0,0,.65);
  line-height:1.5;
}
.contactStatus.isErr{ color:#8b1e1e; }
.contactStatus.isOk{ color:#0b5a2a; }

.contactFine{
  margin:12px 0 0;
  color:rgba(0,0,0,.55);
  font-weight:750;
}
.contactFine a{
  color:inherit;
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}
