:root {
  --ink: #080909;
  --ink-soft: #111312;
  --graphite: #1a1c1b;
  --ivory: #f2eee5;
  --paper: #d8d2c6;
  --muted: #a7a399;
  --gold: #c6a66a;
  --gold-bright: #e0c58b;
  --gold-dark: #78623b;
  --line: rgba(198, 166, 106, 0.28);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 166, 106, 0.08), transparent 28rem),
    var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading h2,
.contact-copy h2,
.about-copy h2,
.coverage-copy h2,
.recognition-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-heading p,
.about-copy > p,
.coverage-copy > p,
.recognition-copy > p,
.contact-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--paper);
  font-size: 1.04rem;
  line-height: 1.8;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled {
  border-color: rgba(198, 166, 106, 0.16);
  background: rgba(8, 9, 9, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 235px;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: -0.06em;
  box-shadow: inset 0 0 0 4px rgba(198, 166, 106, 0.06);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 32px);
}

.nav-link {
  position: relative;
  padding: 30px 0;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.nav-cta {
  padding: 0 19px;
  color: var(--ink);
  background: var(--gold-bright);
}

.nav-cta:hover,
.btn-primary:hover {
  background: #efd69c;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 132px 0 70px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.82) 54%, rgba(8, 9, 9, 0.96) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), rgba(198, 166, 106, 0.06) 20%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -25%;
  right: -12%;
  width: min(720px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(198, 166, 106, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 100px rgba(198, 166, 106, 0.07), inset 0 0 100px rgba(198, 166, 106, 0.03);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.7vw, 7.3rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--paper);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  min-width: 190px;
  padding: 13px 22px;
}

.btn-primary {
  color: var(--ink);
  background: var(--gold-bright);
}

.btn-outline {
  border-color: rgba(242, 238, 229, 0.34);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.015);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-points li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 166, 106, 0.1);
}

.hero-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(30, 32, 31, 0.87), rgba(11, 12, 12, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  width: 38px;
  height: 38px;
  content: "";
  pointer-events: none;
}

.hero-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold-bright);
  border-left: 2px solid var(--gold-bright);
}

.hero-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

.hero-monogram {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.1em;
}

.hero-card h2 {
  margin: 23px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.hero-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-card-rule {
  width: 62px;
  height: 1px;
  margin: 26px 0;
  background: var(--gold);
}

.hero-card a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.hero-card a span {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 26px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue::after {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.about {
  padding: clamp(90px, 13vw, 160px) 0;
  background: linear-gradient(180deg, #0c0d0d 0%, #111312 100%);
}

.about-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
  grid-template-columns: 0.78fr 1.22fr;
}

.about-signature {
  position: sticky;
  top: 120px;
  padding: 34px;
  border-left: 1px solid var(--gold);
  background: linear-gradient(90deg, rgba(198, 166, 106, 0.055), transparent);
}

.about-signature span {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-signature blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.about-facts {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.fact {
  min-height: 132px;
  padding: 25px;
  background: var(--ink-soft);
}

.fact strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.services {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
}

.services::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(120, 98, 59, 0.18);
  border-radius: 50%;
  content: "";
}

.services .eyebrow {
  color: var(--gold-dark);
}

.services .section-heading h2 {
  color: var(--ink);
}

.services .section-heading p {
  color: #53534e;
}

.service-grid {
  display: grid;
  border-top: 1px solid rgba(8, 9, 9, 0.22);
  border-left: 1px solid rgba(8, 9, 9, 0.22);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 275px;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  border-right: 1px solid rgba(8, 9, 9, 0.22);
  border-bottom: 1px solid rgba(8, 9, 9, 0.22);
  background: rgba(255, 255, 255, 0.16);
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold-dark);
  transition: width 300ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--ivory);
  background: var(--ink-soft);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(8, 9, 9, 0.14);
}

.service-card:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 98, 59, 0.45);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  transition: color 260ms ease, border-color 260ms ease;
}

.service-card:hover .service-number {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.service-card h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: #5e5c55;
  font-size: 0.92rem;
  transition: color 260ms ease;
}

.service-card:hover p {
  color: var(--paper);
}

.coverage {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  background: #0e1010;
}

.coverage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(198, 166, 106, 0.1) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(198, 166, 106, 0.08) 50%, transparent 50.1%);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at 75% 50%, black 0%, transparent 55%);
  opacity: 0.65;
}

.coverage-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(50px, 9vw, 110px);
  grid-template-columns: 1fr 0.85fr;
}

.coverage-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(198, 166, 106, 0.07), rgba(255, 255, 255, 0.015));
}

.coverage-ring {
  position: absolute;
  inset: 50%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(198, 166, 106, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.coverage-ring::before,
.coverage-ring::after {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(198, 166, 106, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.coverage-ring::before {
  width: 330px;
  height: 330px;
}

.coverage-ring::after {
  width: 170px;
  height: 170px;
}

.coverage-center {
  position: absolute;
  z-index: 2;
  inset: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-bright);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(198, 166, 106, 0.2);
}

.coverage-label {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.coverage-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(198, 166, 106, 0.16);
  color: var(--paper);
}

.coverage-list li::before {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.recognition {
  padding: clamp(85px, 11vw, 135px) 0;
  border-block: 1px solid rgba(198, 166, 106, 0.15);
  background: linear-gradient(135deg, #171816, #0b0c0c);
}

.recognition-grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  grid-template-columns: 0.55fr 1.45fr;
}

.medal {
  position: relative;
  display: grid;
  width: min(250px, 70vw);
  margin-inline: auto;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(198, 166, 106, 0.45);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 4.6rem;
  box-shadow: 0 0 0 18px rgba(198, 166, 106, 0.035), 0 0 70px rgba(198, 166, 106, 0.08);
}

.medal::before,
.medal::after {
  position: absolute;
  top: -31px;
  width: 54px;
  height: 86px;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  clip-path: polygon(0 0, 100% 0, 84% 100%, 50% 78%, 16% 100%);
}

.medal::before {
  left: 52px;
  transform: rotate(-17deg);
}

.medal::after {
  right: 52px;
  transform: rotate(17deg);
}

.gallery {
  padding: clamp(90px, 12vw, 150px) 0;
  background: #090a0a;
}

.gallery-grid {
  display: grid;
  align-items: start;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: 0.89fr 1.11fr;
}

.gallery-card {
  position: relative;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(198, 166, 106, 0.62);
  background: #111;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-card:nth-child(2) {
  margin-top: 64px;
}

.gallery-card::after {
  position: absolute;
  inset: 9px;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 30px 7px rgba(8, 9, 9, 0.34);
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: filter 420ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  mask-image: radial-gradient(ellipse 98% 98% at center, #000 89%, transparent 100%);
}

.gallery-card:hover img {
  filter: contrast(1.04) brightness(1.04);
  transform: scale(1.025);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  padding: 13px 15px;
  border-left: 2px solid var(--gold);
  color: var(--ivory);
  background: rgba(8, 9, 9, 0.78);
  font-family: var(--serif);
  font-size: 1rem;
  backdrop-filter: blur(8px);
}

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 56px 0 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-align: center;
}

.gallery-note::before,
.gallery-note::after {
  width: min(90px, 10vw);
  height: 1px;
  content: "";
  background: var(--gold-dark);
}

.contact {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
}

.contact::before {
  position: absolute;
  right: -10vw;
  bottom: -27vw;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(120, 98, 59, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
}

.contact .eyebrow {
  color: var(--gold-dark);
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy > p {
  color: #52514c;
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  color: var(--ivory);
  background: var(--ink-soft);
  box-shadow: 18px 18px 0 rgba(120, 98, 59, 0.14);
}

.contact-panel small {
  display: block;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-phone {
  display: inline-block;
  margin-top: 11px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.contact-meta {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 25px 0;
  border-block: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.88rem;
}

.social-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-dot {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.92rem;
  text-transform: none;
}

.site-footer {
  padding: 44px 0 26px;
  border-top: 1px solid var(--line);
  background: #070808;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  color: var(--muted);
  font-size: 0.79rem;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(198, 166, 106, 0.11);
  color: #77776f;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.46);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: 30px;
  place-items: center;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 820px);
  max-height: 86vh;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--gold-dark);
  color: var(--ivory);
  background: var(--ink-soft);
  cursor: pointer;
  font-size: 1.5rem;
}

.js .reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

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

@media (max-width: 1060px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-link:nth-of-type(4) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.65fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 320ms ease, opacity 220ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    max-height: calc(100vh - 74px);
    padding: 18px 16px 24px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-link:nth-of-type(4) {
    display: block;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(198, 166, 106, 0.11);
    font-size: 0.95rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 84px;
  }

  .hero-grid,
  .about-grid,
  .coverage-grid,
  .recognition-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .scroll-cue {
    display: none;
  }

  .about-signature {
    position: static;
  }

  .coverage-copy {
    order: -1;
  }

  .recognition-grid {
    text-align: center;
  }

  .recognition-copy .eyebrow {
    justify-content: center;
  }

  .recognition-copy > p {
    margin-inline: auto;
  }

  .gallery-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(2) {
    width: min(100%, 570px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-card {
    padding: 30px 24px;
  }

  .about-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .service-card {
    min-height: 230px;
  }

  .coverage-visual {
    min-height: 360px;
  }

  .coverage-ring {
    width: 190px;
    height: 190px;
  }

  .coverage-ring::before {
    width: 250px;
    height: 250px;
  }

  .coverage-ring::after {
    width: 135px;
    height: 135px;
  }

  .coverage-center {
    width: 96px;
    height: 96px;
    font-size: 1.9rem;
  }

  .coverage-label {
    font-size: 0.62rem;
  }

  .medal {
    width: 205px;
    font-size: 3.8rem;
  }

  .medal::before {
    left: 42px;
  }

  .medal::after {
    right: 42px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }

  .lightbox {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
