:root {
  --green: #3e5b4c;
  --green-dark: #294136;
  --cream: #f4f1e8;
  --brick: #a13d2d;
  --white: #ffffff;
  --ink: #1f2421;
  --muted: #6d726e;
  --gold: #b89455;
  --line: rgba(62, 91, 76, 0.2);
  --shadow: 0 18px 45px rgba(25, 38, 31, 0.11);
  --radius: 24px;
}

/* ==========================
   BASE
========================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

main {
  width: 100%;
  overflow: visible;
}

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

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

h1,
h2,
h3,
.serif {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0.35rem 0 1rem;
}

.container {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.eyebrow {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

/* ==========================
   HEADER
========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 241, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand img,
.brand .site-logo,
.site-logo {
  display: block;
  width: 72px;
  height: 62px;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 3px;
  color: var(--brick);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-shrink: 1;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brick);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-cta {
  flex-shrink: 0;
  min-width: 170px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--green);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ==========================
   BUTTONS
========================== */

.btn-primary {
  color: var(--white);
  background: var(--green);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--green);
  background: transparent;
  border-color: var(--green);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-1px);
}

.btn-light {
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid var(--white);
}

.btn-light:hover {
  color: var(--green-dark);
  background: #efe7d8;
  border-color: #efe7d8;
  transform: translateY(-2px);
}

/* ==========================
   HERO
========================== */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: #1f2f29;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(15, 25, 20, 0.82),
    rgba(15, 25, 20, 0.22) 60%,
    rgba(15, 25, 20, 0.1)
  );
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 110px 0 80px;
}

.hero p {
  max-width: 680px;
  font-size: 1.16rem;
}

.hero-subheading {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
}

.hero .btn-secondary:hover {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
}

/* ==========================
   TRUST STRIP
========================== */

.trust-strip {
  color: var(--white);
  background: var(--green);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.trust-item {
  padding: 22px;
  background: var(--green);
  font-weight: 800;
  text-align: center;
}

/* ==========================
   GRIDS
========================== */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
}

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

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

/* ==========================
   CARDS AND CONTENT
========================== */

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(62, 91, 76, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 26px;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-kicker {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.panel {
  padding: 42px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-box {
  padding: 34px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.pill {
  display: inline-block;
  margin: 4px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: #e7eee9;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

/* ==========================
   CTA BAND
========================== */

.cta-band {
  padding: 0;
  color: var(--white);
  background: var(--brick);
}

.cta-band .container,
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.cta-copy {
  flex: 1;
  max-width: 720px;
}

.cta-copy h2 {
  margin-bottom: 8px;
}

.cta-copy p {
  margin-bottom: 0;
}

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

.cta-actions .btn {
  min-width: 170px;
  white-space: nowrap;
}

/* ==========================
   PAGE HERO
========================== */

.page-hero {
  padding: 110px 0 70px;
  color: var(--white);
  background: var(--green-dark);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

/* ==========================
   GALLERY
========================== */

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery img:first-child {
  grid-row: 1 / 3;
}

/* ==========================
   FORMS AND PLACEHOLDERS
========================== */

.ownerrez-placeholder {
  padding: 26px;
  background: #eef2ef;
  border: 2px dashed var(--green);
  border-radius: 18px;
  text-align: center;
}

.notice {
  padding: 18px 20px;
  background: var(--white);
  border-left: 4px solid var(--brick);
  border-radius: 10px;
}

.accordion details {
  margin-bottom: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.accordion summary {
  font-weight: 800;
  cursor: pointer;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8d0cb;
  border-radius: 12px;
  font: inherit;
}

textarea {
  min-height: 130px;
}

/* ==========================
   AVAILABILITY PAGE
========================== */

.availability-search-section {
  padding-top: 70px;
  padding-bottom: 34px;
  overflow: visible;
}

.professional-stays-section {
  padding-top: 34px;
  padding-bottom: 88px;
}

.availability-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.ownerrez-widget-container {
  display: block;
  width: 100%;
  padding: 36px;
  overflow: visible;
  background: var(--white);
  border: 1px solid rgba(62, 91, 76, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ownerrez-widget-container .ownerrez-widget {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ownerrez-widget-container iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.professional-booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.professional-booking-panel > div:first-child {
  max-width: 760px;
}

.professional-booking-panel .btn {
  white-space: nowrap;
}

/* ==========================
   FOOTER
========================== */

.footer {
  padding: 56px 0 22px;
  color: #e8eee9;
  background: #18241f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  align-items: start;
  gap: 38px;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.footer p {
  color: #d7e0da;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: #d7e0da;
  transition: color 0.2s ease;
}

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

.footer-small {
  margin-top: 38px;
  padding-top: 18px;
  color: #b9c5bd;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

/* ==========================
   TABLET AND MOBILE
========================== */

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .brand-tagline {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 78px;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: -14px;
    left: -14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(25, 38, 31, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px 180px;
  }

  .gallery img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .cta-band .container,
  .cta-content {
    align-items: flex-start;
  }

  .professional-booking-panel {
    display: block;
  }

  .professional-booking-panel .btn {
    margin-top: 24px;
  }
}

@media (max-width: 700px) {
  .cta-band .container,
  .cta-content {
    display: block;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 90px 0 58px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    display: block;
  }

  .gallery img {
    height: auto;
    margin-bottom: 10px;
    aspect-ratio: 4 / 3;
  }

  .brand-name,
  .brand-tagline {
    display: none;
  }

  .brand img,
  .brand .site-logo,
  .site-logo {
    width: 62px;
    height: 54px;
  }

  .panel {
    padding: 26px;
  }

  .availability-search-section {
    padding-top: 52px;
    padding-bottom: 24px;
  }

  .professional-stays-section {
    padding-top: 24px;
    padding-bottom: 62px;
  }

  .ownerrez-widget-container {
    padding: 18px;
    border-radius: 18px;
  }

  .professional-booking-panel .btn {
    width: 100%;
    text-align: center;
  }

  .footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-small {
    margin-top: 28px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }
}


/* ==========================
   PROFESSIONAL INQUIRY FORM
========================== */

.professional-inquiry-layout {
  align-items: start;
}

.professional-inquiry-layout > div,
.professional-inquiry-layout .professional-inquiry-form {
  align-self: start;
}

.professional-inquiry-form {
  align-self: start;
}

.professional-inquiry-form h2 {
  margin-bottom: 0;
}

.form-fieldset {
  margin: 8px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.form-fieldset legend {
  padding: 0 8px;
  color: var(--green-dark);
  font-weight: 800;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.form-disclaimer {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: .82rem;
}

@media (max-width: 600px) {

  .ownerrez-widget-container {
    padding: 18px;
    border-radius: 18px;
  }

  .professional-booking-panel .btn {
    width: 100%;
    text-align: center;
  }

  .professional-inquiry-layout {
    grid-template-columns: 1fr;
  }

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

  .form-fieldset {
    padding: 18px;
  }

}

/* =====================================================
   OWNER MESSAGE
===================================================== */

.owners-message{

    background:#f7f3eb;

    padding:90px 20px;

    border-top:1px solid #e6dcc7;

}

.owners-message-container{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.owners-logo{

    width:150px;

    margin:0 auto 24px;

    display:block;

}

.owners-message h2{

    margin-bottom:28px;

}

.owners-message p{

    font-size:1.05rem;

    line-height:1.9;

    color:#555;

    margin-bottom:24px;

}

.owners-closing{

    margin-top:36px;

    font-size:1.2rem;

    color:#8a6a24;

}

.owners-signature{

    margin-top:16px;

    font-family:"Playfair Display", serif;

    font-size:1.25rem;

    color:#222;

    font-style:italic;

}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-feature-image {
    width: 100%;
    overflow: hidden;
    background: #111;
}

.about-feature-image img {
    display: block;
    width: 100%;
    height: clamp(320px, 48vw, 680px);
    object-fit: cover;
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.about-timeline-item {
    position: relative;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(138, 106, 36, 0.18);
    border-radius: 4px;
}

.about-timeline-year {
    margin-bottom: 14px;
    color: #8a6a24;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-timeline-item h3 {
    margin: 0 0 14px;
}

.about-timeline-item p {
    margin-bottom: 0;
}

.about-quote-section {
    padding: 86px 20px;
    background: #241d18;
    color: #fff;
    text-align: center;
}

.about-quote-container {
    max-width: 900px;
}

.about-quote-section blockquote {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 3.15rem);
    line-height: 1.3;
}

.about-quote-section p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

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

.about-welcome-action {
    margin-top: 38px;
    text-align: center;
}

.footer-coming-soon {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-coming-soon em {
    display: block;
    margin-top: 2px;
    font-size: 0.76rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

@media (max-width: 900px) {

    .about-timeline {
        grid-template-columns: 1fr;
    }

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

}

@media (max-width: 640px) {

    .about-quote-section {
        padding: 64px 20px;
    }

    .about-welcome-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline-item {
        padding: 26px 22px;
    }

}

/* =====================================================
   INTERIOR SHOWCASE
===================================================== */

.about-showcase{
    position:relative;
    overflow:hidden;
}

.about-showcase img{
    display:block;
    width:100%;
    height:650px;
    object-fit:cover;
}

.about-showcase-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    background:linear-gradient(
        rgba(15,15,15,.25),
        rgba(15,15,15,.60)
    );
}

.about-showcase .container{
    max-width:760px;
    color:#fff;
}

.about-showcase blockquote{
    margin:0 0 28px;
    font-family:"Playfair Display",serif;
    font-size:clamp(2rem,4vw,3.3rem);
    line-height:1.2;
    font-style:normal;
}

.about-showcase p{
    font-size:1.15rem;
    line-height:1.9;
    color:rgba(255,255,255,.92);
}

/* =====================================================
   PROFESSIONAL LOCATION MAP
===================================================== */

.professional-location-section {
  background: #f7f3eb;
  border-top: 1px solid #e6dcc7;
}

.professional-location-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.professional-location-heading p {
  max-width: 720px;
}

.professional-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 30px;
  align-items: stretch;
}

/* MAP SIDE */

.professional-map-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(138, 106, 36, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(35, 29, 24, 0.08);
}

.professional-map-search {
  padding: 28px 30px;
  border-bottom: 1px solid #ece6dc;
}

.professional-map-search > label {
  display: block;
  margin-bottom: 10px;
  color: #241d18;
  font-weight: 700;
}

.professional-map-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.professional-map-search-row input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d8d0c3;
  border-radius: 6px;
  background: #fff;
  color: #222;
  font: inherit;
}

.professional-map-search-row input:focus {
  border-color: #8a6a24;
  outline: 2px solid rgba(138, 106, 36, 0.16);
  outline-offset: 2px;
}

.professional-map-search-row .btn {
  min-height: 52px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.professional-travel-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.professional-travel-modes legend {
  width: 100%;
  margin-bottom: 6px;
  color: #241d18;
  font-size: 0.9rem;
  font-weight: 700;
}

.professional-travel-modes label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #555;
  font-size: 0.92rem;
  cursor: pointer;
}

.professional-travel-modes input {
  accent-color: #8a6a24;
}

.professional-map-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #666;
  font-size: 0.88rem;
}

.professional-map-frame {
  min-height: 610px;
  background: #e8e3da;
}

.professional-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
}

/* DESTINATION SIDE */

.professional-destinations {
  padding: 34px;
  background: #241d18;
  border-radius: 18px;
  color: #fff;
}

.professional-destinations .eyebrow {
  color: #d6b66c;
}

.professional-destinations h3 {
  margin: 8px 0 14px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.professional-destinations > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.destination-group + .destination-group {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.destination-group h4 {
  margin: 0 0 12px;
  color: #d6b66c;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.professional-destination {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    padding-left 0.2s ease,
    color 0.2s ease;
}

.professional-destination:hover {
  padding-left: 7px;
  color: #e5c87d;
}

.professional-destination span {
  font: inherit;
  font-weight: 700;
}

.professional-destination small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.professional-destination.is-active {
  padding-left: 7px;
  color: #e5c87d;
}

/* RESPONSIVE */

@media (max-width: 980px) {

  .professional-map-layout {
    grid-template-columns: 1fr;
  }

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

  .professional-destinations > .eyebrow,
  .professional-destinations > h3,
  .professional-destinations > p {
    grid-column: 1 / -1;
  }

  .destination-group + .destination-group {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

}

@media (max-width: 640px) {

  .professional-map-search {
    padding: 24px 20px;
  }

  .professional-map-search-row {
    grid-template-columns: 1fr;
  }

  .professional-map-search-row .btn {
    width: 100%;
  }

  .professional-travel-modes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professional-map-frame,
  .professional-map-frame iframe {
    min-height: 430px;
  }

  .professional-destinations {
    display: block;
    padding: 28px 22px;
  }

  .destination-group + .destination-group {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

}

/* ==========================
   PROFESSIONAL LOCATION
========================== */

.professional-location-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.professional-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.professional-map-card {
  display: flex;
  flex-direction: column;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(62, 91, 76, 0.14);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.professional-map-frame {
  flex: 1;
  min-height: 600px;
}

.professional-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

.professional-map-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-top: 1px solid rgba(62, 91, 76, 0.12);
}

.professional-map-caption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.professional-map-caption span {
  color: #59635e;
  font-size: 0.88rem;
  line-height: 1.5;
}

.professional-map-caption a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.professional-map-caption a:hover {
  text-decoration: underline;
}

.professional-destinations {
  padding: 32px 28px;
  background: #251d18;
  color: #fff;
  border-radius: 20px;
}

.professional-destinations h3 {
  margin-bottom: 12px;
  color: #fff;
}

.professional-destinations > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.destination-columns {
  display: grid;
  gap: 26px;
}

.destination-group + .destination-group {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.destination-group h4 {
  margin-bottom: 10px;
  color: #d9b861;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.professional-destination {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.professional-destination span {
  display: block;
  color: #fff;
  font-weight: 700;
}

.professional-destination small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .professional-map-layout {
    grid-template-columns: 1fr;
  }

  .professional-map-card {
    min-height: 560px;
  }

  .professional-map-frame,
  .professional-map-frame iframe {
    min-height: 480px;
  }

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

  .destination-group + .destination-group {
    padding-top: 0;
    padding-left: 24px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 600px) {
  .professional-map-card {
    min-height: 500px;
  }

  .professional-map-frame,
  .professional-map-frame iframe {
    min-height: 390px;
  }

  .professional-map-caption {
    display: block;
  }

  .professional-map-caption span,
  .professional-map-caption a {
    display: block;
    margin-top: 10px;
  }

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

  .destination-group + .destination-group {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}