:root {
  --black: #1e1e1e;
  --ink: #252525;
  --white: #ffffff;
  --cream: #f8f5f0;
  --gold: #bfb281;
  --gold-mid: #e0c9a6;
  --navy: #284769;
  --teal: #678c83;
  --slate: #536787;
  --muted: #5f625f;
  --border: rgba(191, 178, 129, 0.22);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Montserrat", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

#header.scrolled,
#header.menu-open {
  background: rgba(30, 30, 30, 0.96);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 42px;
  border: 2px solid currentColor;
  transform: skewX(-14deg);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
}

.brand-mark::before {
  top: 12px;
}

.brand-mark::after {
  top: 24px;
}

.brand-text {
  font-family: var(--display);
  font-size: 20px;
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.nav-link,
.header-phone {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  line-height: 1;
}

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

.nav-link:hover,
.header-phone:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 220px;
  display: grid;
  padding: 8px 0;
  background: #181818;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 13px 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(191, 178, 129, 0.06);
}

.header-cta,
.mobile-nav button {
  padding: 12px 26px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.header-cta:hover,
.btn-fill:hover,
.mobile-nav button:hover {
  background: var(--white);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 110px 44px 44px;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1;
}

.mobile-nav button,
.mobile-phone {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

.mobile-nav .mobile-phone {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 640px;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.3s ease, transform 3s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.24) 45%, rgba(8, 8, 8, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 82px;
}

.hero-eyebrow,
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 14px;
  background: var(--gold);
  vertical-align: middle;
}

.hero-title,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  max-width: 820px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(38px, 4.6vw, 66px);
}

em {
  font-style: italic;
  color: var(--gold);
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-fill {
  background: var(--gold);
  color: var(--black);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-badges {
  margin-top: 32px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(30, 30, 30, 0.62);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-badges i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-indicators {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-indicators button {
  width: 28px;
  height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-indicators button.active {
  width: 48px;
  background: var(--gold);
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  background: var(--gold);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  content: "*";
  color: var(--navy);
  font-size: 8px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 120px 0;
  background: var(--white);
}

.section-light {
  background: var(--cream);
}

.section-blue {
  background: var(--navy);
  color: var(--white);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.split-heading p,
.section-copy,
.about-layout p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-black .about-layout p,
.section-blue p {
  color: rgba(255, 255, 255, 0.58);
}

.split-heading .btn {
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.75s ease, filter 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.34);
}

.service-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px;
  color: var(--white);
}

.service-card span,
.why-item > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
}

.service-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.service-card:hover p {
  max-height: 96px;
  opacity: 1;
}

.service-card a {
  display: inline-block;
  max-height: 0;
  margin-top: 12px;
  overflow: hidden;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.service-card:hover a {
  max-height: 30px;
  opacity: 1;
}

.why-layout,
.about-layout,
.faq-layout,
.contact-layout,
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.why-list {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.why-item p {
  margin: 0;
}

.why-image,
.about-image,
.faq-visual {
  position: relative;
}

.why-image img,
.about-image img,
.faq-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.why-image div,
.about-image div {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  gap: 3px;
  padding: 22px 30px;
  background: var(--gold);
  color: var(--black);
}

.why-image strong,
.about-image strong,
.stats strong {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.why-image span,
.about-image span,
.stats span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}

.portfolio-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  background: var(--black);
  text-align: left;
}

.portfolio-item.large {
  grid-column: span 7;
  grid-row: span 2;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3) {
  grid-column: span 5;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.88), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-item span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-item:hover span {
  opacity: 1;
}

.portfolio-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.before-after div {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.before-after .before {
  background: var(--black);
  color: var(--gold);
}

.before-after .after {
  background: var(--gold);
  color: var(--black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 54px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card::before {
  content: "\"";
  position: absolute;
  top: 2px;
  right: 22px;
  color: rgba(191, 178, 129, 0.34);
  font-family: var(--display);
  font-size: 112px;
}

.stars {
  margin-bottom: 20px;
  color: #c99f62;
  letter-spacing: 3px;
}

.review-card p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.reviewer span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.reviewer strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.reviewer small {
  color: var(--muted);
  font-size: 12px;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.city-grid span {
  padding: 9px 17px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(30deg, transparent 48%, rgba(191, 178, 129, 0.17) 49%, transparent 50%) 0 0 / 90px 90px,
    linear-gradient(130deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%) 0 0 / 120px 120px,
    #1a2535;
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74%, 370px);
  aspect-ratio: 1;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: rgba(191, 178, 129, 0.08);
  transform: translate(-50%, -50%);
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 16px 20px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.map-marker small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0;
  background: rgba(191, 178, 129, 0.14);
}

.stats div {
  display: grid;
  gap: 6px;
  place-items: center;
  padding: 24px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.stats strong {
  color: var(--gold);
  font-size: 40px;
}

.stats span {
  color: rgba(255, 255, 255, 0.42);
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.faq-item button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--navy);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.open button span {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  transition: max-height 0.3s ease, padding 0.25s ease;
}

.faq-item.open p {
  max-height: 160px;
  padding-bottom: 24px;
}

.faq-visual div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 36px;
  background: var(--navy);
}

.faq-visual h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 300;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.contact-info a,
.contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.contact-info span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form,
.modal-panel {
  padding: 48px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(191, 178, 129, 0.35);
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font: 15px var(--body);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-form .btn,
.modal-panel .btn {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  line-height: 1.5;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  color: var(--gold);
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.form-success.visible {
  display: block;
}

footer {
  padding: 72px 48px 32px;
  background: #141414;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  margin-bottom: 20px;
}

footer p {
  max-width: 300px;
  font-size: 13px;
  line-height: 1.8;
}

footer h4 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer a,
footer button {
  display: block;
  margin-bottom: 11px;
  padding: 0;
  color: rgba(255, 255, 255, 0.44);
  background: transparent;
  font-size: 13px;
  text-align: left;
}

footer a:hover,
footer button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

.modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(20, 20, 20, 0.86);
  backdrop-filter: blur(8px);
}

.modal.open,
.gallery-modal.open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(100%, 650px);
  max-height: 92vh;
  overflow: auto;
  background: var(--black);
}

.modal-close,
.gallery-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 28px;
  line-height: 1;
}

.modal-panel h2 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
}

.modal-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.7;
}

.gallery-modal {
  flex-direction: column;
}

.gallery-modal img {
  max-width: 90vw;
  max-height: 74vh;
  object-fit: contain;
}

.gallery-modal div {
  margin-top: 22px;
  text-align: center;
}

.gallery-modal span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-modal strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 300;
}

.service-main {
  background: var(--white);
}

.service-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.24) 45%, rgba(10, 10, 10, 0.72));
}

.service-hero .hero-content {
  padding-bottom: 72px;
}

.service-hero .hero-title {
  max-width: 980px;
  font-size: clamp(46px, 6.2vw, 86px);
}

.service-overview,
.service-process,
.service-gallery,
.service-cta {
  padding: 82px 0;
}

.service-overview {
  background: var(--cream);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: rgba(191, 178, 129, 0.18);
}

.service-step {
  min-height: 260px;
  padding: 34px 30px;
  background: rgba(248, 245, 240, 0.96);
}

.service-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.service-step h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-step p,
.service-overview p,
.service-gallery p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
  margin-top: 34px;
}

.service-gallery-grid .portfolio-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.service-gallery-grid .portfolio-item:nth-child(2),
.service-gallery-grid .portfolio-item:nth-child(3) {
  grid-column: span 5;
}

.service-gallery-grid .portfolio-item:nth-child(n+4) {
  grid-column: span 4;
}

.service-cta {
  background: var(--navy);
  color: var(--white);
}

.service-cta .section-copy {
  color: rgba(255, 255, 255, 0.58);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.service-nav-active {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

@media (max-width: 900px) {
  #header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 44px;
    height: 34px;
  }

  .brand-text {
    font-size: 17px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 0 20px 96px;
  }

  .hero-title {
    font-size: clamp(54px, 15vw, 78px);
  }

  .hero-indicators {
    right: 20px;
    bottom: 72px;
  }

  .hero-badges span {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner {
    padding: 0 20px;
  }

  .split-heading,
  .why-layout,
  .about-layout,
  .faq-layout,
  .contact-layout,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card p,
  .service-card a {
    max-height: none;
    opacity: 1;
  }

  .portfolio-head {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .service-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .portfolio-item,
  .portfolio-item.large,
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .service-gallery-grid .portfolio-item:nth-child(1),
  .service-gallery-grid .portfolio-item:nth-child(2),
  .service-gallery-grid .portfolio-item:nth-child(3),
  .service-gallery-grid .portfolio-item:nth-child(n+4) {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-item::after,
  .portfolio-item span {
    opacity: 1;
  }

  .before-after,
  .reviews-grid,
  .service-process-grid,
  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 360px;
  }

  .contact-form,
  .modal-panel {
    padding: 34px 22px;
  }

  footer {
    padding: 56px 20px 100px;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .scroll-top {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    border-top: 1px solid var(--border);
  }

  .mobile-cta a,
  .mobile-cta button {
    display: grid;
    min-height: 58px;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-cta a {
    color: var(--white);
    border-right: 1px solid var(--border);
  }

  .mobile-cta button {
    background: var(--gold);
    color: var(--black);
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
