:root {
  --black: #050505;
  --charcoal: #111112;
  --ink: #1b1a18;
  --gold: #d8a43d;
  --gold-light: #f4d47d;
  --blue: #0739c6;
  --red: #df141c;
  --cream: #f8f4ec;
  --muted: #77736c;
  --line: rgba(216, 164, 61, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  top: 0 !important;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 10px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.35));
  color: #fff;
  backdrop-filter: blur(12px);
}

.brand img {
  width: clamp(118px, 11vw, 172px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  transform: scaleX(1);
}

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

.language-switcher {
  position: relative;
}

.language-select {
  min-height: 44px;
  padding: 0 34px 0 14px;
  min-width: 118px;
  border: 1px solid rgba(244, 212, 125, 0.62);
  border-radius: 0;
  color: var(--gold-light);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.08), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
}

.language-switcher::after {
  position: absolute;
  content: "v";
  right: 12px;
  top: 50%;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(-55%);
  pointer-events: none;
}

.language-select option {
  color: #111;
  background: #fff;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 212, 125, 0.62);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.08), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-position 220ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(216, 164, 61, 0.24);
}

.button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.header-cta {
  color: var(--gold-light);
}

.header-phone {
  position: relative;
  min-width: 184px;
  overflow: hidden;
}

.header-phone span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-phone .phone-hover {
  position: absolute;
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 1.6px;
}

.header-phone:hover .phone-default,
.header-phone:focus-visible .phone-default {
  opacity: 0;
  transform: translateY(-14px);
}

.header-phone:hover .phone-hover,
.header-phone:focus-visible .phone-hover {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-color: #06080d;
  overflow: hidden;
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroSlideshow 24s infinite;
  transform: scale(1);
}

.hero-slide-night {
  opacity: 1;
  background-image: url("assets/hero-luxury-home.webp");
}

.hero-slide-day {
  background-image: url("assets/property-villa.webp");
  animation-delay: 6s;
}

.hero-slide-estate {
  background-image: url("assets/property-estate.webp");
  animation-delay: 12s;
}

.hero-slide-skyview {
  background-image: url("assets/property-penthouse.webp");
  animation-delay: 18s;
}

@keyframes heroSlideshow {
  0% {
    opacity: 1;
    transform: scale(1.035);
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.09);
  }
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

.hero-overlay {
  background:
    radial-gradient(circle at 8% 42%, rgba(7, 57, 198, 0.34), transparent 30%),
    radial-gradient(circle at 92% 40%, rgba(223, 20, 28, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 72px);
  padding-top: clamp(210px, 14vw, 260px);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.center {
  text-align: center;
}

.center::before {
  display: block;
  margin: 0 auto 14px;
}

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

p {
  font-size: 18px;
  line-height: 1.7;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.04;
}

h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.hero-creole {
  margin: -6px 0 24px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.1vw, 42px);
  font-style: italic;
  line-height: 1.15;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-gold {
  color: #171004;
  background: linear-gradient(135deg, #f8db87, var(--gold));
  box-shadow: 0 20px 50px rgba(216, 164, 61, 0.22);
}

.button-dark {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(90deg, var(--blue), var(--gold), var(--red)) border-box;
  border: 1px solid transparent;
}

.button-phone {
  min-width: 230px;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 2px;
}

.button-call-swap {
  min-width: 218px;
}

.button-call-swap span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.button-call-swap .call-hover {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  letter-spacing: 1.8px;
}

.button-call-swap:hover .call-default,
.button-call-swap:focus-visible .call-default {
  opacity: 0;
  transform: translateY(-16px);
}

.button-call-swap:hover .call-hover,
.button-call-swap:focus-visible .call-hover {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 18%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 18%),
    var(--cream);
}

.intro h2,
.services h2,
.lead-card h2,
.about-lead h2,
.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.intro-copy p:not(.section-kicker),
.lead-card p,
.about-lead p,
.cta p {
  max-width: 620px;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.signature {
  margin-top: 24px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article,
.service-card,
.lead-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(17, 17, 18, 0.08);
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 34px 24px;
  text-align: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(7, 57, 198, 0.28), rgba(216, 164, 61, 0.45), rgba(223, 20, 28, 0.24)) border-box;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-grid article::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 164, 61, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 57, 198, 0.06), transparent 44%, rgba(223, 20, 28, 0.06));
  transition: opacity 220ms ease;
}

.trust-grid article::after {
  position: absolute;
  content: "";
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  transform: scaleX(0.25);
  transform-origin: center;
  transition: transform 220ms ease;
}

.trust-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(17, 17, 18, 0.16);
}

.trust-grid article:hover::before {
  opacity: 1;
}

.trust-grid article:hover::after {
  transform: scaleX(1);
}

.trust-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border: 6px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(17, 17, 18, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-grid article:hover .trust-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 22px 54px rgba(17, 17, 18, 0.24);
}

.blue {
  background: var(--blue);
}

.red {
  background: var(--red);
}

.gold {
  background: var(--gold);
  color: #150f04;
}

.trust-grid h3,
.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-grid p,
.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services,
.lead-panel,
.creole-cta,
.home-value,
.social-feed,
.service-partners {
  padding: clamp(70px, 8vw, 110px) clamp(20px, 6vw, 96px);
  text-align: center;
}

.creole-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  text-align: left;
  background:
    radial-gradient(circle at 8% 50%, rgba(7, 57, 198, 0.28), transparent 26%),
    radial-gradient(circle at 92% 50%, rgba(223, 20, 28, 0.22), transparent 25%),
    linear-gradient(135deg, #050505, #17110a);
  border-top: 1px solid rgba(216, 164, 61, 0.32);
  border-bottom: 1px solid rgba(216, 164, 61, 0.32);
}

.creole-cta h2 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: clamp(34px, 4.6vw, 58px);
}

.creole-cta p:not(.section-kicker) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.services {
  color: #fff;
  background:
    radial-gradient(circle at 0% 20%, rgba(7, 57, 198, 0.18), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(223, 20, 28, 0.16), transparent 25%),
    var(--black);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.service-card {
  min-height: 210px;
  padding: 32px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.service-card.buy {
  border-top: 4px solid var(--blue);
}

.service-card.sell {
  border-top: 4px solid var(--red);
}

.service-card.invest {
  border-top: 4px solid var(--gold);
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 18%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 18%),
    #e6e2da;
  text-align: left;
}

.lead-intro {
  grid-column: 1 / -1;
  width: min(920px, 100%);
  margin: 0 auto clamp(6px, 1.4vw, 14px);
  text-align: center;
}

.lead-intro h2 {
  margin: 0 auto 16px;
  max-width: 860px;
  font-size: clamp(34px, 4vw, 58px);
}

.lead-intro p:not(.section-kicker) {
  max-width: 780px;
  margin: 0 auto;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.lead-card {
  min-height: 520px;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lead-card h2 {
  max-width: 580px;
}

.lead-card ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.lead-card li {
  position: relative;
  padding-left: 26px;
  color: #39352f;
  font-weight: 700;
}

.lead-card li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.lead-buy {
  border-top: 5px solid var(--blue);
}

.lead-sell {
  color: #fff;
  border-top: 5px solid var(--red);
  background:
    radial-gradient(circle at 100% 10%, rgba(223, 20, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #080808, #17110a);
}

.lead-sell p,
.lead-sell li {
  color: rgba(255, 255, 255, 0.78);
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 10% 14%, rgba(7, 57, 198, 0.1), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(223, 20, 28, 0.08), transparent 24%),
    #fff;
}

.portrait-feature {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.28), transparent 28%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.22), transparent 28%),
    linear-gradient(145deg, #070707, #17120b);
  border: 1px solid rgba(216, 164, 61, 0.58);
  box-shadow: 0 38px 110px rgba(7, 57, 198, 0.16), 0 24px 80px rgba(0, 0, 0, 0.22);
}

.portrait-feature::before {
  position: absolute;
  content: "";
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(244, 212, 125, 0.32);
}

.portrait-feature::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  right: -42px;
  top: -42px;
  border: 1px solid rgba(216, 164, 61, 0.28);
  border-radius: 50%;
}

.about-photo {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(244, 212, 125, 0.74);
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  left: 18px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.portrait-nameplate {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  margin: -2px 18px 0;
  padding: 18px 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.18), transparent 38%, rgba(223, 20, 28, 0.16)),
    rgba(5, 5, 5, 0.9);
  border: 1px solid rgba(216, 164, 61, 0.54);
  border-top: 0;
}

.portrait-nameplate strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.portrait-nameplate span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.portrait-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.portrait-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 212, 125, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
  color: var(--gold-light);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portrait-socials a:first-child {
  box-shadow: inset 3px 0 0 var(--blue), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.portrait-socials a:last-child {
  box-shadow: inset 3px 0 0 var(--red), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.portrait-socials a:hover,
.portrait-socials a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 18px 38px rgba(216, 164, 61, 0.28);
}

.portrait-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.specialty-chips span {
  padding: 10px 14px;
  border: 1px solid rgba(216, 164, 61, 0.42);
  border-left: 4px solid var(--blue);
  color: #2c2821;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(17, 17, 18, 0.06);
}

.specialty-chips span:nth-child(even) {
  border-left-color: var(--red);
}

.specialty-chips span:nth-child(3n) {
  border-left-color: var(--gold);
}

.home-value {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.08), transparent 22%),
    linear-gradient(270deg, rgba(223, 20, 28, 0.08), transparent 22%),
    #e6e2da;
}

.home-value h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 56px);
}

.home-value p {
  max-width: 620px;
  color: #59544c;
  font-size: 18px;
  line-height: 1.75;
}

.home-value ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-value li {
  position: relative;
  padding-left: 28px;
  color: #39352f;
  font-weight: 800;
}

.home-value li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.homebot-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  max-width: 760px;
  width: 100%;
  justify-self: end;
  padding: clamp(16px, 2.8vw, 28px);
  border: 1px solid rgba(216, 164, 61, 0.48);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.06), transparent 36%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.05), transparent 36%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 68px rgba(17, 17, 18, 0.12);
}

.homebot-card::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--gold), var(--red));
}

.homebot-card::after {
  position: absolute;
  content: "";
  right: 18px;
  bottom: 16px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  opacity: 0.68;
}

#homebot_homeowner {
  position: relative;
  z-index: 1;
  min-height: 230px;
}

#homebot_homeowner iframe {
  min-height: 230px !important;
  max-height: 300px;
}

.social-feed {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(circle at 12% 28%, rgba(7, 57, 198, 0.26), transparent 28%),
    radial-gradient(circle at 88% 68%, rgba(223, 20, 28, 0.24), transparent 26%),
    linear-gradient(135deg, #050505, #15120d 58%, #090909);
  border-top: 1px solid rgba(216, 164, 61, 0.24);
  border-bottom: 1px solid rgba(216, 164, 61, 0.24);
}

.social-feed h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.social-feed p:not(.section-kicker) {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

.youtube-placeholder {
  display: block;
  color: inherit;
  text-decoration: none;
}

.youtube-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 30vw, 430px);
  border: 1px solid rgba(244, 212, 125, 0.48);
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.78), transparent 36%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.68), transparent 40%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.9)),
    url("assets/property-villa.webp") center/cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.youtube-frame::before {
  position: absolute;
  content: "";
  inset: 18px;
  border: 1px solid rgba(244, 212, 125, 0.34);
}

.youtube-frame::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.youtube-placeholder:hover .youtube-frame,
.youtube-placeholder:focus-visible .youtube-frame {
  transform: translateY(-6px);
  border-color: rgba(244, 212, 125, 0.84);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42), 0 0 34px rgba(216, 164, 61, 0.16);
}

.youtube-window {
  position: absolute;
  left: clamp(22px, 4vw, 52px);
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 58px);
  z-index: 1;
  display: grid;
  gap: 10px;
}

.youtube-tag,
.youtube-caption {
  width: max-content;
  max-width: 100%;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.youtube-title {
  max-width: 560px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
}

.youtube-caption {
  color: rgba(255, 255, 255, 0.74);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(244, 212, 125, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(244, 212, 125, 0.94), rgba(216, 164, 61, 0.82));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.youtube-play::before {
  position: absolute;
  content: "";
  left: 34px;
  top: 25px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 22px solid #15100a;
}

.service-partners {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 57, 198, 0.22), transparent 25%),
    radial-gradient(circle at 88% 28%, rgba(223, 20, 28, 0.18), transparent 25%),
    linear-gradient(135deg, #050505, #17120b);
}

.service-partners h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 4.5vw, 64px);
}

.partners-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 40px);
  text-align: left;
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(216, 164, 61, 0.42);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-card::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 164, 61, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(7, 57, 198, 0.1), transparent 46%, rgba(223, 20, 28, 0.1));
  transition: opacity 220ms ease;
}

.partner-card::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  right: -42px;
  bottom: -42px;
  border: 1px solid rgba(216, 164, 61, 0.32);
  border-radius: 50%;
  transition: transform 220ms ease, border-color 220ms ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 212, 125, 0.8);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

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

.partner-card:hover::after {
  transform: scale(1.18);
  border-color: rgba(244, 212, 125, 0.68);
}

.partner-card.realty {
  border-top: 5px solid var(--blue);
}

.partner-card.mortgage {
  border-top: 5px solid var(--red);
}

.partner-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.partner-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
}

.partner-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.partner-card .button {
  position: relative;
  z-index: 1;
}

.cta {
  padding: clamp(76px, 9vw, 120px) 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.22), transparent 28%, transparent 72%, rgba(223, 20, 28, 0.22)),
    linear-gradient(135deg, #070707, #16120c);
}

.cta p {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-large {
  min-width: min(360px, 100%);
  min-height: 58px;
  font-size: 13px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1060px, calc(100% - 36px));
  margin: 34px auto 0;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(216, 164, 61, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form select option {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 6vw, 76px) clamp(20px, 6vw, 96px);
  color: #fff;
  background: #030303;
  border-top: 1px solid rgba(216, 164, 61, 0.35);
}

.footer-copyright {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 12px 0 0;
  padding-top: 22px;
  width: min(100%, 980px);
  border-top: 1px solid rgba(216, 164, 61, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
}

.footer-copyright strong {
  color: var(--gold-light);
  font-weight: 900;
}

.footer-brand img {
  display: block;
  width: min(180px, 72%);
  margin: 0 0 4px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0 0 14px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.5;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(244, 212, 125, 0.58);
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.6px;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.16), rgba(223, 20, 28, 0.16)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 48px rgba(216, 164, 61, 0.2);
}

.footer-column nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.policy-page {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 70px) 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 57, 198, 0.22), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(223, 20, 28, 0.18), transparent 28%),
    linear-gradient(135deg, #050505, #15100a);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto 18px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(244, 212, 125, 0.62);
  color: var(--gold-light);
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.18), rgba(216, 164, 61, 0.12), rgba(223, 20, 28, 0.14)),
    rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.policy-back::before {
  content: "<";
  margin-right: 10px;
  color: var(--gold-light);
  font-weight: 900;
}

.policy-back:hover,
.policy-back:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.policy-language {
  justify-self: end;
}

.policy-logo {
  display: block;
  width: min(260px, 70vw);
  margin: 0 auto 28px;
}

.policy-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 76px);
  color: var(--ink);
  background: rgba(248, 244, 236, 0.98);
  border: 1px solid rgba(216, 164, 61, 0.46);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.policy-card h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 7vw, 74px);
}

.policy-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card p {
  color: #4d4942;
  font-size: 18px;
  line-height: 1.75;
}

.policy-card a {
  color: var(--blue);
  font-weight: 800;
}

.policy-date {
  color: #8a7b5d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-note {
  margin-top: 38px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(216, 164, 61, 0.12);
}

.brand-kit-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(7, 57, 198, 0.2), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(223, 20, 28, 0.16), transparent 28%),
    linear-gradient(135deg, #050505, #17120b 58%, #f8f4ec 58%);
}

.brand-kit {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.brand-kit-hero,
.brand-kit-section {
  border: 1px solid rgba(216, 164, 61, 0.34);
  background: rgba(248, 244, 236, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.brand-kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 6vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 57, 198, 0.2), transparent 28%, rgba(223, 20, 28, 0.14)),
    #050505;
}

.brand-kit-hero .policy-back {
  grid-column: 1 / -1;
  width: max-content;
}

.brand-kit-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(58px, 9vw, 118px);
}

.brand-kit-hero p:not(.section-kicker) {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(18px, 2.4vw, 28px);
}

.brand-kit-hero img {
  justify-self: center;
  width: min(360px, 100%);
}

.brand-kit-section {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 58px);
}

.brand-kit-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.brand-kit-heading h2,
.brand-kit-section h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
}

.brand-kit-heading p:not(.section-kicker),
.brand-kit-section > p,
.brand-kit-split p,
.brand-card-dark p {
  color: #5b554c;
  font-size: 18px;
  line-height: 1.7;
}

.logo-showcase,
.usage-grid,
.color-grid,
.message-grid,
.button-samples {
  display: grid;
  gap: 18px;
}

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

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(216, 164, 61, 0.3);
}

.logo-tile img {
  width: min(280px, 90%);
}

.logo-tile span,
.brand-kit-note {
  margin-top: 18px;
  color: #716a60;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.logo-tile-dark {
  color: #fff;
  background: #050505;
}

.logo-tile-light {
  background: #fff;
}

.usage-grid,
.brand-kit-split,
.message-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.usage-grid article,
.message-grid article {
  padding: 24px;
  border: 1px solid rgba(216, 164, 61, 0.32);
  background: #fff;
}

.usage-grid h3,
.brand-card-dark h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

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

.color-grid article {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.color-grid span {
  display: block;
  min-height: 120px;
  background: var(--swatch);
}

.color-grid h3,
.color-grid p,
.color-grid small {
  margin-left: 18px;
  margin-right: 18px;
}

.color-grid h3 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.color-grid p {
  margin-top: 0;
  color: #4b443c;
  font-weight: 900;
}

.color-grid small {
  display: block;
  margin-bottom: 18px;
  color: #746d64;
}

.brand-kit-split {
  align-items: stretch;
  gap: 24px;
}

.type-sample {
  margin: 18px 0;
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: #fff;
}

.type-sample.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.type-sample.sans {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
}

.brand-card-dark {
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(223, 20, 28, 0.2), transparent 30%),
    #050505;
}

.brand-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.button-samples {
  grid-template-columns: repeat(3, max-content);
  align-items: center;
}

.brand-kit-messaging {
  background:
    linear-gradient(135deg, rgba(7, 57, 198, 0.08), transparent 30%),
    linear-gradient(315deg, rgba(223, 20, 28, 0.08), transparent 30%),
    rgba(248, 244, 236, 0.96);
}

.message-grid article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
}

.message-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.message-grid p {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(216, 164, 61, 0.24);
    text-align: center;
  }

  .site-header.menu-open .nav-links a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .intro,
  .creole-cta,
  .lead-panel,
  .about-lead,
  .home-value,
  .social-feed,
  .service-partners,
  .lead-form,
  .service-row,
  .partner-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .brand-kit-hero,
  .logo-showcase,
  .usage-grid,
  .brand-kit-split,
  .color-grid,
  .message-grid {
    grid-template-columns: 1fr;
  }

  .button-samples {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 8px;
    padding: 12px;
  }

  .brand img {
    width: 82px;
  }

  .language-select {
    min-height: 36px;
    max-width: 104px;
    min-width: 104px;
    padding: 0 24px 0 9px;
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .language-switcher::after {
    right: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 9px;
  }

  .header-phone {
    min-width: 116px;
  }

  .header-phone .phone-hover {
    letter-spacing: 0.6px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide-night {
    background-position: 58% center;
  }

  .hero-slide-day {
    background-position: 52% center;
  }

  .hero-slide-estate {
    background-position: 48% center;
  }

  .hero-slide-skyview {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 10% 36%, rgba(7, 57, 198, 0.42), transparent 34%),
      radial-gradient(circle at 96% 34%, rgba(223, 20, 28, 0.28), transparent 32%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 52%);
  }

  .hero-content {
    margin-left: 20px;
    padding-top: 150px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .lead-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .homebot-card {
    min-height: 230px;
    padding: 14px;
  }

  .intro,
  .services,
  .creole-cta,
  .lead-panel,
  .about-lead,
  .home-value,
  .social-feed,
  .service-partners {
    padding-left: 18px;
    padding-right: 18px;
  }

  .youtube-frame {
    min-height: 300px;
  }

  .youtube-play {
    width: 68px;
    height: 68px;
  }

  .youtube-play::before {
    left: 28px;
    top: 21px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
  }

  .hero-actions,
  .footer-column nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-column nav {
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .brand-kit {
    width: min(100% - 24px, 1180px);
  }

  .brand-kit-hero,
  .brand-kit-section {
    padding: 24px 18px;
  }

  .logo-tile {
    min-height: 220px;
  }

  .button-samples {
    justify-items: stretch;
  }

  .policy-actions {
    justify-content: center;
    text-align: center;
  }

  .policy-back,
  .policy-language,
  .policy-language .language-select {
    width: 100%;
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-night {
    opacity: 1;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 70px;
  }

  .language-select {
    max-width: 92px;
    min-width: 92px;
    padding-left: 8px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 0 8px;
    font-size: 8px;
  }

  .header-phone {
    min-width: 94px;
  }
}
