@charset "UTF-8";
/*
    To Use

    breakpoint( at what size - can be manually set | which direction min or max, defaults to max )

    @include breakpoint(md, max)
    @include breakpoint(400px, max)
    @mixin breakpoint-between($min, $max)

*/
:root {
  --clr-gold: #c9a97a;
  --clr-gold-light: #e8d4b8;
  --clr-gold-deep: #8d6539;
  --clr-accent: #ec2029;
  --clr-accent-dark: #b8151d;
  --clr-black: #0d0b0a;
  --clr-dark: #181717;
  --clr-charcoal: #2e2a27;
  --clr-text: #181717;
  --clr-text-muted: #6b6560;
  --clr-bg: #ffffff;
  --clr-bg-alt: #f7f3ee;
  --clr-paper: #f7f3ee;
  --clr-white: #ffffff;
  --clr-border: rgba(0, 0, 0, 0.1);
  --ff-serif: Cormorant Garamond, Georgia, serif;
  --ff-sans: Google Sans Flex, Google Sans, system-ui, sans-serif;
  --header-height: 80px;
  --gutter: clamp(20px, 4vw, 48px);
  --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 767.98px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #181717;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px;
}
@media (max-width: 767.98px) {
  body {
    padding-top: 64px;
  }
}
body.elementor-page {
  padding-top: 0;
}
body.elementor-page:not(.home) {
  padding-top: 80px;
}
@media (max-width: 767.98px) {
  body.elementor-page:not(.home) {
    padding-top: 64px;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: #181717;
  text-decoration: none;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #c9a97a;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid #c9a97a;
  outline-offset: 3px;
  border-radius: 2px;
}

::-moz-selection {
  background: #c9a97a;
  color: #ffffff;
}

::selection {
  background: #c9a97a;
  color: #ffffff;
}

hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 48px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus,
.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 500;
  padding: 12px 24px;
  background: #c9a97a;
  color: #ffffff;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  -webkit-transition: top 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.skip-link:focus {
  top: 16px;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181717;
  margin-bottom: 16px;
}

h1,
.h1 {
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h2,
.h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.025em;
}

h3,
.h3 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

h4,
.h4 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h5,
.h5 {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6560;
}

h6,
.h6 {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6560;
}

p {
  margin-bottom: 24px;
  max-width: 70ch;
}
p:last-child {
  margin-bottom: 0;
}
p.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: #2e2a27;
}

.eyebrow {
  display: block;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #c9a97a;
  margin-bottom: 12px;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.8em;
  color: #6b6560;
}

blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  line-height: 1.4;
  color: #2e2a27;
  padding-left: 32px;
  border-left: 3px solid #c9a97a;
  margin: 48px 0;
}
blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a97a;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 24px 24px;
}
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.entry-content ul li {
  list-style: disc;
}
.entry-content ol li {
  list-style: decimal;
}

.entry-content img {
  height: auto;
  border-radius: 4px;
}
.entry-content .alignleft {
  float: left;
  margin: 0 24px 24px 0;
}
.entry-content .alignright {
  float: right;
  margin: 0 0 24px 24px;
}
.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.entry-content .alignwide {
  margin-inline: calc(clamp(20px, 4vw, 48px) * -1);
}
.entry-content .alignfull {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding-block: clamp(64px, 10vw, 128px);
}
.section--flush-top {
  padding-top: 0;
}
.section--flush-bottom {
  padding-bottom: 0;
}
.section--sm {
  padding-block: clamp(32px, 6vw, 64px);
}
.section--lg {
  padding-block: clamp(96px, 12vw, 160px);
}
.section--dark {
  background-color: #181717;
  color: #ffffff;
}
.section--alt {
  background-color: #f7f3ee;
}
.section--gold {
  background-color: #c9a97a;
  color: #ffffff;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--min, 280px), 1fr));
  gap: var(--gap, 24px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.archive-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-block: 48px;
}
.archive-layout__content {
  min-width: 0;
}
@media (max-width: 991.98px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-block: 48px;
}
.single-layout__content {
  min-width: 0;
}
@media (max-width: 991.98px) {
  .single-layout {
    grid-template-columns: 1fr;
  }
}

.page-layout {
  padding-block: 48px;
}
.page-layout__hero {
  margin-bottom: 48px;
  border-radius: 4px;
  overflow: hidden;
}
.page-layout__hero img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 520px;
}

.elementor-page .site-main {
  padding-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 80px;
  background-color: #ffffff;
  -webkit-transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), height 0.28s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), height 0.28s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), height 0.28s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), height 0.28s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}
.site-header.is-scrolled__hamburger-bar {
  background-color: #181717;
}
.header-transparent .site-header, body.home:not(.header-scrolled) .site-header {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  height: auto;
  padding-top: clamp(16px, 2.5vw, 28px);
  padding-bottom: clamp(12px, 2vw, 20px);
}
.header-transparent .site-header.is-scrolled, body.home:not(.header-scrolled) .site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  border-color: transparent;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  max-width: 1500px !important;
}
.header-transparent .site-header__inner, body.home:not(.header-scrolled) .site-header__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.site-header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
@media (max-width: 991.98px) {
  .site-header__nav-wrap {
    height: 0;
    overflow: hidden;
  }
}
.site-header__topbar {
  padding-right: 14px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
body.home:not(.header-scrolled) .site-header__topbar {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
body.home.header-scrolled .site-header__topbar {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-header__topbar .site-header__topbar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__topbar .site-header__topbar-list li a {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6560;
  text-decoration: none;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__topbar .site-header__topbar-list li a:hover {
  color: #181717;
}
.header-transparent:not(.header-scrolled) .site-header__topbar .site-header__topbar-list li a, body.home:not(.header-scrolled) .site-header__topbar .site-header__topbar-list li a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}
.header-transparent:not(.header-scrolled) .site-header__topbar .site-header__topbar-list li a:hover, body.home:not(.header-scrolled) .site-header__topbar .site-header__topbar-list li a:hover {
  color: #ffffff;
}
.site-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.site-header__brand .custom-logo-link {
  display: block;
}
.site-header__brand .custom-logo-link img {
  height: 110px;
  width: auto;
  -webkit-transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__brand .site-header__logo--home {
  display: none;
}
.site-header__brand .site-header__logo--default {
  display: block;
}
.site-header__logo--secondary {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(107, 101, 96, 0.25);
}
.site-header__logo--secondary .site-header__secondary-logo-img {
  display: block;
  height: 110px;
  width: auto;
  -webkit-transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled .site-header__logo--secondary .site-header__secondary-logo-img {
  height: 60px;
}
body:not(.home) .site-header__logo--secondary .site-header__secondary-logo-img {
  height: 60px;
}
body.home:not(.header-scrolled) .site-header__brand .site-header__logo--default {
  display: none;
}
body.home:not(.header-scrolled) .site-header__brand .site-header__logo--home {
  display: block;
}
.site-header.is-scrolled .site-header__brand .custom-logo-link img {
  height: 60px;
}
body:not(.home) .site-header__brand .custom-logo-link img {
  height: 60px;
}
.site-header__text-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.1;
}
.site-header__site-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #181717;
  letter-spacing: -0.02em;
}
.header-transparent:not(.header-scrolled) .site-header__site-name {
  color: #ffffff;
}
.site-header__tagline {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6560;
}
.header-transparent:not(.header-scrolled) .site-header__tagline {
  color: rgba(255, 255, 255, 0.72);
}
.site-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  z-index: 9;
}
@media (max-width: 991.98px) {
  .site-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header__hamburger-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #181717;
  border-radius: 999px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-transparent:not(.header-scrolled) .site-header__hamburger-bar, body.home:not(.header-scrolled) .site-header__hamburger-bar {
  background-color: #ffffff;
}
.site-header__hamburger[aria-expanded=true] .site-header__hamburger-bar:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
          transform: translateY(6.5px) rotate(45deg);
}
.site-header__hamburger[aria-expanded=true] .site-header__hamburger-bar:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.site-header__hamburger[aria-expanded=true] .site-header__hamburger-bar:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
          transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 991.98px) {
  .site-header {
    height: 64px;
  }
  .site-header__brand .custom-logo-link img {
    height: 80px;
  }
  .site-header__logo--secondary {
    padding-left: 12px;
  }
  .site-header__logo--secondary .site-header__secondary-logo-img {
    height: 80px;
  }
  body.home:not(.header-scrolled) .site-header {
    height: 64px;
    padding-top: 0;
    padding-bottom: 0;
  }
  body.home:not(.header-scrolled) .site-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.home:not(.header-scrolled) .site-header__brand {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  body.home:not(.header-scrolled) .site-header__brand .custom-logo-link img, body.home:not(.header-scrolled) .site-header__logo--secondary .site-header__secondary-logo-img {
    height: 50px;
  }
}

.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.site-nav__item {
  position: relative;
}
.site-nav__item:hover > .site-nav__dropdown, .site-nav__item:focus-within > .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #181717;
  white-space: nowrap;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__link:hover {
  color: #c9a97a;
}
.is-active > .site-nav__link {
  color: #c9a97a;
}
.header-transparent:not(.header-scrolled) .site-nav__link, body.home:not(.header-scrolled) .site-nav__link {
  color: white;
}
.header-transparent:not(.header-scrolled) .site-nav__link:hover, body.home:not(.header-scrolled) .site-nav__link:hover {
  color: #ffffff;
}
.header-transparent:not(.header-scrolled) .is-active > .site-nav__link, body.home:not(.header-scrolled) .is-active > .site-nav__link {
  color: #e8d4b8;
}
.site-nav__chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__item:hover .site-nav__chevron, .site-nav__item:focus-within .site-nav__chevron {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
          box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 8px 0;
}
.site-nav__dropdown .site-nav__item {
  display: block;
}
.site-nav__sub-link {
  display: block;
  padding: 10px 24px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #181717;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__sub-link:hover {
  color: #c9a97a;
  background-color: #f7f3ee;
}
@media (max-width: 991.98px) {
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background-color: #ffffff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 300;
  }
  .site-nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .site-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    padding: 24px clamp(20px, 4vw, 48px) 64px;
  }
  .site-nav__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-nav__item:last-child {
    border-bottom: none;
  }
  .site-nav__link {
    padding: 16px 0;
    font-size: 14px;
    color: #181717;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .header-transparent:not(.header-scrolled) .site-nav__link, body.home:not(.header-scrolled) .site-nav__link {
    color: #181717;
  }
  .header-transparent:not(.header-scrolled) .site-nav__link:hover, body.home:not(.header-scrolled) .site-nav__link:hover {
    color: #c9a97a;
  }
  .site-nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 0 0 24px;
    display: none;
  }
  .site-nav__dropdown.is-open {
    display: block;
  }
  .site-nav__sub-link {
    padding: 10px 0;
  }
}
.site-nav__footer {
  display: none;
}
@media (max-width: 991.98px) {
  .site-nav__footer {
    display: block;
    padding: 32px clamp(20px, 4vw, 48px) 64px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 8px;
  }
}
.site-nav__footer-logo {
  margin-bottom: 24px;
}
.site-nav__footer-logo .custom-logo-link {
  display: inline-block;
}
.site-nav__footer-logo .custom-logo-link img {
  height: 48px;
  width: auto;
}
.site-nav__footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.site-nav__footer-contact li a {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6b6560;
  text-decoration: none;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__footer-contact li a:hover {
  color: #181717;
}

.admin-bar .hero {
  padding-top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    padding-top: 46px;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  color: #ffffff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 11, 10, 0.62) 0%, rgba(13, 11, 10, 0.28) 60%, rgba(13, 11, 10, 0.1) 100%);
}
.hero__inner {
  position: relative;
  z-index: 0;
  width: 100%;
  padding: clamp(96px, 14vw, 160px) clamp(20px, 4vw, 48px) clamp(64px, 10vw, 128px);
  max-width: 1280px;
  margin-inline: auto;
}
.hero__eyebrow {
  display: block;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #e8d4b8;
  margin-bottom: 16px;
}
.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 14ch;
  text-shadow: 0 4px 40px rgba(13, 11, 10, 0.25);
}
.hero__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  max-width: 46ch;
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 0;
  -webkit-animation: heroScrollBounce 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: heroScrollBounce 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(transparent));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 70vh;
  }
  .hero__title {
    font-size: clamp(40px, 11vw, 72px);
  }
  .hero__subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
  }
}

@-webkit-keyframes heroScrollBounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(8px);
            transform: translateX(-50%) translateY(8px);
  }
}

@keyframes heroScrollBounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(8px);
            transform: translateX(-50%) translateY(8px);
  }
}
@media (max-width: 575.98px) {
  .area-hero h1 {
    font-size: 50px !important;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .area-hero .e-flexbox-base {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
@media (max-width: 575.98px) {
  .area-hero .e-flexbox-base a {
    display: block !important;
  }
}

.area-description {
  padding: 30px !important;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary {
  background-color: #c9a97a;
  color: #ffffff;
  border-color: #c9a97a;
}
.btn--primary:hover {
  background-color: #8d6539;
  border-color: #8d6539;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 24px rgba(201, 169, 122, 0.22);
          box-shadow: 0 4px 24px rgba(201, 169, 122, 0.22);
}
.btn--outline {
  background-color: transparent;
  color: #181717;
  border-color: #181717;
}
.btn--outline:hover {
  background-color: #181717;
  color: #ffffff;
}
.btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}
.btn--outline-gold {
  background-color: transparent;
  color: #c9a97a;
  border-color: #c9a97a;
}
.btn--outline-gold:hover {
  background-color: rgba(201, 169, 122, 0.15);
  color: #8d6539;
  border-color: #8d6539;
}
.btn--ghost {
  padding-inline: 0;
  border-color: transparent;
  color: #c9a97a;
  letter-spacing: 0.14em;
}
.btn--ghost::after {
  content: "→";
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--ghost:hover {
  color: #8d6539;
}
.btn--ghost:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn--sm {
  padding: 9px 22px;
  font-size: 10px;
}
.btn--lg {
  padding: 18px 48px;
  font-size: 12px;
}

.post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card:hover {
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
          box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.post-card__thumbnail {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card__thumbnail:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.post-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 32px 32px;
  gap: 12px;
}
.post-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.post-card__title a {
  color: #181717;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card__title a:hover {
  color: #c9a97a;
}
.post-card__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #6b6560;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-card__cta {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 12px;
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6560;
}
.post-meta__date {
  color: #6b6560;
}
.post-meta__author {
  color: #c9a97a;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-article__header {
  margin-bottom: 48px;
}
.post-article__header .post-meta {
  margin-bottom: 16px;
}
.post-article__title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
}
.post-article__thumbnail {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.post-article__thumbnail img {
  width: 100%;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-article__body {
  font-size: 17px;
  line-height: 1.8;
}
.post-article__body > * + * {
  margin-top: 24px;
}
.post-article__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.post-article__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6560;
}
.post-article__tags a {
  color: #c9a97a;
}
.post-article__tags a:hover {
  color: #8d6539;
}

.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-navigation .nav-next {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.post-navigation .nav-subtitle {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6560;
  margin-bottom: 4px;
  display: block;
}
.post-navigation .nav-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #181717;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-navigation .nav-title:hover {
  color: #c9a97a;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6560;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid rgba(24, 23, 23, 0.2);
  border-radius: 2px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #181717;
  -webkit-transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #c9a97a;
  -webkit-box-shadow: 0 0 0 3px rgba(201, 169, 122, 0.15);
          box-shadow: 0 0 0 3px rgba(201, 169, 122, 0.15);
}
.form-field input::-webkit-input-placeholder, .form-field textarea::-webkit-input-placeholder, .form-field select::-webkit-input-placeholder {
  color: #b8b2ab;
}
.form-field input::-moz-placeholder, .form-field textarea::-moz-placeholder, .form-field select::-moz-placeholder {
  color: #b8b2ab;
}
.form-field input:-ms-input-placeholder, .form-field textarea:-ms-input-placeholder, .form-field select:-ms-input-placeholder {
  color: #b8b2ab;
}
.form-field input::-ms-input-placeholder, .form-field textarea::-ms-input-placeholder, .form-field select::-ms-input-placeholder {
  color: #b8b2ab;
}
.form-field input::placeholder,
.form-field textarea::placeholder,
.form-field select::placeholder {
  color: #b8b2ab;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.search-form .search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  border: none;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  background: #ffffff;
}
.search-form .search-field:focus {
  outline: none;
}
.search-form .search-submit {
  padding: 12px 24px;
  background: #181717;
  color: #ffffff;
  border: none;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-form .search-submit:hover {
  background: #c9a97a;
}

.site-sidebar .widget {
  margin-bottom: 48px;
}
.site-sidebar .widget__title {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6560;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.site-sidebar .widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.site-sidebar .widget ul li a {
  color: #181717;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-sidebar .widget ul li a:hover {
  color: #c9a97a;
}
.site-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-numbers a,
.page-numbers span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #181717;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-numbers a:hover,
.page-numbers .current {
  background: #181717;
  border-color: #181717;
  color: #ffffff;
}
.page-numbers .prev,
.page-numbers .next {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page-header__title {
  font-size: clamp(32px, 4vw, 52px);
}

.error-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(80vh - 80px);
  padding-block: 96px;
}
.error-404__inner {
  text-align: center;
  max-width: 520px;
}
.error-404__code {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 700;
  line-height: 1;
  color: #c9a97a;
  opacity: 0.25;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}
.error-404__title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.error-404__message {
  font-size: 16px;
  color: #6b6560;
  margin-bottom: 32px;
  max-width: 100%;
}
.error-404__search {
  margin-bottom: 24px;
}

.no-results {
  padding-block: 96px;
  text-align: center;
}
.no-results p {
  color: #6b6560;
  margin-block: 24px;
  max-width: 100%;
}
.no-results .search-form {
  max-width: 460px;
  margin-inline: auto;
}

.site-footer {
  background-color: #181717;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
}
.site-footer__widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-block: 96px;
}
@media (max-width: 991.98px) {
  .site-footer__widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .site-footer__widgets {
    grid-template-columns: 1fr;
  }
}
.site-footer__col .widget__title {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8d4b8;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__col .widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}
.site-footer__col .widget ul li a {
  color: rgba(255, 255, 255, 0.65);
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__col .widget ul li a:hover {
  color: #e8d4b8;
}
.site-footer__col .widget ul li:last-child {
  border-bottom: none;
}
.site-footer__col .widget p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 100%;
}
.site-footer__col .widget .footer-agent {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer__col .widget .footer-agent__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}
.site-footer__col .widget .footer-agent__title, .site-footer__col .widget .footer-agent__item {
  display: block;
}
.site-footer__col .widget .footer-agent__title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
}
.site-footer__col .widget .footer-agent__item {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer__col .widget .footer-agent a {
  color: rgba(255, 255, 255, 0.82);
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__col .widget .footer-agent a:hover {
  color: #e8d4b8;
}
.site-footer__col .widget_media_image img {
  width: 100%;
  max-width: 300px !important;
  height: auto;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 24px;
}
.site-footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .site-footer__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  max-width: 100%;
  margin-bottom: 0;
}
.site-footer__copy a {
  color: rgba(255, 255, 255, 0.55);
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__copy a:hover {
  color: #e8d4b8;
}
.site-footer .site-by {
  font-size: 13px;
}
.site-footer .site-by a {
  color: #c9a97a;
}
.site-footer__legal-nav .site-footer__legal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.site-footer__legal-nav .site-footer__legal-list li a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__legal-nav .site-footer__legal-list li a:hover {
  color: #e8d4b8;
}

@media (max-width: 575.98px) {
  .homepage-hero .actions {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 10px !important;
  }
}
@media (max-width: 575.98px) {
  .homepage-hero .actions .elementor-button {
    display: block !important;
  }
}
@media (max-width: 575.98px) {
  .homepage-hero .secondary-actions .e-affd30d-7268092 {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.ca-section {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #ffffff;
  overflow: hidden;
}
.ca-section .ca-header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(45px, 6vw, 75px) clamp(20px, 4vw, 48px) clamp(32px, 5vw, 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: center;
}
.ca-section .ca-header__eyebrow {
  display: block;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(244.8090909091, 135.3909090909, 140.2181818182);
  opacity: 0.88;
}
.ca-section .ca-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(13, 11, 10, 0.35);
}
.ca-section .ca-tabs {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.ca-section .ca-tabs__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 14px 32px;
  position: relative;
  white-space: nowrap;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-tabs__btn + .ca-section .ca-tabs__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}
.ca-section .ca-tabs__btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.ca-section .ca-tabs__btn.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.ca-section .ca-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #b8151d;
}
.ca-section .ca-panels {
  position: relative;
  z-index: 0;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1600px;
  margin: 0 auto;
}
.ca-section .ca-panels .ca-panel {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.ca-section .ca-panels .ca-panel.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: panelFadeIn 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: panelFadeIn 0.42s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.ca-section .ca-panels .ca-panel .ca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 2px;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card:nth-child(1) {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card:nth-child(3) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card:nth-child(4) {
  -webkit-animation-delay: 0.22s;
          animation-delay: 0.22s;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card {
  position: relative;
  min-height: clamp(340px, 42vw, 480px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  -webkit-animation: cardRise 0.48s cubic-bezier(0.4, 0, 0.2, 1) both;
          animation: cardRise 0.48s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.ca-section .ca-panels .ca-panel .ca-grid .ca-card + .ca-section .ca-panels .ca-panel .ca-grid .ca-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 2;
}
.ca-section .ca-footer {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}
.ca-section .ca-footer__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border: 1px solid #ffffff;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #181717;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-footer__btn:hover {
  background: rgba(255, 255, 255, 0.88);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.ca-section .ca-footer__btn--gold {
  background: #b8151d;
  border-color: #b8151d;
  color: #ffffff;
}
.ca-section .ca-footer__btn--gold:hover {
  background: #ec2029;
  border-color: #ec2029;
  -webkit-box-shadow: 0 4px 24px rgba(236, 32, 41, 0.32);
          box-shadow: 0 4px 24px rgba(236, 32, 41, 0.32);
}
@media (max-width: 991.98px) {
  .ca-section .ca-panels .ca-panel .ca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ca-section .ca-panels .ca-panel .ca-grid .ca-card {
    min-height: 0;
    padding-top: 120px;
  }
}
@media (max-width: 575.98px) {
  .ca-section .ca-panels .ca-panel .ca-grid .ca-card {
    padding-top: 60px;
  }
  .ca-section .ca-panels .ca-panel .ca-grid {
    grid-template-columns: 1fr;
  }
  .ca-section .ca-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ca-section .ca-footer__btn {
    width: 100%;
    max-width: 300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@-webkit-keyframes panelFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes panelFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes cardRise {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes cardRise {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.ca-section .ca-card__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(14, 12, 11, 0.88)), color-stop(45%, rgba(14, 12, 11, 0.44)), to(rgba(14, 12, 11, 0.18)));
  background: linear-gradient(to top, rgba(14, 12, 11, 0.88) 0%, rgba(14, 12, 11, 0.44) 45%, rgba(14, 12, 11, 0.18) 100%);
  -webkit-transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.ca-section .ca-card__body {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3vw, 32px) clamp(28px, 4vw, 48px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 24px;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-card__desc {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  -webkit-transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ca-section .ca-card__links a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  text-decoration: none;
  -webkit-transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.ca-section .ca-card__links .sep {
  display: none;
}
.ca-section .ca-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ec2029), color-stop(70%, transparent));
  background: linear-gradient(90deg, #ec2029 0%, transparent 70%);
  opacity: 0;
  -webkit-transform: scaleX(0.4);
          transform: scaleX(0.4);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.ca-section .ca-card:hover .ca-card__overlay {
  opacity: 0.72;
}
.ca-section .ca-card:hover .ca-card__body {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.ca-section .ca-card:hover .ca-card__name {
  color: #e8d4b8;
  margin-bottom: 8px;
}
.ca-section .ca-card:hover .ca-card__accent {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.ca-section .ca-card:hover .ca-card__desc {
  max-height: 80px;
  opacity: 1;
  color: #fff;
  margin-bottom: 32px;
}
.ca-section .ca-card:hover .ca-card__links a {
  padding: 9px 22px;
  border-color: #c9a97a;
  color: #e8d4b8;
  background: rgba(201, 169, 122, 0.12);
  -webkit-box-shadow: 0 0 16px rgba(201, 169, 122, 0.15);
          box-shadow: 0 0 16px rgba(201, 169, 122, 0.15);
}
.ca-section .ca-card:hover .ca-card__links a:hover {
  background: #c9a97a;
  color: #181717;
  -webkit-box-shadow: 0 4px 24px rgba(201, 169, 122, 0.32);
          box-shadow: 0 4px 24px rgba(201, 169, 122, 0.32);
}

@media (max-width: 991.98px) {
  .ca-section .ca-card__desc {
    max-height: none;
    overflow: visible;
    opacity: 1;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
  }
  .ca-section .ca-card:hover .ca-card__body {
    -webkit-transform: none;
            transform: none;
  }
}
.cta-section {
  background: #ffffff;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.cta-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.cta-header__eyebrow {
  display: block;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6560;
  margin-bottom: 12px;
}
.cta-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #181717;
  line-height: 1.15;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: #f0ebe4;
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b8151d;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card:hover {
  background: #ffffff;
}
.cta-card:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.cta-card:hover .cta-card__link {
  gap: 12px;
}
.cta-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
  color: #181717;
  margin-bottom: 12px;
}
.cta-card__desc {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: #6b6560;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.cta-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ec2029;
  text-decoration: none;
  -webkit-transition: gap 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: gap 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card__arrow {
  font-size: 15px;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card:hover .cta-card__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.areas-section {
  background: #181717;
  padding: clamp(56px, 7vw, 88px) 0 0;
  overflow: hidden;
}

.areas-header {
  max-width: 1280px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 clamp(20px, 4vw, 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.areas-header__eyebrow {
  display: block;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 12px;
}
.areas-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.areas-header__title em {
  font-style: italic;
}

.areas-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.areas-nav__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.areas-nav__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.areas-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: clamp(420px, 50vw, 580px);
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .areas-strip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.area-panel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 68px;
  -webkit-transition: -webkit-box-flex 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  transition: -webkit-box-flex 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  transition: flex 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  transition: flex 0.55s cubic-bezier(0.65, 0, 0.35, 1), -webkit-box-flex 0.55s cubic-bezier(0.65, 0, 0.35, 1), -ms-flex 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.area-panel.is-active {
  -webkit-box-flex: 4.5;
      -ms-flex: 4.5;
          flex: 4.5;
}
@media (max-width: 767.98px) {
  .area-panel {
    min-width: unset;
    min-height: 72px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .area-panel.is-active {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
    min-height: 300px;
  }
}
.area-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.area-panel:hover .area-panel__bg {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.area-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.55);
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.area-panel.is-active .area-panel__overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(10, 10, 8, 0.9)), color-stop(55%, rgba(10, 10, 8, 0.1)), to(transparent));
  background: linear-gradient(to top, rgba(10, 10, 8, 0.9) 0%, rgba(10, 10, 8, 0.1) 55%, transparent 100%);
}
.area-panel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px);
}
.area-panel:not(.is-active) .area-panel__content {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: auto;
  top: 0;
  left: 0;
  right: auto;
  padding: clamp(24px, 3vw, 36px) 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .area-panel:not(.is-active) .area-panel__content {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px clamp(20px, 4vw, 48px);
  }
}
.area-panel__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.4s 0.15s, -webkit-transform 0.4s 0.15s;
  transition: opacity 0.4s 0.15s, -webkit-transform 0.4s 0.15s;
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s, -webkit-transform 0.4s 0.15s;
}
.area-panel.is-active .area-panel__name {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.area-panel:not(.is-active) .area-panel__name {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.area-panel__area {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.35s 0.1s;
  transition: opacity 0.35s 0.1s;
}
.area-panel.is-active .area-panel__area {
  opacity: 1;
}
.area-panel:not(.is-active) .area-panel__area {
  display: none;
}
.area-panel__meta {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.04em;
  margin-top: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.35s 0.22s;
  transition: opacity 0.35s 0.22s;
}
.area-panel.is-active .area-panel__meta {
  opacity: 1;
}
.area-panel:not(.is-active) .area-panel__meta {
  display: none;
}
.area-panel__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.35s 0.2s, -webkit-transform 0.35s 0.2s;
  transition: opacity 0.35s 0.2s, -webkit-transform 0.35s 0.2s;
  transition: opacity 0.35s 0.2s, transform 0.35s 0.2s;
  transition: opacity 0.35s 0.2s, transform 0.35s 0.2s, -webkit-transform 0.35s 0.2s;
}
.area-panel.is-active .area-panel__tags {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.area-panel:not(.is-active) .area-panel__tags {
  display: none;
}
.area-panel__tag {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  text-decoration: none;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.area-panel__tag:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.area-panel__tag--primary {
  background: #b8151d;
  border-color: #b8151d;
  color: #ffffff;
}
.area-panel__tag--primary:hover {
  background: #ec2029;
  border-color: #ec2029;
}

.areas-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
  .areas-index {
    display: none;
  }
}
.areas-index__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.areas-index__item:last-child {
  border-right: none;
}
.areas-index__item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.areas-index__item.is-active {
  background: rgba(255, 255, 255, 0.06);
}
.areas-index__item.is-active .areas-index__num {
  color: #ec2029;
}
.areas-index__item.is-active .areas-index__name {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.areas-index__item.is-active .areas-index__dot {
  opacity: 1;
}
.areas-index__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.28);
  min-width: 22px;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.areas-index__name {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.05em;
  -webkit-transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.areas-index__dot {
  margin-left: auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ec2029;
  opacity: 0;
  -webkit-transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1280px;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.elementor-widget-button .elementor-button {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
}

.elementor-widget-image img {
  border-radius: 4px;
}

.elementor-widget-icon-box .elementor-icon-box-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.01em;
}
.elementor-widget-icon-box .elementor-icon-box-description {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #6b6560;
}

.elementor-widget-testimonial .elementor-testimonial-content {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.5;
}
.elementor-widget-testimonial .elementor-testimonial-name {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a97a;
}

.elementor-widget-divider .elementor-divider-separator {
  border-color: rgba(0, 0, 0, 0.1);
}

.homepage-hero {
  min-height: 800px !important;
  height: 95vh !important;
}

body.elementor-page {
  padding-top: 0 !important;
}

.elementor-popup-modal {
  z-index: 400;
}

.elementor-section.section-dark {
  color: #ffffff;
}
.elementor-section.section-dark h1,
.elementor-section.section-dark h2,
.elementor-section.section-dark h3,
.elementor-section.section-dark h4,
.elementor-section.section-dark h5,
.elementor-section.section-dark h6,
.elementor-section.section-dark .elementor-heading-title {
  color: #ffffff;
}
.elementor-section.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.accent-gold {
  color: #c9a97a;
}

.bg-gold {
  background-color: #c9a97a;
  color: #ffffff;
}

.bg-dark {
  background-color: #181717;
  color: #ffffff;
}

.bg-paper {
  background-color: #f7f3ee;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.font-serif {
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

.font-sans {
  font-family: "Google Sans Flex", "Google Sans", system-ui, sans-serif !important;
}

.text-gold {
  color: #c9a97a !important;
}

.text-muted {
  color: #6b6560 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #181717 !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.mw-narrow {
  max-width: 780px !important;
}

.mw-text {
  max-width: 68ch !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ratio-16-9 {
  aspect-ratio: 16/9;
}

.ratio-4-3 {
  aspect-ratio: 4/3;
}

.ratio-1-1 {
  aspect-ratio: 1;
}

.ratio-3-2 {
  aspect-ratio: 3/2;
}

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

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .site-header,
  .site-nav,
  .site-footer,
  .site-sidebar,
  .btn,
  .post-navigation {
    display: none !important;
  }
  body {
    padding-top: 0;
    font-size: 12pt;
    color: #000;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
  img {
    max-width: 100% !important;
  }
}
body.elementor-page.idx-wrapper-template {
  padding-top: 80px !important;
}/*# sourceMappingURL=style.css.map */