:root {
  --black: #080807;
  --charcoal: #141311;
  --cream: #f3eee4;
  --paper: #fbf7ef;
  --muted: #aaa195;
  --ink: #181511;
  --line: rgba(243, 238, 228, 0.16);
  --dark-line: rgba(24, 21, 17, 0.14);
  --gold: #d0aa62;
  --gold-dark: #98713b;
  --service-icon-rotor-speed: 14s;
  --service-icon-rotor-hover-speed: 6.5s;
  --service-icon-plan-speed: 1050ms;
  --service-icon-hover-speed: 720ms;
  --magnetic-return-speed: 360ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.cursor-field {
  position: fixed;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  overflow: hidden;
}

.cursor-icon {
  position: absolute;
  left: var(--icon-x);
  top: var(--icon-y);
  width: var(--icon-size);
  height: var(--icon-size);
  color: rgba(243, 238, 228, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.74);
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 10px rgba(8, 8, 7, 0.38)) drop-shadow(0 0 9px rgba(208, 170, 98, 0.2));
  animation: cursor-icon-fade 1050ms ease-out forwards;
  will-change: transform, opacity;
}

.cursor-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.cursor-icon.is-light {
  color: rgba(255, 250, 238, 0.94);
  filter: drop-shadow(0 0 10px rgba(8, 8, 7, 0.46)) drop-shadow(0 0 8px rgba(208, 170, 98, 0.18));
}

.cursor-icon.is-dark {
  color: rgba(8, 8, 7, 0.7);
  filter: drop-shadow(0 0 8px rgba(255, 250, 238, 0.34)) drop-shadow(0 0 7px rgba(208, 170, 98, 0.16));
}

@keyframes cursor-icon-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.74);
  }
  22% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

img, video {
  display: block;
  width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #f3eee4;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-subpage {
  background: rgba(8, 8, 7, 0.84);
  border-bottom: 1px solid var(--line);
  color: #f3eee4;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(243, 238, 228, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream);
}

.site-header.is-subpage .site-nav {
  color: rgba(243, 238, 228, 0.78);
}

.site-header.is-subpage .site-nav a:hover,
.site-header.is-subpage .site-nav a.is-active {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
  transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.nav-toggle:hover {
  border-color: rgba(208, 170, 98, 0.86);
  box-shadow: 0 0 0 4px rgba(208, 170, 98, 0.1);
}

.nav-toggle-lines {
  position: relative;
  display: block;
  width: 19px;
  height: 14px;
}

.nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1), opacity 180ms ease;
}

.nav-toggle-line:nth-child(1) {
  top: 0;
}

.nav-toggle-line:nth-child(2) {
  top: 6.25px;
}

.nav-toggle-line:nth-child(3) {
  top: 12.5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.25);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 4vw, 56px) 36px;
  color: #f3eee4;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
  opacity: 1;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.4), rgba(8, 8, 7, 0.16) 38%, rgba(8, 8, 7, 0.88)),
    linear-gradient(90deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.24) 58%, rgba(8, 8, 7, 0.62));
}

.hero-frame {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding-top: 12vh;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: clamp(42px, 5.55vw, 76px);
  line-height: 1;
}

h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(29px, 3.65vw, 50px);
  line-height: 1.06;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: 32px;
  align-items: end;
}

.hero-bottom p {
  margin: 0;
  color: rgba(243, 238, 228, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hero-action-stack {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.hero-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-contact-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(243, 238, 228, 0.26);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(8, 8, 7, 0.18);
  color: rgba(243, 238, 228, 0.84);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.hero-contact-pill:hover {
  border-color: rgba(208, 170, 98, 0.58);
  background: rgba(208, 170, 98, 0.08);
  color: var(--cream);
}

.hero-contact-pill svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magnetic-button {
  display: inline-flex;
  transform: translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0);
  transition: transform var(--magnetic-return-speed) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.magnetic-button.is-magnetic-active {
  transition-duration: 80ms;
}

.button.primary {
  background: var(--gold);
  color: #080807;
}

.button.ghost {
  border-color: rgba(243, 238, 228, 0.34);
  color: #f3eee4;
}

.button.ghost.dark {
  border-color: var(--dark-line);
  color: var(--ink);
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
  color: rgba(243, 238, 228, 0.74);
}

.hero-meta span {
  border: 1px solid rgba(243, 238, 228, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(8, 8, 7, 0.32);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 4vw, 56px);
}

.trusted-brokerages {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 170, 98, 0.08), transparent 34%),
    var(--charcoal);
}

.trusted-brokerages::before {
  content: "";
  position: absolute;
  inset: 20px clamp(18px, 4vw, 56px);
  z-index: -1;
  border: 1px solid rgba(243, 238, 228, 0.09);
  pointer-events: none;
}

.trusted-brokerages::after {
  content: "";
  position: absolute;
  right: -14vw;
  top: -18vw;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  border: 1px solid rgba(208, 170, 98, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 170, 98, 0.1), transparent 62%);
  pointer-events: none;
}

.trusted-shell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.trusted-copy {
  margin-bottom: 22px;
}

.trusted-copy h2 {
  max-width: none;
  margin: 0;
  color: rgba(243, 238, 228, 0.56);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.brokerage-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(243, 238, 228, 0.12);
  border-bottom: 1px solid rgba(243, 238, 228, 0.12);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.38), transparent 16%, transparent 84%, rgba(8, 8, 7, 0.38)),
    rgba(255, 255, 255, 0.018);
}

.brokerage-marquee::before,
.brokerage-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 180px);
  pointer-events: none;
}

.brokerage-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #15130f, rgba(21, 19, 15, 0));
}

.brokerage-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #15130f, rgba(21, 19, 15, 0));
}

.brokerage-track {
  display: flex;
  width: max-content;
  animation: brokerage-scroll 46s linear infinite;
  will-change: transform;
}

.brokerage-marquee:hover .brokerage-track {
  animation-play-state: paused;
}

.brokerage-item {
  position: relative;
  display: grid;
  width: clamp(150px, 13vw, 205px);
  min-height: 86px;
  place-items: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(243, 238, 228, 0.08);
  overflow: hidden;
  transition: background 420ms ease, border-color 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brokerage-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(208, 170, 98, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 44%);
  transition: opacity 420ms ease;
}

.brokerage-item img {
  position: relative;
  width: min(100%, 150px);
  height: 38px;
  object-fit: contain;
  opacity: 0.62;
  filter: invert(92%) sepia(10%) saturate(240%) hue-rotate(2deg) brightness(96%);
  transform: translateY(0) scale(0.98);
  transition: opacity 420ms ease, filter 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brokerage-item:hover {
  border-color: rgba(208, 170, 98, 0.26);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.brokerage-item:hover::before {
  opacity: 1;
}

.brokerage-item:hover img {
  opacity: 1;
  filter: invert(99%) sepia(8%) saturate(460%) hue-rotate(338deg) brightness(103%);
  transform: scale(1.025);
}

@keyframes brokerage-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section-number {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.statement,
.process {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.statement-copy {
  margin: 44px 0 0;
  color: #5d554b;
  font-size: 18px;
}

.showcase {
  background: var(--black);
}

.section-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  margin-bottom: 34px;
}

.section-head .text-link {
  display: inline-flex;
  margin-top: 22px;
}

.text-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.archive-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-left: calc(70px + clamp(22px, 4vw, 58px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

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

.archive-card strong {
  display: block;
  max-width: 760px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.archive-card .button.ghost {
  color: var(--cream);
  border-color: var(--line);
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: calc(70px + clamp(22px, 4vw, 58px));
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 238, 228, 0.78);
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button span {
  color: var(--gold);
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--gold);
  color: var(--cream);
}

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

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  overflow: hidden;
  background: #221e19;
}

.gallery-item.is-featured {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-item.is-wide {
  grid-column: span 5;
}

.gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-button img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.78);
}

.services {
  background:
    radial-gradient(circle at 12% 8%, rgba(208, 170, 98, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 36%),
    var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}

.services-shell {
  position: relative;
}

.services-shell::before,
.services-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-shell::before {
  top: 20px;
  right: 0;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border: 1px solid rgba(208, 170, 98, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 170, 98, 0.13), transparent 58%);
  transform: translate(28%, -18%);
}

.services-shell::after {
  left: 0;
  right: 0;
  top: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 170, 98, 0.35), transparent);
}

.services-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px minmax(0, 850px);
  gap: clamp(22px, 4vw, 58px);
  margin-bottom: 40px;
}

.services-head h2 {
  margin-bottom: 18px;
}

.services-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(243, 238, 228, 0.68);
  font-size: clamp(17px, 1.5vw, 20px);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.media-service-card,
.addon-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(243, 238, 228, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 7, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.media-service-card::before,
.addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(208, 170, 98, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 44%);
  transition: opacity 280ms ease;
}

.media-service-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 82px;
  height: 58px;
  opacity: 0.16;
  border: 1px solid rgba(243, 238, 228, 0.5);
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.32) 1px, transparent 1px),
    linear-gradient(rgba(243, 238, 228, 0.24) 1px, transparent 1px);
  background-size: 18px 14px;
  transform: skewX(-8deg);
}

.media-service-card:hover,
.addon-card:hover {
  transform: translateY(-7px);
  border-color: rgba(208, 170, 98, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 7, 0.3);
  box-shadow: 0 30px 90px rgba(208, 170, 98, 0.16), 0 30px 90px rgba(0, 0, 0, 0.26);
}

.media-service-card:hover::before,
.addon-card:hover::before {
  opacity: 1;
}

.media-service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.service-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
}

.service-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(208, 170, 98, 0.38);
  border-radius: 50%;
  background: rgba(208, 170, 98, 0.08);
  color: var(--gold);
  overflow: hidden;
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-camera svg {
  transform-origin: 50% 54%;
  transition: transform var(--service-icon-hover-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.media-service-card:hover .service-icon-camera svg,
.pricing-card:hover .service-icon-camera svg {
  transform: rotate(-4deg) scale(1.03);
}

.service-icon-drone .drone-rotor {
  transform-box: fill-box;
  transform-origin: center;
  animation: service-rotor-spin var(--service-icon-rotor-speed) linear infinite;
  opacity: 0.86;
}

.media-service-card:hover .service-icon-drone .drone-rotor,
.pricing-card:hover .service-icon-drone .drone-rotor {
  animation-duration: var(--service-icon-rotor-hover-speed);
  opacity: 1;
}

.service-icon-plan path {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.media-service-card:hover .service-icon-plan path,
.pricing-card:hover .service-icon-plan path {
  animation: service-plan-draw var(--service-icon-plan-speed) cubic-bezier(0.16, 1, 0.3, 1) both;
}

.media-service-card:hover .service-icon-plan path:nth-child(2) { animation-delay: 70ms; }
.media-service-card:hover .service-icon-plan path:nth-child(3) { animation-delay: 120ms; }
.media-service-card:hover .service-icon-plan path:nth-child(4) { animation-delay: 170ms; }
.media-service-card:hover .service-icon-plan path:nth-child(5) { animation-delay: 220ms; }
.media-service-card:hover .service-icon-plan path:nth-child(6) { animation-delay: 270ms; }
.pricing-card:hover .service-icon-plan path:nth-child(2) { animation-delay: 70ms; }
.pricing-card:hover .service-icon-plan path:nth-child(3) { animation-delay: 120ms; }
.pricing-card:hover .service-icon-plan path:nth-child(4) { animation-delay: 170ms; }
.pricing-card:hover .service-icon-plan path:nth-child(5) { animation-delay: 220ms; }
.pricing-card:hover .service-icon-plan path:nth-child(6) { animation-delay: 270ms; }

.service-icon-property::after {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%);
  opacity: 0;
  transform: translateX(-115%) rotate(8deg);
  transition: opacity 260ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-service-card:hover .service-icon-property::after,
.addon-card:hover .service-icon-property::after,
.pricing-card:hover .service-icon-property::after {
  opacity: 1;
  transform: translateX(115%) rotate(8deg);
}

@keyframes service-rotor-spin {
  to { transform: rotate(360deg); }
}

@keyframes service-plan-draw {
  0% {
    opacity: 0.42;
    stroke-dashoffset: 1;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

.media-service-card:hover .service-icon,
.addon-card:hover .service-icon,
.pricing-card:hover .service-icon {
  transform: scale(1.1);
  border-color: rgba(208, 170, 98, 0.7);
  background: rgba(208, 170, 98, 0.16);
}

.service-code {
  color: rgba(243, 238, 228, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.media-service-card h3 {
  max-width: 280px;
  margin: auto 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.media-service-card p,
.addon-card p {
  margin: 0;
  color: rgba(243, 238, 228, 0.66);
}

.service-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(208, 170, 98, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
    var(--paper);
  color: var(--ink);
}

.pricing::before {
  content: "";
  position: absolute;
  inset: auto 6vw 44px auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(155, 116, 63, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px minmax(0, 920px);
  gap: clamp(22px, 4vw, 58px);
  margin-bottom: 42px;
}

.pricing-head h2 {
  margin-bottom: 18px;
}

.pricing-head p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(24, 21, 17, 0.66);
  font-size: clamp(17px, 1.45vw, 20px);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(24, 21, 17, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 250, 242, 0.32)),
    rgba(255, 250, 242, 0.64);
  box-shadow: 0 18px 58px rgba(24, 21, 17, 0.065);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(208, 170, 98, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 48%);
  transition: opacity 280ms ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 78px;
  height: 54px;
  opacity: 0.08;
  border: 1px solid rgba(155, 116, 63, 0.42);
  background:
    linear-gradient(90deg, rgba(155, 116, 63, 0.34) 1px, transparent 1px),
    linear-gradient(rgba(155, 116, 63, 0.24) 1px, transparent 1px);
  background-size: 18px 14px;
  transform: skewX(-8deg);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 116, 63, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 242, 0.44)),
    rgba(255, 250, 242, 0.78);
  box-shadow: 0 24px 74px rgba(155, 116, 63, 0.12), 0 20px 58px rgba(24, 21, 17, 0.085);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 0;
}

.pricing-card .service-code {
  color: rgba(24, 21, 17, 0.34);
}

.pricing-card-main {
  display: grid;
  gap: 14px;
  padding: 24px 22px 20px;
}

.pricing-kicker {
  min-height: 64px;
  margin: 0;
  color: rgba(24, 21, 17, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-card h3 {
  max-width: 300px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.price-lockup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: baseline;
}

.price-lockup span,
.price-lockup em {
  color: rgba(24, 21, 17, 0.56);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-lockup strong {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  color: #11100e;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.price-lockup .price-currency {
  margin-top: 5px;
  color: currentColor;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
}

.price-lockup .price-amount {
  color: currentColor;
  font-size: clamp(40px, 3.65vw, 54px);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: none;
}

.price-feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 21, 17, 0.1);
}

.price-feature-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 22px 13px 48px;
  border-bottom: 1px solid rgba(24, 21, 17, 0.08);
  color: rgba(24, 21, 17, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.price-feature-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  width: 14px;
  height: 14px;
  border: 1.4px solid rgba(155, 116, 63, 0.68);
  border-radius: 50%;
}

.price-feature-list li::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 21px;
  width: 5px;
  height: 3px;
  border-left: 1.4px solid rgba(155, 116, 63, 0.78);
  border-bottom: 1.4px solid rgba(155, 116, 63, 0.78);
  transform: rotate(-45deg);
}

.price-feature-list li.is-group {
  min-height: auto;
  padding-left: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-feature-list li.is-group::before,
.price-feature-list li.is-group::after {
  display: none;
}

.pricing-cta {
  width: calc(100% - 44px);
  min-height: 46px;
  margin: auto 22px 22px;
}

.addons-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(243, 238, 228, 0.14);
}

.addons-head h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.addon-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.addon-card h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contact {
  background: var(--paper);
  color: var(--ink);
}

.contact-card {
  border: 1px solid var(--dark-line);
  padding: 28px;
  background: rgba(255, 255, 255, 0.38);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: rgba(24, 21, 17, 0.64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 21, 17, 0.14);
  border-radius: 0;
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 116px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(155, 116, 63, 0.55);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 0 0 4px rgba(155, 116, 63, 0.08);
}

.booking-form select.is-highlighted {
  border-color: rgba(155, 116, 63, 0.72);
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 0 0 5px rgba(155, 116, 63, 0.12);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(24, 21, 17, 0.38);
}

.address-map-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(24, 21, 17, 0.12);
  border-radius: 16px;
  background: #141311;
  box-shadow: 0 22px 44px rgba(24, 21, 17, 0.14);
}

.address-map-card[hidden] {
  display: none;
}

.address-map {
  min-height: 210px;
  background: linear-gradient(135deg, rgba(24, 21, 17, 0.92), rgba(61, 53, 42, 0.78));
}

.address-map-card p {
  margin: 0;
  padding: 0 16px 15px;
  color: rgba(243, 238, 228, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.pac-container {
  z-index: 10000;
  border: 1px solid rgba(208, 170, 98, 0.24);
  border-radius: 14px;
  margin-top: 8px;
  background: #141311;
  box-shadow: 0 22px 56px rgba(8, 8, 7, 0.28);
  color: #f3eee4;
  font-family: Inter, Arial, sans-serif;
}

.pac-item {
  border-top: 1px solid rgba(243, 238, 228, 0.08);
  padding: 10px 12px;
  color: rgba(243, 238, 228, 0.64);
  cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(208, 170, 98, 0.12);
}

.pac-item-query {
  color: #f3eee4;
  font-size: 14px;
}

.pac-matched {
  color: var(--gold);
}

.booking-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.booking-actions .button {
  border: 0;
  cursor: pointer;
}

.booking-status {
  flex: 1 1 220px;
  min-height: 22px;
  margin: 0;
  color: rgba(24, 21, 17, 0.64);
  font-size: 14px;
}

.booking-status.is-success {
  color: #45623f;
}

.booking-status.is-error {
  color: #8d3d32;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border-top: 1px solid var(--dark-line);
  padding-top: 18px;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 8px;
}

.process-list span {
  color: #62594f;
}

.quote {
  background: var(--black);
  text-align: center;
}

.quote blockquote {
  max-width: 1060px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
}

.location-seo,
.related-seo {
  background: var(--black);
  color: var(--cream);
}

.location-seo .section-head p:last-child {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.seo-card-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-card {
  border: 1px solid rgba(243, 238, 228, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(20, 19, 17, 0.7);
  padding: 24px;
  min-height: 250px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(208, 170, 98, 0.42);
  box-shadow: 0 22px 70px rgba(208, 170, 98, 0.12), 0 18px 50px rgba(0, 0, 0, 0.24);
}

.seo-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.seo-card p {
  margin: 0;
  color: rgba(243, 238, 228, 0.66);
}

.city-strip {
  max-width: 980px;
  margin: 30px 0 0;
  color: rgba(243, 238, 228, 0.58);
  font-size: 15px;
}

.landing-hero {
  display: grid;
  grid-template-columns: 90px minmax(0, 1040px);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  min-height: 64svh;
  padding-top: 150px;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.16), var(--black)),
    url("assets/portfolio/thumb/exterior-21.webp") center / cover;
  background-blend-mode: multiply;
}

.landing-hero h1 {
  max-width: 1060px;
  margin-top: 12px;
}

.landing-hero p:last-of-type {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(243, 238, 228, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
}

.landing-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.landing-copy h2 {
  max-width: 820px;
}

.landing-copy p {
  max-width: 780px;
  color: rgba(24, 21, 17, 0.68);
  font-size: 18px;
}

.landing-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.landing-list li {
  border-top: 1px solid var(--dark-line);
  padding-top: 14px;
  color: rgba(24, 21, 17, 0.74);
  font-weight: 700;
}

.landing-aside {
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.4);
  padding: 26px;
}

.landing-aside h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.landing-aside p {
  margin: 0 0 24px;
  color: rgba(24, 21, 17, 0.68);
}

.portfolio-hero {
  display: grid;
  grid-template-columns: 90px minmax(0, 1020px);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  min-height: 62svh;
  padding-top: 140px;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.15), var(--black)),
    url("assets/portfolio/thumb/exterior-21.webp") center / cover;
  background-blend-mode: multiply;
}

.portfolio-hero p:last-child {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.portfolio-page-showcase .portfolio-toolbar {
  padding-left: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.contact > div:first-child {
  min-width: 0;
  max-width: 680px;
}

.contact h2 {
  max-width: 680px;
  text-wrap: balance;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.contact-card .button,
.instagram {
  width: 100%;
}

.instagram {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--dark-line);
  color: var(--gold-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(243, 238, 228, 0.58);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 72px clamp(16px, 4vw, 56px) 54px;
  background: rgba(8, 8, 7, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1400px);
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.lightbox p {
  position: absolute;
  left: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(243, 238, 228, 0.7);
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 238, 228, 0.24);
  border-radius: 999px;
  background: rgba(243, 238, 228, 0.08);
  color: var(--cream);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 72px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

@media (max-width: 980px) {
  .nav-toggle { display: grid; }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(8, 8, 7, 0.94);
    border: 1px solid var(--line);
    color: rgba(243, 238, 228, 0.82);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a {
    color: rgba(243, 238, 228, 0.82);
    padding: 14px 12px;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--cream);
  }

  .hero-bottom,
  .statement,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-action-stack {
    justify-items: start;
  }

  .hero-contact-actions {
    justify-content: flex-start;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .portfolio-toolbar {
    padding-left: 0;
  }

  .archive-card {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
  }

  .gallery-item,
  .gallery-item.is-wide {
    grid-column: span 3;
  }

  .gallery-item.is-featured {
    grid-column: span 6;
  }

  .services-head,
  .pricing-head,
  .addons-block {
    grid-template-columns: 1fr;
  }

  .brokerage-item {
    width: 180px;
  }

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

  .pricing-kicker {
    min-height: auto;
  }

  .seo-card-grid,
  .seo-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-hero,
  .landing-content {
    grid-template-columns: 1fr;
  }

  .media-service-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: 104px 16px 30px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  h2 {
    font-size: clamp(29px, 8vw, 42px);
  }

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

  .hero-action-stack,
  .hero-contact-actions {
    width: 100%;
  }

  .hero-contact-pill {
    flex: 1 1 132px;
  }

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

  .gallery-item,
  .gallery-item.is-featured,
  .gallery-item.is-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .services-grid,
  .pricing-grid,
  .addons-grid,
  .seo-card-grid,
  .seo-card-grid.compact {
    grid-template-columns: 1fr;
  }

  .seo-card {
    min-height: auto;
  }

  .landing-hero {
    min-height: 620px;
    padding: 112px 16px 34px;
  }

  .landing-content,
  .location-seo,
  .related-seo {
    padding-left: 16px;
    padding-right: 16px;
  }

  .media-service-card {
    min-height: 310px;
    padding: 22px;
  }

  .pricing {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trusted-brokerages {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trusted-brokerages::before {
    inset: 18px 16px;
  }

  .trusted-shell,
  .trusted-copy,
  .brokerage-marquee {
    max-width: calc(100vw - 32px);
  }

  .trusted-copy h2 {
    font-size: 13px;
  }

  .brokerage-marquee::before,
  .brokerage-marquee::after {
    width: 46px;
  }

  .brokerage-item {
    width: 154px;
    min-height: 78px;
    padding: 18px 22px;
  }

  .brokerage-item img {
    width: min(100%, 150px);
    height: 34px;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card-top,
  .pricing-card-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .price-feature-list li {
    padding-left: 52px;
    padding-right: 22px;
  }

  .price-feature-list li::before {
    left: 22px;
  }

  .price-feature-list li::after {
    left: 27px;
  }

  .price-feature-list li.is-group {
    padding-left: 22px;
  }

  .pricing-cta {
    width: calc(100% - 44px);
    margin-left: 22px;
    margin-right: 22px;
  }

  .service-card-top {
    margin-bottom: 36px;
  }

  .addon-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .booking-actions .button,
  .contact-links .button,
  .contact-links .instagram {
    width: 100%;
  }

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

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .portfolio-hero {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding-top: 118px;
  }
}

@media (max-width: 1024px), (pointer: coarse) {
  .magnetic-button {
    transform: none !important;
    transition: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-button img { transition: none; }
  .cursor-field { display: none; }
  .brokerage-track {
    animation: none;
  }
  .brokerage-item,
  .brokerage-item::before,
  .brokerage-item img {
    transition: none;
  }
  .brokerage-item:hover {
    transform: none;
  }
  .magnetic-button {
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .service-icon,
  .service-icon svg,
  .service-icon path,
  .service-icon circle,
  .service-icon g {
    animation: none !important;
    transition: none !important;
  }
  .media-service-card:hover .service-icon-camera svg,
  .media-service-card:hover .service-icon,
  .addon-card:hover .service-icon,
  .pricing-card:hover .service-icon-camera svg,
  .pricing-card:hover .service-icon {
    transform: none;
  }
  .service-icon-property::after {
    display: none;
  }
}
