:root {
  --black: #050505;
  --ink: #f5efe0;
  --charcoal: #c9c0ad;
  --graphite: #9a8560;
  --line: rgba(190, 158, 95, 0.28);
  --soft: #0e0d0b;
  --white: #ffffff;
  --gold: #b9975b;
  --gold-soft: #d6bf83;
  --gold-dark: #7f6437;
  --cream: #f6f0e2;
  --panel: #15130f;
  --panel-soft: #1d1912;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold-soft);
  color: var(--black);
  border: 1px solid var(--gold);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  color: var(--cream);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--cream);
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell,
.section-shell,
.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.nav-links a,
.nav-parent {
  position: relative;
}

.nav-links > a:not(.nav-call)::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.nav-parent:hover::after,
.nav-parent:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: -180px;
  width: min(820px, calc(100vw - 40px));
  padding: 22px;
  color: var(--cream);
  background: rgba(14, 13, 11, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nav-dropdown-title {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.nav-dropdown a {
  display: block;
  padding: 7px 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.25;
}

.nav-call {
  padding: 11px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.nav-line {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 5px 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--black);
}

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

.hero-media {
  background-image: url("assets/chloe-hero.webp");
  background-size: cover;
  background-position: center right;
  opacity: 0.82;
  transform: scale(1.06);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 38%, rgba(88, 68, 31, 0.22) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(11, 9, 6, 0.12) 42%, rgba(5, 5, 5, 0.56));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

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

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

.hero-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.75rem;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(246, 240, 226, 0.84);
  font-size: 1.14rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--gold-soft);
  color: var(--black);
  border-color: var(--gold-soft);
}

.button-ghost {
  border-color: rgba(214, 191, 131, 0.62);
  color: var(--cream);
  background: rgba(185, 151, 91, 0.08);
}

.button-dark {
  background: var(--black);
  color: var(--gold-soft);
  border-color: var(--gold);
}

.button-outline {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: transparent;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin: 58px 0 0;
  padding: 0;
  background: rgba(214, 191, 131, 0.24);
  border: 1px solid rgba(214, 191, 131, 0.28);
}

.hero-details div {
  min-height: 104px;
  padding: 20px;
  background: rgba(14, 13, 11, 0.54);
  backdrop-filter: blur(14px);
}

.detail-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(214, 191, 131, 0.74);
  font-weight: 800;
}

.detail-value {
  display: block;
  font-weight: 700;
}

.section-padding {
  padding: 104px 0;
}

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

.intro-grid,
.location-grid,
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.section-title {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.06rem;
}

.page-hero {
  padding: 170px 0 88px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(35, 27, 13, 0.68)),
    url("assets/chloe-hero.webp") center right / cover;
}

.page-hero-inner {
  max-width: 820px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(246, 240, 226, 0.72);
  font-size: 0.9rem;
}

.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.page-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(246, 240, 226, 0.82);
  font-size: 1.12rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-index {
  background: var(--soft);
}

.service-group {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.service-group:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.service-group-title {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 500;
}

.service-index-grid,
.gallery-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.listing-card,
.gallery-item,
.related-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.listing-card {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.listing-card h3,
.related-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.listing-card p,
.related-card p {
  margin: 12px 0 0;
  color: var(--charcoal);
}

.listing-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-link,
.text-link {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--gold-soft);
}

.service-card {
  min-height: 360px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.service-card h3,
.feature-item h3 {
  margin: 26px 0 14px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.feature-item p {
  margin: 0;
  color: var(--charcoal);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.experience {
  color: var(--cream);
  background: var(--black);
}

.experience-panel {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.experience-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1.06;
  font-weight: 500;
}

.feature-list {
  display: grid;
  gap: 1px;
  background: rgba(214, 191, 131, 0.18);
  border: 1px solid var(--line);
}

.feature-item {
  padding: 34px;
  background: var(--panel);
}

.feature-item h3 {
  margin-top: 0;
}

.feature-item p {
  color: rgba(246, 240, 226, 0.74);
}

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

.address {
  margin: 24px 0;
  font-style: normal;
  font-weight: 800;
  font-size: 1.18rem;
}

.map-wrap {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(1) contrast(1.05) sepia(0.12);
}

.gallery-page {
  background: var(--black);
}

.gallery-item img,
.related-card img,
.article-image img {
  width: 100%;
  height: auto;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 18px;
  font-weight: 800;
}

.article-hero {
  padding: 150px 0 74px;
  color: var(--cream);
  background: var(--black);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.article-hero .page-copy {
  margin-bottom: 30px;
}

.article-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-content {
  background: var(--black);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.article-body {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.article-body h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 500;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul {
  padding-left: 20px;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.cta-panel {
  padding: 28px;
  color: var(--cream);
  background: linear-gradient(145deg, #0c0b09, #18140d);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-panel h2,
.cta-panel h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 500;
}

.cta-panel p {
  margin: 0 0 22px;
  color: rgba(246, 240, 226, 0.78);
}

.related-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.related-card-content {
  padding: 18px;
}

.pricing-page {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.pricing-column {
  display: grid;
  gap: 42px;
}

.price-group {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.price-group-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 26px;
  color: var(--gold-soft);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-group-title::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.price-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
  padding: 30px 34px;
  background: linear-gradient(145deg, rgba(29, 25, 18, 0.96), rgba(12, 11, 9, 0.96));
  border: 1px solid rgba(214, 191, 131, 0.42);
  border-radius: 8px;
}

.price-list {
  display: grid;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.price-feature h3,
.price-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.18;
  font-weight: 700;
}

.price-feature h3 {
  font-size: 2.2rem;
  font-weight: 500;
}

.price-feature p,
.price-row p,
.price-note {
  margin: 10px 0 0;
  color: var(--charcoal);
}

.price-feature strong,
.price-row strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  line-height: 1;
}

.price-feature strong {
  font-size: 2.25rem;
}

.price-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 14px;
  vertical-align: middle;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: var(--gold-soft);
  border: 1px solid rgba(214, 191, 131, 0.44);
  border-radius: 2px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.price-note {
  margin-top: 18px;
  padding: 20px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.final-cta {
  padding: 88px 0;
  color: var(--cream);
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(28, 21, 10, 0.78)),
    url("assets/chloe-hero.webp") center right / cover;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.08;
  font-weight: 500;
}

.site-footer {
  padding: 28px 0;
  background: var(--black);
  color: rgba(246, 240, 226, 0.78);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-18px, -8px, 0);
  }
}

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

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

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

@media (max-width: 1060px) {
  .hero-title {
    font-size: 3.7rem;
  }

  .section-title,
  .experience-panel h2 {
    font-size: 2.55rem;
  }

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

  .service-index-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell,
  .section-shell,
  .hero-inner {
    width: min(calc(100% - 28px), 1160px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 14px 22px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: rgba(10, 9, 7, 0.98);
    color: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links > a,
  .nav-parent {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-group {
    position: static;
  }

  .nav-dropdown {
    position: static;
    width: auto;
    padding: 14px 0 16px;
    color: var(--cream);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav-dropdown a {
    padding: 5px 0;
    border: 0;
  }

  .nav-call {
    margin-top: 14px;
    text-align: center;
    border-color: var(--gold);
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.66)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(51, 38, 18, 0.08) 44%, rgba(5, 5, 5, 0.68));
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.04;
    max-width: 560px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-details,
  .intro-grid,
  .location-grid,
  .experience-grid,
  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-details {
    display: grid;
  }

  .section-padding {
    padding: 76px 0;
  }

  .page-hero {
    padding: 130px 0 66px;
  }

  .page-title {
    font-size: 2.6rem;
  }

  .intro-grid,
  .location-grid,
  .experience-grid {
    gap: 34px;
  }

  .section-heading {
    display: block;
  }

  .section-title,
  .experience-panel h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

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

  .service-index-grid,
  .gallery-grid,
  .related-grid,
  .pricing-grid,
  .article-hero-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

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

  .experience-panel {
    position: static;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .final-cta-inner,
  .footer-inner {
    display: grid;
  }
}

@media (max-width: 600px) {
  .page-title,
  .page-copy {
    max-width: 360px;
  }

  .page-title {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .hero-title,
  .hero-copy,
  .hero-details {
    max-width: 360px;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .price-feature,
  .price-row {
    grid-template-columns: 1fr;
  }

  .price-feature h3 {
    font-size: 1.9rem;
  }

  .price-badges {
    display: flex;
    margin: 12px 0 0;
  }
}

@media (max-width: 460px) {
  .brand span:last-child {
    max-width: 160px;
    line-height: 1.1;
  }

  .hero {
    min-height: 820px;
  }

  .hero-title {
    font-size: 2.18rem;
    line-height: 1.04;
  }

  .button {
    width: 100%;
  }

  .hero-details div {
    min-height: 92px;
  }

  .section-title,
  .experience-panel h2,
  .final-cta h2 {
    font-size: 1.95rem;
  }

}
