
:root {

  --hp-primary: #2c3e50;
  --hp-primary-dark: #1a252f;
  --hp-primary-light: #34495e;
  --hp-primary-rgb: 44, 62, 80;


  --hp-accent: #c0956c;
  --hp-accent-dark: #a67c52;
  --hp-accent-light: #d4a97a;
  --hp-accent-rgb: 192, 149, 108;


  --hp-white: #ffffff;
  --hp-black: #0a0a0a;
  --hp-gray-50: #fafafa;
  --hp-gray-100: #f5f5f5;
  --hp-gray-200: #e5e5e5;
  --hp-gray-300: #d4d4d4;
  --hp-gray-400: #a3a3a3;
  --hp-gray-500: #737373;
  --hp-gray-600: #525252;
  --hp-gray-700: #404040;
  --hp-gray-800: #262626;
  --hp-gray-900: #171717;


  --hp-font-body: 'Cormorant Garamond', Georgia, serif;
  --hp-font-head: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --hp-sp-xs: 0.25rem;
  --hp-sp-sm: 0.5rem;
  --hp-sp-md: 1rem;
  --hp-sp-lg: 1.5rem;
  --hp-sp-xl: 2rem;
  --hp-sp-2xl: 3rem;
  --hp-sp-3xl: 4rem;
  --hp-sp-4xl: 6rem;


  --hp-rd-sm: 0.375rem;
  --hp-rd-md: 0.5rem;
  --hp-rd-lg: 0.75rem;
  --hp-rd-xl: 1rem;
  --hp-rd-2xl: 1.5rem;
  --hp-rd-full: 9999px;


  --hp-shd-sm: 0 1px 3px rgba(0,0,0,0.04);
  --hp-shd-md: 0 3px 8px -1px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
  --hp-shd-lg: 0 8px 20px -4px rgba(0,0,0,0.08), 0 4px 8px -2px rgba(0,0,0,0.06);
  --hp-shd-xl: 0 18px 28px -6px rgba(0,0,0,0.08), 0 6px 12px -4px rgba(0,0,0,0.05);


  --hp-anim-fast: 120ms ease-out;
  --hp-anim-base: 220ms ease;
  --hp-anim-slow: 380ms ease-in-out;


  --hp-box-max: 1240px;
  --hp-box-padding: 2rem;


  --hp-head-h: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body{
  font-family: var(--hp-font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--hp-gray-800);
  background-color: var(--hp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a{
  color: var(--hp-primary);
  text-decoration: none;
  transition: color var(--hp-anim-fast);
}

a:hover {
  color: var(--hp-primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hp-font-head);
  font-weight: 700;
  line-height: 1.3;
  color: var(--hp-gray-900);
}

h1{ font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.625rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p{
  margin-bottom: 1rem;
  color: var(--hp-gray-600);
}

p:last-child {
  margin-bottom: 0;
}

/* --- Container --- */
.hp-frame {
  width: 100%;
  max-width: var(--hp-box-max);
  margin: 0 auto;
  padding: 0 var(--hp-box-padding);
}

.hp-zone {
  padding: var(--hp-sp-4xl) 0;
}

.hp-zone-light{
  background-color: var(--hp-gray-50);
}

.hp-zone-dark {
  background-color: var(--hp-gray-900);
  color: var(--hp-gray-200);
}

.hp-zone-dark h2,
.hp-zone-dark h3,
.hp-zone-dark h4 {
  color: var(--hp-white);
}

.hp-zone-dark p {
  color: var(--hp-gray-400);
}

.hp-zone-main {
  background: linear-gradient(135deg, var(--hp-primary-dark) 0%, var(--hp-primary) 50%, var(--hp-primary-light) 100%);
  color: var(--hp-white);
}

.hp-zone-main h2,
.hp-zone-main h3 {
  color: var(--hp-white);
}

.hp-zone-main p {
  color: rgba(255, 255, 255, 0.85);
}

.hp-zone-heading{
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--hp-sp-3xl);
}

.hp-zone-heading h2 {
  margin-bottom: var(--hp-sp-md);
}

.hp-zone-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hp-accent);
  margin-bottom: var(--hp-sp-sm);
}

.hp-zone-dark .hp-zone-label,
.hp-zone-main .hp-zone-label {
  color: var(--hp-accent-light);
}

.hp-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hp-sp-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--hp-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--hp-rd-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--hp-anim-base);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.hp-act-main{
  background-color: var(--hp-primary);
  color: var(--hp-white);
  border-color: var(--hp-primary);
}

.hp-act-main:hover {
  background-color: var(--hp-primary-dark);
  border-color: var(--hp-primary-dark);
  color: var(--hp-white);
  transform: translateY(-2px);
  box-shadow: var(--hp-shd-lg);
}

.hp-act-alt {
  background-color: transparent;
  color: var(--hp-primary);
  border-color: var(--hp-primary);
}

.hp-act-alt:hover{
  background-color: var(--hp-primary);
  color: var(--hp-white);
  transform: translateY(-2px);
  box-shadow: var(--hp-shd-lg);
}

.hp-act-accent{
  background-color: var(--hp-accent);
  color: var(--hp-gray-900);
  border-color: var(--hp-accent);
}

.hp-act-accent:hover{
  background-color: var(--hp-accent-dark);
  border-color: var(--hp-accent-dark);
  color: var(--hp-gray-900);
  transform: translateY(-2px);
  box-shadow: var(--hp-shd-lg);
}

.hp-act-light {
  background-color: var(--hp-white);
  color: var(--hp-primary);
  border-color: var(--hp-white);
}

.hp-act-light:hover {
  background-color: var(--hp-gray-100);
  border-color: var(--hp-gray-100);
  color: var(--hp-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--hp-shd-lg);
}

.hp-act-outline-light {
  background-color: transparent;
  color: var(--hp-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hp-act-outline-light:hover {
  background-color: var(--hp-white);
  color: var(--hp-primary);
  border-color: var(--hp-white);
  transform: translateY(-2px);
}

.hp-act-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.hp-act-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.hp-act-icon {
  font-size: 1.1em;
  line-height: 1;
}

.hp-act-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hp-sp-md);
}

.hp-banner{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hp-gray-200);
  height: var(--hp-head-h);
  transition: all var(--hp-anim-base);
}

.hp-banner-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--hp-sp-xl);
}

.hp-crest {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-sm);
  font-family: var(--hp-font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hp-gray-900);
  text-decoration: none;
  flex-shrink: 0;
}

.hp-crest:hover {
  color: var(--hp-primary);
}

.hp-crest-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-light) 100%);
  color: var(--hp-accent);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--hp-rd-md);
  letter-spacing: 0.05em;
}

.hp-menu-toggle-state {
  display: none;
}

.hp-menu-switch{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--hp-rd-sm);
  transition: background-color var(--hp-anim-fast);
}

.hp-menu-switch:hover{
  background-color: var(--hp-gray-100);
}

.hp-menu-switch span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--hp-gray-700);
  border-radius: 2px;
  transition: all var(--hp-anim-base);
}

.hp-menu {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-xl);
}

.hp-menu-items {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-xs);
}

.hp-menu-anchor{
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--hp-gray-600);
  border-radius: var(--hp-rd-sm);
  transition: all var(--hp-anim-fast);
}

.hp-menu-anchor:hover,
.hp-menu-anchor.active{
  color: var(--hp-primary);
  background-color: rgba(var(--hp-primary-rgb), 0.06);
}

.hp-menu-action .hp-act{
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

@media (max-width: 768px){
  .hp-menu-switch {
    display: flex;
  }

  .hp-menu{
    position: fixed;
    top: var(--hp-head-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--hp-white);
    padding: var(--hp-sp-lg);
    gap: var(--hp-sp-lg);
    transform: translateX(100%);
    transition: transform var(--hp-anim-slow);
    overflow-y: auto;
    border-top: 1px solid var(--hp-gray-200);
  }

  .hp-menu-toggle-state:checked ~ .hp-menu {
    transform: translateX(0);
  }

  .hp-menu-toggle-state:checked ~ .hp-menu-switch span:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hp-menu-toggle-state:checked ~ .hp-menu-switch span:nth-child(2) {
    opacity: 0;
  }

  .hp-menu-toggle-state:checked ~ .hp-menu-switch span:nth-child(3){
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hp-menu-items {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hp-menu-anchor {
    padding: 0.875rem var(--hp-sp-md);
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--hp-gray-100);
  }

  .hp-menu-action {
    padding-top: var(--hp-sp-md);
  }

  .hp-menu-action .hp-act {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
  }
}

/* --- Hero Section --- */
.hp-marquee {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--hp-head-h) + var(--hp-sp-3xl));
  padding-bottom: var(--hp-sp-4xl);
  background:
    linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(21,42,69,0.88) 50%, rgba(42,74,115,0.9) 100%),
    url('hero-bg.svg') center/cover no-repeat;
  color: var(--hp-white);
  overflow: hidden;
}

.hp-marquee::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(var(--hp-primary-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hp-marquee::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(var(--hp-accent-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hp-marquee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-sp-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hp-marquee-body{
  max-width: 560px;
}

.hp-marquee-tag{
  display: inline-flex;
  align-items: center;
  gap: var(--hp-sp-sm);
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--hp-rd-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-accent-light);
  margin-bottom: var(--hp-sp-lg);
  backdrop-filter: blur(8px);
}

.hp-marquee h1 {
  color: var(--hp-white);
  margin-bottom: var(--hp-sp-lg);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
}

.hp-marquee h1 .hp-tone-accent {
  color: var(--hp-accent-light);
}

.hp-marquee-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--hp-sp-2xl);
  line-height: 1.8;
}

.hp-marquee-figures{
  display: flex;
  gap: var(--hp-sp-2xl);
  margin-top: var(--hp-sp-2xl);
  padding-top: var(--hp-sp-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-marquee-figure {
  text-align: left;
}

.hp-marquee-figure-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hp-accent-light);
  line-height: 1.2;
}

.hp-marquee-figure-label{
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

.hp-marquee-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-marquee-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--hp-rd-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hp-marquee{
    min-height: auto;
    padding-top: calc(var(--hp-head-h) + var(--hp-sp-2xl));
    padding-bottom: var(--hp-sp-3xl);
  }

  .hp-marquee-layout{
    grid-template-columns: 1fr;
    gap: var(--hp-sp-2xl);
  }

  .hp-marquee-visual {
    order: -1;
  }

  .hp-marquee-visual img{
    max-width: 360px;
  }

  .hp-marquee-figures {
    gap: var(--hp-sp-lg);
  }
}

.hp-assurance-bar{
  padding: var(--hp-sp-2xl) 0;
  background-color: var(--hp-white);
  border-bottom: 1px solid var(--hp-gray-200);
}

.hp-assurance-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--hp-sp-xl) var(--hp-sp-3xl);
}

.hp-assurance-point{
  display: flex;
  align-items: center;
  gap: var(--hp-sp-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hp-gray-600);
}

.hp-assurance-glyph{
  font-size: 1.5rem;
  line-height: 1;
  color: var(--hp-accent);
}

.hp-offerings-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-sp-xl);
}

.hp-offering-card{
  background: var(--hp-white);
  border-radius: var(--hp-rd-xl);
  padding: var(--hp-sp-2xl);
  border: 1px solid var(--hp-gray-200);
  transition: all var(--hp-anim-base);
  position: relative;
  overflow: hidden;
}

.hp-offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-primary), var(--hp-accent));
  opacity: 0;
  transition: opacity var(--hp-anim-base);
}

.hp-offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shd-xl);
  border-color: transparent;
}

.hp-offering-card:hover::before{
  opacity: 1;
}

.hp-offering-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--hp-primary-rgb), 0.08);
  border-radius: var(--hp-rd-lg);
  font-size: 1.5rem;
  margin-bottom: var(--hp-sp-lg);
  color: var(--hp-primary);
}

.hp-offering-card h3 {
  margin-bottom: var(--hp-sp-sm);
  font-size: 1.125rem;
}

.hp-offering-card p{
  font-size: 0.9375rem;
  line-height: 1.7;
}

.hp-offering-card .hp-act{
  margin-top: var(--hp-sp-lg);
}

@media (max-width: 992px) {
  .hp-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hp-offerings-grid{
    grid-template-columns: 1fr;
  }
}

.hp-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-sp-xl);
}

.hp-suite-card {
  border-radius: var(--hp-rd-xl);
  overflow: hidden;
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  transition: all var(--hp-anim-base);
}

.hp-suite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shd-xl);
}

.hp-suite-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hp-suite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hp-anim-slow);
}

.hp-suite-card:hover .hp-suite-image img {
  transform: scale(1.05);
}

.hp-suite-rate {
  position: absolute;
  bottom: var(--hp-sp-md);
  right: var(--hp-sp-md);
  background: var(--hp-accent);
  color: var(--hp-gray-900);
  padding: 0.5rem 1rem;
  border-radius: var(--hp-rd-md);
  font-weight: 700;
  font-size: 0.875rem;
}

.hp-suite-info {
  padding: var(--hp-sp-lg);
}

.hp-suite-info h3 {
  font-size: 1.125rem;
  margin-bottom: var(--hp-sp-sm);
}

.hp-suite-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hp-sp-sm);
  margin-top: var(--hp-sp-md);
}

.hp-suite-amenity{
  display: flex;
  align-items: center;
  gap: var(--hp-sp-xs);
  font-size: 0.8125rem;
  color: var(--hp-gray-600);
}

@media (max-width: 992px) {
  .hp-suites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hp-suites-grid {
    grid-template-columns: 1fr;
  }
}

.hp-visuals-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-sp-md);
}

.hp-visuals-item{
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--hp-rd-lg);
}

.hp-visuals-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hp-anim-slow);
}

.hp-visuals-item:hover img{
  transform: scale(1.1);
}

.hp-visuals-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--hp-anim-base);
}

.hp-visuals-item:hover::after {
  opacity: 1;
}

@media (max-width: 992px){
  .hp-visuals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .hp-visuals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Sectors (Amenities) --- */
.hp-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--hp-sp-lg);
}

.hp-area-card{
  text-align: center;
  padding: var(--hp-sp-2xl) var(--hp-sp-lg);
  background: var(--hp-white);
  border-radius: var(--hp-rd-xl);
  border: 1px solid var(--hp-gray-200);
  transition: all var(--hp-anim-base);
}

.hp-area-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--hp-shd-lg);
  border-color: var(--hp-primary);
}

.hp-area-icon{
  font-size: 2.5rem;
  margin-bottom: var(--hp-sp-md);
  line-height: 1;
  color: var(--hp-accent);
}

.hp-area-card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .hp-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .hp-areas-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

.hp-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-sp-xl);
  counter-reset: step;
}

.hp-journey-step{
  text-align: center;
  position: relative;
}

.hp-journey-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--hp-sp-lg);
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-light));
  color: var(--hp-white);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--hp-rd-full);
}

.hp-journey-step h4 {
  margin-bottom: var(--hp-sp-sm);
}

.hp-journey-step p{
  font-size: 0.875rem;
}

@media (max-width: 768px){
  .hp-journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hp-journey-steps{
    grid-template-columns: 1fr;
  }
}

.hp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-sp-xl);
}

.hp-showcase-card {
  border-radius: var(--hp-rd-xl);
  overflow: hidden;
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  transition: all var(--hp-anim-base);
}

.hp-showcase-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--hp-shd-xl);
}

.hp-showcase-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hp-showcase-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--hp-anim-slow);
}

.hp-showcase-card:hover .hp-showcase-image img{
  transform: scale(1.05);
}

.hp-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--hp-sp-lg);
  opacity: 0;
  transition: opacity var(--hp-anim-base);
}

.hp-showcase-card:hover .hp-showcase-overlay {
  opacity: 1;
}

.hp-showcase-overlay span{
  color: var(--hp-white);
  font-weight: 600;
  font-size: 0.875rem;
}

.hp-showcase-info{
  padding: var(--hp-sp-lg);
}

.hp-showcase-info h3{
  font-size: 1.0625rem;
  margin-bottom: var(--hp-sp-xs);
}

.hp-showcase-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(var(--hp-primary-rgb), 0.08);
  color: var(--hp-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--hp-rd-full);
  margin-bottom: var(--hp-sp-sm);
}

@media (max-width: 992px){
  .hp-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .hp-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.hp-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-sp-xl);
}

.hp-voice-card {
  background: var(--hp-white);
  border-radius: var(--hp-rd-xl);
  padding: var(--hp-sp-2xl);
  border: 1px solid var(--hp-gray-200);
  position: relative;
}

.hp-voice-rating{
  color: var(--hp-accent);
  font-size: 1rem;
  margin-bottom: var(--hp-sp-md);
  letter-spacing: 0.1em;
}

.hp-voice-quote {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--hp-gray-600);
  margin-bottom: var(--hp-sp-lg);
}

.hp-voice-author{
  display: flex;
  align-items: center;
  gap: var(--hp-sp-md);
}

.hp-voice-photo {
  width: 3rem;
  height: 3rem;
  border-radius: var(--hp-rd-full);
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.hp-voice-detail h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.hp-voice-detail p{
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
}

@media (max-width: 992px){
  .hp-voices-grid{
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.hp-queries-list{
  max-width: 800px;
  margin: 0 auto;
}

.hp-queries-item {
  border-bottom: 1px solid var(--hp-gray-200);
}

.hp-queries-item:first-child {
  border-top: 1px solid var(--hp-gray-200);
}

.hp-queries-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-sp-md);
  padding: var(--hp-sp-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--hp-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hp-gray-900);
  text-align: left;
  transition: color var(--hp-anim-fast);
}

.hp-queries-q:hover {
  color: var(--hp-primary);
}

.hp-queries-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--hp-primary);
  transition: transform var(--hp-anim-base);
}

.hp-queries-a {
  padding: 0 0 var(--hp-sp-lg) 0;
  font-size: 0.9375rem;
  color: var(--hp-gray-600);
  line-height: 1.8;
}

.hp-action-strip {
  padding: var(--hp-sp-4xl) 0;
  background: linear-gradient(135deg, var(--hp-primary-dark) 0%, var(--hp-primary) 50%, var(--hp-primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-action-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(var(--hp-accent-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hp-action-strip h2 {
  color: var(--hp-white);
  margin-bottom: var(--hp-sp-md);
}

.hp-action-strip p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--hp-sp-2xl);
}

.hp-action-strip .hp-act-row {
  justify-content: center;
}

.hp-page-intro {
  padding-top: calc(var(--hp-head-h) + var(--hp-sp-3xl));
  padding-bottom: var(--hp-sp-3xl);
  background: linear-gradient(135deg, var(--hp-gray-900) 0%, #0d1b2a 50%, var(--hp-primary-dark) 100%);
  color: var(--hp-white);
  text-align: center;
}

.hp-page-intro h1 {
  color: var(--hp-white);
  margin-bottom: var(--hp-sp-md);
}

.hp-page-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.hp-page-intro .hp-trail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hp-sp-sm);
  margin-bottom: var(--hp-sp-lg);
  font-size: 0.875rem;
}

.hp-page-intro .hp-trail a{
  color: rgba(255, 255, 255, 0.6);
}

.hp-page-intro .hp-trail a:hover {
  color: var(--hp-accent-light);
}

.hp-page-intro .hp-trail span {
  color: rgba(255, 255, 255, 0.4);
}

.hp-page-intro .hp-trail .hp-active-crumb{
  color: var(--hp-accent-light);
}

.hp-story-intro{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-sp-3xl);
  align-items: center;
}

.hp-story-intro img {
  border-radius: var(--hp-rd-xl);
  box-shadow: var(--hp-shd-lg);
}

.hp-pillars-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-sp-xl);
}

.hp-pillar-card {
  text-align: center;
  padding: var(--hp-sp-2xl);
  background: var(--hp-white);
  border-radius: var(--hp-rd-xl);
  border: 1px solid var(--hp-gray-200);
}

.hp-pillar-icon {
  font-size: 2.5rem;
  margin-bottom: var(--hp-sp-md);
  line-height: 1;
  color: var(--hp-accent);
}

.hp-pillar-card h3 {
  margin-bottom: var(--hp-sp-sm);
}

.hp-chronicle{
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.hp-chronicle::before{
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hp-gray-200);
}

.hp-chronicle-entry {
  position: relative;
  padding-bottom: var(--hp-sp-2xl);
}

.hp-chronicle-entry::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--hp-primary);
  border-radius: var(--hp-rd-full);
  border: 2px solid var(--hp-white);
  box-shadow: 0 0 0 3px rgba(var(--hp-primary-rgb), 0.2);
}

.hp-chronicle-year{
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--hp-accent);
  margin-bottom: var(--hp-sp-xs);
}

.hp-chronicle-entry h4 {
  margin-bottom: var(--hp-sp-xs);
}

@media (max-width: 768px) {
  .hp-story-intro {
    grid-template-columns: 1fr;
  }

  .hp-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.hp-offering-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-sp-3xl);
  align-items: center;
  padding: var(--hp-sp-3xl) 0;
  border-bottom: 1px solid var(--hp-gray-200);
}

.hp-offering-detail:nth-child(even){
  direction: rtl;
}

.hp-offering-detail:nth-child(even) > * {
  direction: ltr;
}

.hp-offering-detail:last-child {
  border-bottom: none;
}

.hp-offering-detail-icon{
  font-size: 3rem;
  margin-bottom: var(--hp-sp-md);
  line-height: 1;
  color: var(--hp-accent);
}

.hp-offering-detail h3 {
  font-size: 1.5rem;
  margin-bottom: var(--hp-sp-md);
}

.hp-offering-detail img {
  border-radius: var(--hp-rd-xl);
  box-shadow: var(--hp-shd-lg);
}

.hp-offering-perks {
  display: grid;
  gap: var(--hp-sp-sm);
  margin: var(--hp-sp-lg) 0;
}

.hp-offering-perk{
  display: flex;
  align-items: center;
  gap: var(--hp-sp-sm);
  font-size: 0.9375rem;
  color: var(--hp-gray-700);
}

.hp-offering-perk::before{
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(var(--hp-primary-rgb), 0.1);
  color: var(--hp-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: var(--hp-rd-full);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hp-offering-detail,
  .hp-offering-detail:nth-child(even){
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.hp-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-sp-3xl);
}

.hp-reach-info {
  display: flex;
  align-items: flex-start;
  gap: var(--hp-sp-md);
  padding: var(--hp-sp-lg);
  background: var(--hp-gray-50);
  border-radius: var(--hp-rd-lg);
  margin-bottom: var(--hp-sp-md);
}

.hp-reach-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.125rem;
  color: var(--hp-accent);
}

.hp-reach-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.hp-reach-info p{
  font-size: 0.875rem;
  color: var(--hp-gray-600);
}

.hp-reach-info a {
  color: var(--hp-primary);
  font-weight: 500;
}

.hp-reach-form {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-rd-xl);
  padding: var(--hp-sp-2xl);
}

.hp-field-group{
  margin-bottom: var(--hp-sp-lg);
}

.hp-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hp-gray-700);
  margin-bottom: var(--hp-sp-sm);
}

.hp-field-input,
.hp-field-area,
.hp-field-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--hp-font-body);
  font-size: 0.9375rem;
  color: var(--hp-gray-800);
  background: var(--hp-gray-50);
  border: 1px solid var(--hp-gray-300);
  border-radius: var(--hp-rd-md);
  transition: all var(--hp-anim-fast);
}

.hp-field-input:focus,
.hp-field-area:focus,
.hp-field-select:focus {
  outline: none;
  border-color: var(--hp-primary);
  box-shadow: 0 0 0 3px rgba(var(--hp-primary-rgb), 0.1);
  background: var(--hp-white);
}

.hp-field-area {
  resize: vertical;
  min-height: 120px;
}

.hp-field-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-sp-lg);
}

@media (max-width: 768px){
  .hp-reach-grid {
    grid-template-columns: 1fr;
  }

  .hp-field-row {
    grid-template-columns: 1fr;
  }
}

.hp-location-map {
  width: 100%;
  height: 300px;
  background: var(--hp-gray-100);
  border-radius: var(--hp-rd-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--hp-sp-2xl);
  border: 1px solid var(--hp-gray-200);
  font-size: 0.9375rem;
  color: var(--hp-gray-500);
}

.hp-base {
  background-color: var(--hp-gray-900);
  color: var(--hp-gray-400);
  padding-top: var(--hp-sp-4xl);
}

.hp-base-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--hp-sp-2xl);
  padding-bottom: var(--hp-sp-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-base-brand .hp-crest {
  margin-bottom: var(--hp-sp-lg);
}

.hp-base-brand .hp-crest .hp-crest-mark{
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-light));
}

.hp-base-brand .hp-crest span:last-child {
  color: var(--hp-white);
}

.hp-base-brand p {
  font-size: 0.875rem;
  color: var(--hp-gray-400);
  line-height: 1.7;
  margin-bottom: var(--hp-sp-lg);
}

.hp-base-social {
  display: flex;
  gap: var(--hp-sp-sm);
}

.hp-base-social a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--hp-rd-md);
  color: var(--hp-gray-400);
  font-size: 0.875rem;
  transition: all var(--hp-anim-fast);
}

.hp-base-social a:hover {
  background: var(--hp-primary);
  color: var(--hp-white);
}

.hp-base h4{
  color: var(--hp-white);
  font-size: 0.9375rem;
  margin-bottom: var(--hp-sp-lg);
}

.hp-base-links li{
  margin-bottom: var(--hp-sp-sm);
}

.hp-base-links a{
  font-size: 0.875rem;
  color: var(--hp-gray-400);
  transition: all var(--hp-anim-fast);
}

.hp-base-links a:hover {
  color: var(--hp-accent-light);
  padding-left: 0.25rem;
}

.hp-base-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--hp-sp-sm);
  margin-bottom: var(--hp-sp-md);
  font-size: 0.875rem;
}

.hp-base-contact-icon{
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hp-accent);
}

.hp-base-contact a {
  color: var(--hp-gray-400);
}

.hp-base-contact a:hover {
  color: var(--hp-accent-light);
}

.hp-base-notice{
  padding: var(--hp-sp-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-base-notice p {
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.hp-base-company{
  padding: var(--hp-sp-xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-base-company-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--hp-sp-md) var(--hp-sp-2xl);
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
}

.hp-base-company-inner span {
  display: flex;
  align-items: center;
  gap: var(--hp-sp-xs);
}

.hp-base-bottom {
  padding: var(--hp-sp-lg) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-sp-md);
}

.hp-base-copyright{
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
}

.hp-base-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hp-sp-md) var(--hp-sp-lg);
}

.hp-base-legal a {
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
}

.hp-base-legal a:hover {
  color: var(--hp-accent-light);
}

@media (max-width: 992px){
  .hp-base-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px){
  .hp-base-grid {
    grid-template-columns: 1fr;
  }

  .hp-base-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hp-base-legal {
    justify-content: center;
  }

  .hp-base-company-inner {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Legal Pages --- */
.hp-terms-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--hp-sp-3xl) var(--hp-box-padding);
}

.hp-terms-body h2 {
  font-size: 1.5rem;
  margin-top: var(--hp-sp-2xl);
  margin-bottom: var(--hp-sp-md);
  padding-bottom: var(--hp-sp-sm);
  border-bottom: 2px solid var(--hp-gray-200);
}

.hp-terms-body h3{
  font-size: 1.125rem;
  margin-top: var(--hp-sp-xl);
  margin-bottom: var(--hp-sp-sm);
}

.hp-terms-body p {
  margin-bottom: var(--hp-sp-md);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.hp-terms-body ul{
  margin-bottom: var(--hp-sp-md);
  padding-left: var(--hp-sp-xl);
}

.hp-terms-body ul li{
  list-style: disc;
  margin-bottom: var(--hp-sp-sm);
  font-size: 0.9375rem;
  color: var(--hp-gray-600);
  line-height: 1.7;
}

.hp-terms-body a {
  color: var(--hp-primary);
  text-decoration: underline;
}

.hp-terms-body .hp-revision-date{
  font-size: 0.8125rem;
  color: var(--hp-gray-500);
  font-style: italic;
  margin-bottom: var(--hp-sp-2xl);
}

/* --- Utility Classes --- */
.hp-align-center { text-align: center; }
.hp-align-start { text-align: left; }
.hp-align-end { text-align: right; }
.hp-tone-accent { color: var(--hp-accent) !important; }
.hp-tone-primary { color: var(--hp-primary) !important; }
.hp-tone-light { color: var(--hp-white) !important; }
.hp-mt-1{ margin-top: var(--hp-sp-md); }
.hp-mt-2 { margin-top: var(--hp-sp-xl); }
.hp-mt-3 { margin-top: var(--hp-sp-2xl); }
.hp-mb-1 { margin-bottom: var(--hp-sp-md); }
.hp-mb-2 { margin-bottom: var(--hp-sp-xl); }
.hp-mb-3{ margin-bottom: var(--hp-sp-2xl); }

@media (prefers-reduced-motion: no-preference) {
  .hp-offering-card,
  .hp-area-card,
  .hp-showcase-card,
  .hp-voice-card,
  .hp-pillar-card,
  .hp-suite-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  @keyframes fadeInUp{
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hp-offerings-grid .hp-offering-card:nth-child(1){ animation-delay: 0.1s; }
  .hp-offerings-grid .hp-offering-card:nth-child(2) { animation-delay: 0.2s; }
  .hp-offerings-grid .hp-offering-card:nth-child(3){ animation-delay: 0.3s; }
  .hp-offerings-grid .hp-offering-card:nth-child(4) { animation-delay: 0.4s; }
  .hp-offerings-grid .hp-offering-card:nth-child(5) { animation-delay: 0.5s; }
  .hp-offerings-grid .hp-offering-card:nth-child(6) { animation-delay: 0.6s; }

  .hp-areas-grid .hp-area-card:nth-child(1) { animation-delay: 0.1s; }
  .hp-areas-grid .hp-area-card:nth-child(2){ animation-delay: 0.15s; }
  .hp-areas-grid .hp-area-card:nth-child(3){ animation-delay: 0.2s; }
  .hp-areas-grid .hp-area-card:nth-child(4) { animation-delay: 0.25s; }
  .hp-areas-grid .hp-area-card:nth-child(5) { animation-delay: 0.3s; }

  .hp-suites-grid .hp-suite-card:nth-child(1){ animation-delay: 0.1s; }
  .hp-suites-grid .hp-suite-card:nth-child(2) { animation-delay: 0.2s; }
  .hp-suites-grid .hp-suite-card:nth-child(3) { animation-delay: 0.3s; }
}



/* FAQ styles */
.hp-queries-a{max-height:0;overflow:hidden;transition:max-height .3s ease}.hp-queries-item.active .hp-queries-a{max-height:500px}.hp-queries-item.active .hp-queries-icon{transform:rotate(45deg)}


/* === VISUAL IDENTITY OVERRIDES === */

/* ── Grand Entrance Layout ── */

/* Header: transparent overlay */
.hp-banner {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 100 !important;
}
.hp-banner-wrap {
  padding: 1.5rem 2rem !important;
}
.hp-crest, .hp-crest-mark {
  color: #fff !important;
}
.hp-crest-mark svg rect:first-child {
  fill: transparent !important;
}
.hp-crest-mark svg rect:not(:first-child) {
  stroke: #d4a853 !important;
}
.hp-crest-mark svg path, .hp-crest-mark svg circle, .hp-crest-mark svg line {
  fill: #d4a853 !important;
  stroke: #d4a853 !important;
}
.hp-menu-anchor {
  color: rgba(255,255,255,0.9) !important;
}
.hp-menu-anchor:hover {
  color: #fff !important;
}
.hp-menu-action {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}

/* Hero: full viewport, dark overlay, centered white text */
.hp-marquee {
  min-height: 100vh !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-size: cover !important;
  background-position: center !important;
  padding-top: 6rem !important;
}
.hp-marquee::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%) !important;
  z-index: 1 !important;
}
.hp-marquee-body {
  position: relative !important;
  z-index: 2 !important;
  color: #fff !important;
  text-align: center !important;
}
.hp-marquee-layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.hp-marquee-tag {
  display: none !important;
}

/* Cards: gold top border, light shadow */
.hp-suite-card, .hp-offering-card, .hp-pillar-card, .hp-voice-card {
  border-radius: 8px !important;
  border-top: 3px solid #d4a853 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.hp-suite-card:hover, .hp-offering-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

/* Buttons: uppercase, outlined, gold */
.hp-act {
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}
.hp-act-main {
  background: transparent !important;
  border: 2px solid #d4a853 !important;
  color: #d4a853 !important;
}
.hp-act-main:hover {
  background: #d4a853 !important;
  color: #fff !important;
}
.hp-act-alt {
  border: 2px solid rgba(0,0,0,0.2) !important;
  background: transparent !important;
}

/* Page hero: taller */
.hp-page-intro {
  padding: 8rem 0 4rem !important;
}

/* Footer: dark, gold accents */
.hp-base {
  background: #1a1a1a !important;
}
.hp-base a {
  color: #d4a853 !important;
}
.hp-base-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Sections */
.hp-zone {
  padding: 5rem 0 !important;
}

