:root {
  --ink: #173c37;
  --ink-deep: #0d302c;
  --gold: #bc893c;
  --gold-light: #dcad62;
  --cream: #fbf6ed;
  --paper: #fffdf9;
  --text: #253634;
  --muted: #6d7772;
  --line: #e4d7c4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 10px;
  top: -50px;
  z-index: 9999;
  padding: .6rem 1rem;
  background: #fff;
  color: var(--ink);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid #e8dcc9;
  background: rgba(255, 251, 243, .97);
  box-shadow: 0 2px 16px rgba(13, 48, 44, .08);
}

.navbar-brand,
.footer-brand {
  flex-direction: column;
  gap: .18rem;
}

.brand-logo {
  width: 100px;
}

.brand-copy {
  display: block;
  padding: 0;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.brand-copy b {
  color: var(--gold-light);
  font: 700 .48rem/1 var(--sans);
  letter-spacing: .13em;
  white-space: nowrap;
}

.navbar .nav-link {
  color: var(--ink);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: .7rem .75rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold);
}

.site-header .navbar.navbar-dark .nav-link {
  color: var(--ink);
}

.site-header .navbar.navbar-dark .nav-link:hover,
.site-header .navbar.navbar-dark .nav-link.active {
  color: var(--gold);
}

.site-header .navbar-toggler {
  color: var(--ink);
}

.btn {
  border-radius: 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9rem 1.25rem;
  transition: .25s ease;
}

.btn i {
  margin-left: .45rem;
}

.btn-gold {
  color: #172d2a;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline-ivory {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
}

.btn-outline-ivory:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.nav-cta {
  white-space: nowrap;
}

.hero-section {
  min-height: 700px;
  min-height: clamp(660px, 92svh, 800px);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  background: url("assets/palace-hero.png") 66% center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 44, 39, .91) 0%, rgba(10, 49, 45, .72) 34%, rgba(7, 24, 38, .08) 71%), linear-gradient(0deg, rgba(7, 35, 31, .36), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 7.8rem;
  padding-bottom: 4rem;
}

.hero-eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: #fff2d9;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold-light);
}

.hero-section h1 {
  max-width: 680px;
  margin: 0 0 1.2rem;
  color: #fffaf2;
  font: 600 clamp(2.3rem, 3.2vw, 3.35rem)/1.08 var(--serif);
  letter-spacing: -.01em;
}

h1 em,
h2 em,
em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

.hero-copy {
  width: min(455px, 100%);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .87);
  font-size: 1.03rem;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  right: max(1.4rem, calc((100% - 1296px) / 2));
  color: #fff;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue i {
  color: var(--gold-light);
  font-size: 1.1rem;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  50% {
    transform: translateY(5px);
  }
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.intro-strip {
  background: var(--cream);
}

.section-heading {
  max-width: 690px;
}

.section-heading .eyebrow {
  color: var(--gold);
  justify-content: center;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  content: "";
  height: 1px;
  width: 26px;
  background: var(--gold-light);
}

.section-heading h2,
.feature-content h2,
.contact-inner h2 {
  margin: 0;
  color: var(--ink);
  font: 600 clamp(2.55rem, 5vw, 4rem)/.9 var(--serif);
  letter-spacing: -.025em;
}

.section-heading h2 em {
  color: var(--gold);
}

.section-heading p {
  max-width: 590px;
  margin: 1.1rem auto 0;
  color: var(--muted);
}

.experience-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-item {
  height: 100%;
  padding: 1.45rem 1.1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.experience-grid>div:last-child .experience-item {
  border-right: 0;
}

@media (min-width: 992px) {
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }

  .experience-grid>div {
    width: auto;
  }

  .experience-grid>div:nth-child(-n+4) {
    grid-column: span 5;
  }

  .experience-grid>div:nth-child(n+5) {
    grid-column: span 4;
  }

  .experience-grid>div:nth-child(4) .experience-item,
  .experience-grid>div:nth-child(9) .experience-item {
    border-right: 0;
  }

  .experience-grid>div:nth-child(n+5) .experience-item {
    border-top: 1px solid var(--line);
  }
}

.experience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto .75rem;
  color: var(--gold);
  border: 1px solid #d6b57f;
  border-radius: 50%;
  font-size: 1.35rem;
}

.experience-item h3,
.destination-label h3 {
  color: var(--ink);
  font: 700 1.55rem/1 var(--serif);
}

.experience-item h3 {
  min-height: 2.5em;
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
}

.experience-item p {
  min-height: 40px;
  margin: .4rem 0 .7rem;
  color: var(--muted);
  font-size: .78rem;
}

.experience-item a,
.link-arrow {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-item a i,
.link-arrow i {
  margin-left: .25rem;
  transition: transform .2s ease;
}

.experience-item a:hover i,
.link-arrow:hover i {
  transform: translateX(4px);
}

.feature-card {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 5rem);
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.feature-event {
  background-image: linear-gradient(0deg, rgba(10, 45, 39, .94), rgba(10, 45, 39, .07) 75%), url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1300&q=85");
}

.feature-stay {
  background-image: linear-gradient(0deg, rgba(17, 47, 52, .92), rgba(17, 47, 52, .06) 75%), url("https://images.unsplash.com/photo-1601918774946-25832a4be0d6?auto=format&fit=crop&w=1300&q=85");
}

.feature-content {
  max-width: 515px;
}

.feature-content h2 {
  color: #fffaf4;
  font-size: clamp(2.7rem, 4vw, 4.15rem);
}

.feature-content h2 em {
  color: var(--gold-light);
}

.feature-content p {
  margin: 1.2rem 0;
  color: rgba(255, 255, 255, .85);
}

.text-gold {
  color: var(--gold-light) !important;
}

.check-list {
  list-style: none;
  display: grid;
  gap: .3rem;
  margin: 0 0 1.45rem;
  padding: 0;
  font-size: .86rem;
}

.check-list li::before {
  content: "✓";
  margin-right: .5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.feature-content .link-arrow {
  color: #fff5df;
}

.stats-band {
  padding: 2.4rem 0;
  color: #fff;
  background: var(--ink);
}

.stat {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  max-width: 100%;
  margin: auto;
  column-gap: .7rem;
  text-align: left;
}

.stat i {
  grid-row: span 2;
  align-self: center;
  color: var(--gold-light);
  font-size: 1.75rem;
}

.stat strong {
  color: var(--gold-light);
  font: 600 2.5rem/.95 var(--serif);
}

.stat strong span {
  font-size: 1.6rem;
}

.stat small {
  color: rgba(255, 255, 255, .75);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.destination-section {
  background: var(--paper);
}

.dark-link {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: .35rem;
}

.destination-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: -1.35rem 0 2rem;
  padding: 0;
  list-style: none;
}

.destination-pills li {
  padding: .55rem .8rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.destination-pills i {
  margin-right: .25rem;
  color: var(--gold);
}

.destination-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #ded8cc;
}

.destination-large {
  min-height: 510px;
}

.destination-small {
  min-height: 243px;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 37, 34, .86), transparent 57%);
}

.destination-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform .6s ease;
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-label {
  position: absolute;
  left: 1.6rem;
  bottom: 1.35rem;
  z-index: 1;
  color: #fff;
}

.destination-label span {
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.destination-label h3 {
  margin: .25rem 0 0;
  color: #fff;
  font-size: 2rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  transition: .2s ease;
}

.carousel-controls button:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.carousel-count {
  color: var(--muted);
  font: 600 1rem var(--serif);
  letter-spacing: .06em;
}

.carousel-count b {
  color: var(--gold);
}

.what-we-do-section {
  background: var(--paper);
}

.what-we-do-copy,
.technology-card,
.view-promise-card {
  height: 100%;
  padding: clamp(1.7rem, 3.5vw, 3rem);
  border: 1px solid var(--line);
}

.what-we-do-copy {
  background: var(--cream);
}

.technology-card {
  color: #fff;
  background: var(--ink);
}

.what-we-do-copy h3,
.technology-card h3,
.view-promise-card h3,
.partner-card h3 {
  color: var(--ink);
  font: 700 clamp(1.45rem, 2.25vw, 2rem)/1.05 var(--serif);
}

.what-we-do-copy h3,
.technology-card h3,
.view-promise-card h3 {
  margin: .65rem 0 1rem;
}

.what-we-do-copy p,
.view-promise-card p {
  color: var(--muted);
}

.what-we-do-copy p + p {
  margin-top: 1rem;
}

.what-we-do-copy .link-arrow {
  display: inline-block;
  margin-top: .75rem;
}

.technology-card .eyebrow {
  color: var(--gold-light);
}

.technology-card h3,
.technology-card p {
  color: #fffaf4;
}

.technology-card p {
  color: rgba(255, 255, 255, .82);
}

.expertise-list {
  display: grid;
  gap: .55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  color: #fffaf4;
  font-size: .86rem;
}

.expertise-list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}

.expertise-list li::before {
  content: "✦";
  color: var(--gold-light);
}

.view-promise-card {
  background: #fffdfa;
}

.view-promise-card .eyebrow {
  color: var(--gold);
}

.partner-slider {
  overflow: hidden;
  padding: .25rem;
  margin: -.25rem;
}

.partner-track {
  display: flex;
  gap: 1rem;
  transition: transform .45s ease;
  will-change: transform;
}

.partner-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: #fffdfa;
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(13, 48, 43, .08);
}

.partner-logo {
  width: 82px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 3px;
  font: 700 .93rem/1 var(--sans);
  letter-spacing: .02em;
}

.partner-card h3 {
  margin: 1.25rem 0 .35rem;
  font-size: 1.35rem;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
  margin-top: 1.6rem;
}

.partner-slider-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  transition: .2s ease;
}

.partner-slider-controls button:hover,
.partner-slider-controls button:focus-visible {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.partner-slide-count {
  color: var(--muted);
  font: 600 1rem var(--serif);
  letter-spacing: .06em;
}

.partner-slide-count b {
  color: var(--gold);
}

.logo-lt,
.logo-tata,
.logo-aic {
  background: #1769aa;
}

.logo-mahindra,
.logo-birla,
.logo-jcb {
  background: #d1262d;
}

.logo-capri,
.logo-alkem {
  background: #213d78;
}

.logo-safe,
.logo-annapurna,
.logo-piramal {
  background: #0c6b63;
}

.logo-emami,
.logo-ambuja {
  color: #163d76;
  background: #f5c842;
}

.logo-chetan,
.logo-moonstar,
.logo-bizcoach {
  background: #765d3f;
}

@media (max-width: 991.98px) {
  .partner-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 575.98px) {
  .partner-card {
    flex-basis: 100%;
    min-height: 165px;
    padding: 1rem;
  }

  .partner-logo {
    width: 68px;
    height: 46px;
    font-size: .8rem;
  }

  .partner-card h3 {
    margin-top: 1rem;
    font-size: 1.15rem;
  }
}

.quote-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 55, 49, .94), rgba(15, 55, 49, .77)), url("https://images.unsplash.com/photo-1507504031003-b417219a0fde?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.quote-icon {
  color: var(--gold-light);
  font-size: 2.3rem;
}

blockquote {
  max-width: 850px;
  margin: .5rem auto 1rem;
  font: 500 clamp(2rem, 4vw, 3.25rem)/1 var(--serif);
}

.quote-section p {
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-section {
  padding: 0;
  background: var(--cream);
}

.contact-inner {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.contact-inner h2 {
  max-width: 660px;
}

.contact-inner h2 em {
  color: var(--gold);
}

.contact-inner p {
  max-width: 590px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-details {
  max-width: 660px;
  margin-top: 1rem;
}

.contact-inner .contact-intro {
  margin: 0;
}

.contact-detail-row {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-top: .85rem;
}

.contact-detail-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid #d6b57f;
  border-radius: 50%;
  font-size: .82rem;
}

.contact-detail-label {
  display: block;
  margin: .05rem 0 .2rem;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-detail-row address {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  font-style: normal;
  line-height: 1.5;
}

.contact-contact-list {
  width: 100%;
  display: grid;
  gap: .45rem;
}

.contact-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  padding: .1rem 0;
}

.contact-contact-line > a {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-contact-line > a:hover {
  color: var(--gold);
}

.contact-mobile-link {
  white-space: nowrap;
  color: var(--muted) !important;
}

.contact-separator {
  color: var(--gold);
  font-weight: 700;
}

.wedding-contact {
  display: inline-block;
  margin-top: .9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.wedding-contact:hover {
  color: var(--gold);
}

.site-footer {
  padding: 4.5rem 0 1.25rem;
  color: rgba(255, 255, 255, .78);
  background: var(--ink-deep);
}

.footer-copy {
  max-width: 280px;
  margin: 1.35rem 0 0;
  font-size: .86rem;
}

.socials {
  display: flex;
  gap: .55rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  font-size: .8rem;
}

.socials a:hover {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.site-footer h3 {
  margin: .15rem 0 1.1rem;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: .35rem;
}

.site-footer li a {
  color: rgba(255, 255, 255, .76);
  font-size: .84rem;
}

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

.footer-whatsapp-list {
  display: grid;
  gap: .5rem;
}

.footer-whatsapp-list a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .82);
  font-size: .83rem;
}

.footer-whatsapp-list a i {
  margin-right: .35rem;
  color: var(--gold-light);
}

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

.subscribe-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: .55rem 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: .83rem var(--sans);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.subscribe-form button {
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font-size: 1.2rem;
}

.form-message {
  display: block;
  min-height: 1.5rem;
  padding-top: .45rem;
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 3.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .65);
}

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

.subpage-header {
  position: relative;
  background: var(--paper);
}

.subpage-hero {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  color: #fff;
  background: linear-gradient(110deg, rgba(10, 48, 43, .96), rgba(19, 62, 56, .82)), url("assets/palace-hero.png") center 61% / cover;
}

.subpage-hero .eyebrow {
  color: var(--gold-light);
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fffaf3;
  font: 600 clamp(3rem, 6vw, 5.2rem)/.9 var(--serif);
}

.subpage-hero h1 em {
  color: var(--gold-light);
}

.subpage-hero p {
  max-width: 625px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, .82);
}

.page-content {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.page-content h2 {
  margin: 2.7rem 0 .8rem;
  color: var(--ink);
  font: 700 clamp(2rem, 4vw, 2.85rem)/1 var(--serif);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  margin: 1.75rem 0 .55rem;
  color: var(--ink);
  font: 700 1.45rem/1 var(--serif);
}

.page-content p,
.page-content li {
  color: var(--muted);
}

.page-content ul {
  padding-left: 1.1rem;
}

.page-content li+li {
  margin-top: .45rem;
}

.page-aside {
  position: sticky;
  top: 1.4rem;
  padding: 1.4rem;
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

.page-aside h2 {
  margin: 0 0 .85rem;
  font-size: 1.6rem;
}

.page-aside a {
  display: block;
  padding: .42rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 600;
}

.page-aside a:last-child {
  border-bottom: 0;
}

.page-aside a:hover {
  color: var(--gold);
}

.info-panel {
  margin-top: 2.2rem;
  padding: 1.3rem 1.45rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}

.info-panel p {
  margin: 0;
}

.about-intro {
  max-width: 735px;
  margin-bottom: 3.25rem;
}

.about-intro p {
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.value-card {
  height: 100%;
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: var(--cream);
}

.value-card i {
  color: var(--gold);
  font-size: 1.6rem;
}

.value-card h3 {
  margin-top: .8rem;
}

.value-card p {
  margin: 0;
  font-size: .87rem;
}

.contact-mini {
  margin-top: 4.5rem;
  padding: 2rem;
  color: #fff;
  background: var(--ink);
}

.contact-mini h2 {
  margin: 0;
  color: #fff;
}

.contact-mini p {
  margin: .65rem 0 0;
  color: rgba(255, 255, 255, .75);
}

.about-expertise-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.about-expertise-list li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  margin-top: .45rem;
}

.about-expertise-list li::before {
  content: "\F584";
  font-family: "bootstrap-icons";
  font-size: .85rem;
  font-style: normal;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(255, 251, 243, .98);
  }

  .navbar-collapse {
    padding: .75rem 0 .2rem;
  }

  .nav-cta {
    display: inline-block;
    margin: .7rem 0 .3rem;
  }

  .feature-card {
    min-height: 570px;
  }

  .experience-grid>div .experience-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-grid>div:nth-child(odd):not(:last-child) .experience-item {
    border-right: 1px solid var(--line);
  }

  .experience-grid>div:last-child .experience-item {
    border-bottom: 0;
  }

  .page-aside {
    position: static;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 680px;
    background-position: 67% center;
  }

  .hero-content {
    padding-top: 7.5rem;
  }

  .hero-section h1 {
    font-size: clamp(2.1rem, 8.5vw, 2.75rem);
    line-height: 1.08;
  }

  .scroll-cue span {
    display: none;
  }

  .scroll-cue {
    right: 1.4rem;
  }

  .destination-large {
    min-height: 400px;
  }

  .destination-small {
    min-height: 220px;
  }

  .destination-label h3 {
    font-size: 1.75rem;
  }

  .contact-inner .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 92px;
    height: 56px;
  }

  .brand-copy b {
    font-size: .39rem;
  }

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

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

  .experience-item {
    padding: 1.9rem 1.3rem;
    border-right: 0 !important;
  }

  .experience-grid>div:not(:last-child) .experience-item {
    border-bottom: 1px solid var(--line);
  }

  .experience-item p {
    min-height: 0;
  }

  .experience-item h3 {
    min-height: 0;
  }

  .feature-card {
    min-height: 540px;
    padding: 2rem 1.4rem;
  }

  .feature-content h2 {
    font-size: 2.65rem;
  }

  .check-list {
    font-size: .78rem;
  }

  .stat {
    transform: scale(.9);
  }
}
