

:root {
  --purple:        #6B2D8B;
  --purple-dark:   #4A1A65;
  --purple-deep:   #2E0E40;
  --purple-light:  #9B5EC7;
  --purple-pale:   #F3EBF9;
  --gold:          #D4A017;
  --gold-light:    #F5C842;
  --sand:          #FAF6EE;
  --charcoal:      #1E1A22;
  --grey-mid:      #5A5460;
  --grey-light:    #EDE8F2;
  --white:         #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Sans 3', system-ui, sans-serif;

  --space-xs:  clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1.25rem);
  --space-md:  clamp(1.25rem, 3vw, 2rem);
  --space-lg:  clamp(2rem, 5vw, 3.5rem);
  --space-xl:  clamp(3rem, 7vw, 5.5rem);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(46,14,64,0.12);
  --transition: 0.22s ease;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: var(--purple-light); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

ul { list-style: none; }


.container {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}


h1, h2, h3 { font-family: var(--ff-display); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw + 0.5rem, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.4rem); font-weight: 700; }

.section-title {
  text-align: center;
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
}
.section-sub {
  text-align: center;
  color: var(--grey-mid);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--space-xs);
}
.label-light { color: var(--gold-light); }

.text-link {
  font-weight: 600;
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}
.text-link:hover { color: var(--purple-light); }


.btn {
  display: inline-block;
  padding: 0.75em 1.8em;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--purple-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
  font-weight: 700;
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--gold-light);
  color: var(--purple-deep);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple-deep);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--gold-light); }

.logo-mark {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav ul[data-pn-nav] {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

nav ul[data-pn-nav] a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.25em 0.1em;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

nav ul[data-pn-nav] a:hover,
nav ul[data-pn-nav] a:focus-visible {
  color: var(--white);
  border-bottom-color: var(--gold);
}

nav ul[data-pn-nav] a[aria-current="page"] {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.cta-link {
  background: var(--gold);
  color: var(--purple-deep) !important;
  padding: 0.4em 1.1em !important;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.cta-link:hover, .cta-link:focus-visible {
  background: var(--gold-light) !important;
  border-bottom: none !important;
}


.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,14,64,0.92) 0%,
    rgba(46,14,64,0.55) 50%,
    rgba(46,14,64,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: var(--space-xl) clamp(1rem, 4vw, 2.5rem);
  padding-top: var(--space-lg);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}

.hero-content h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(46,14,64,0.4);
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  max-width: 50ch;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.intro-band {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.intro-text h2 {
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
}

.intro-text p {
  color: var(--grey-mid);
  margin-bottom: var(--space-sm);
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}


.facilities {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}

.facility-card {
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 4px solid var(--purple-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

.facility-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.facility-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.facility-card h3 {
  color: var(--purple-dark);
  margin-bottom: var(--space-xs);
}

.facility-card p {
  color: var(--grey-mid);
  font-size: 0.97rem;
}


.food-feature {
  background: var(--purple-deep);
  padding: var(--space-xl) 0;
}

.food-feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .food-feature-inner { grid-template-columns: 1fr 1fr; }
}

.food-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 3px solid var(--gold);
}

.food-text h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.food-text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-sm);
}


.stay {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: var(--purple);
  overflow: hidden;
}

.stay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stay-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  max-width: 640px;
}

.stay-content h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.stay-content p {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-sm);
}

.inline-link-light {
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-light);
}
.inline-link-light:hover { color: var(--white); }


.location {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.location-text h2 {
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
}

.location-text p {
  color: var(--grey-mid);
  margin-bottom: var(--space-sm);
}

.detail-list {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 1rem;
  color: var(--charcoal);
}

.detail-icon {
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.detail-list a {
  color: var(--purple);
  font-weight: 600;
}
.detail-list a:hover { color: var(--purple-light); }

.location-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}


.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.cta-banner-inner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner-inner p {
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}


.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

.site-logo--footer .logo-text { color: var(--white); }
.site-logo--footer .logo-mark { color: var(--gold); }
.site-logo--footer:hover .logo-text { color: var(--gold-light); }

.footer-tagline {
  margin-top: 0.4em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.4em;
}
.footer-contact a {
  color: var(--gold);
  font-weight: 600;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}




.about-hero {
  position: relative;
  min-height: clamp(380px, 60vh, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,14,64,0.95) 0%,
    rgba(46,14,64,0.6) 45%,
    rgba(46,14,64,0.2) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--space-xl);
  padding-top: var(--space-lg);
}

.about-hero-content h1 {
  color: var(--white);
  max-width: 20ch;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(46,14,64,0.5);
}

.about-hero-content .hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
  max-width: 52ch;
}


.about-story {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; }
}

.about-story-text h2 {
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
}

.about-story-text p {
  color: var(--grey-mid);
  margin-bottom: var(--space-sm);
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--purple-light);
}


.about-landmark {
  background: var(--purple-deep);
  padding: var(--space-xl) 0;
}

.about-landmark-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-landmark-inner { grid-template-columns: 1fr 1fr; }
}

.about-landmark-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  border: 3px solid var(--gold);
}

.about-landmark-text h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about-landmark-text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-sm);
}


.about-what {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-md);
}

.about-offer-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  border: 1px solid var(--grey-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-offer-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(46,14,64,0.18);
}

.about-offer-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.about-offer-body {
  padding: var(--space-sm) var(--space-md);
}

.about-offer-body h3 {
  color: var(--purple-dark);
  margin-bottom: var(--space-xs);
}

.about-offer-body p {
  color: var(--grey-mid);
  font-size: 0.97rem;
}


.about-gulf {
  position: relative;
  background: var(--purple);
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.about-gulf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-gulf-overlay { display: none; }

.about-gulf-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.about-gulf-content h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about-gulf-content p {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-sm);
}

.about-gulf-content .btn-white {
  margin-top: var(--space-xs);
}


.about-values {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-card);
}

.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple-pale);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.value-card h3 {
  color: var(--purple-dark);
  margin-bottom: var(--space-xs);
}

.value-card p {
  color: var(--grey-mid);
  font-size: 0.97rem;
}



.contact-hero {
  position: relative;
  min-height: clamp(320px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,14,64,0.93) 0%,
    rgba(46,14,64,0.55) 55%,
    rgba(46,14,64,0.2) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.contact-hero-content h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(46,14,64,0.4);
}

.contact-hero-content .hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
  max-width: 50ch;
}

.contact-main {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-details-col h2 {
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
}

.contact-details-col > p {
  color: var(--grey-mid);
  margin-bottom: var(--space-md);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  width: 2rem;
  text-align: center;
}

.contact-detail-list div {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.contact-detail-list strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.contact-detail-list a {
  color: var(--purple);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-detail-list a:hover { color: var(--purple-light); }

.contact-detail-list span {
  color: var(--charcoal);
  font-size: 0.97rem;
  line-height: 1.6;
}

.contact-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.btn-ghost-purple {
  display: inline-block;
  padding: 0.75em 1.8em;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-ghost-purple:hover,
.btn-ghost-purple:focus-visible {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-image-col img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--purple-light);
}

.enquiry-types {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}

.enquiry-card {
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 4px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}

.enquiry-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.enquiry-card h3 {
  color: var(--purple-dark);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-xs);
}

.enquiry-card p {
  color: var(--grey-mid);
  font-size: 0.97rem;
}

.enquiry-card a {
  color: var(--purple);
  font-weight: 600;
}
.enquiry-card a:hover { color: var(--purple-light); }

.map-band {
  background: var(--purple-deep);
  padding: var(--space-xl) 0;
}

.map-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .map-band-inner { grid-template-columns: 1fr 1fr; }
}

.map-text .label {
  color: var(--gold-light);
}

.map-text h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.map-text > p {
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-md);
}

.map-text .detail-list li {
  color: rgba(255,255,255,0.88);
}

.map-text .detail-list a {
  color: var(--gold);
  font-weight: 600;
}
.map-text .detail-list a:hover { color: var(--gold-light); }

.map-image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 3px solid var(--gold);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}

/* pn-article-styles:begin */
.pn-article,
.pn-article *,
.pn-article *::before,
.pn-article *::after {
  box-sizing: border-box;
}

.pn-article {
  width: min(100%, 740px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-top: calc(64px + var(--space-lg));
  padding-bottom: var(--space-xl);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.pn-article__head {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--gold);
}

.pn-article__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--purple-dark);
  margin-bottom: var(--space-sm);
  overflow-wrap: break-word;
}

.pn-article__byline {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1em;
  align-items: center;
}

.pn-article__byline a {
  color: var(--purple);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}

.pn-article__byline a:hover {
  color: var(--purple-light);
}

.pn-article__hero {
  margin-inline: calc(-1 * clamp(1rem, 4vw, 2.5rem));
  margin-bottom: var(--space-lg);
  position: relative;
  background: var(--purple-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pn-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.pn-article__hero .photo-credit {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(46, 14, 64, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.25em 0.6em;
  border-top-left-radius: var(--radius-sm);
}

.pn-article__body {
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  overflow-wrap: break-word;
}

.pn-article__body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--purple-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  overflow-wrap: break-word;
}

.pn-article__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.5vw + 0.4rem, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--purple);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  overflow-wrap: break-word;
}

.pn-article__body p {
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.pn-article__body a {
  color: var(--purple);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color var(--transition);
}

.pn-article__body a:hover,
.pn-article__body a:focus-visible {
  color: var(--purple-light);
}

.pn-article__body a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.pn-article__body ul,
.pn-article__body ol {
  margin-bottom: var(--space-sm);
  padding-left: 1.5em;
}

.pn-article__body ul {
  list-style: disc;
}

.pn-article__body ol {
  list-style: decimal;
}

.pn-article__body li {
  margin-bottom: 0.4em;
  color: var(--charcoal);
  line-height: 1.7;
}

.pn-article__body figure {
  margin: var(--space-lg) 0;
  padding: 0;
}

.pn-article__body figure figcaption {
  margin-top: var(--space-xs);
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.pn-article__body img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: initial;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-inline: auto;
}

.pn-article__body blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--purple-pale);
  border-left: 5px solid var(--purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--purple-dark);
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.25rem);
  font-style: italic;
  line-height: 1.6;
}

.pn-article__body blockquote p {
  margin-bottom: 0;
  color: inherit;
}

.pn-article__body svg {
  display: block;
  max-width: 100%;
  height: auto;
  fill: currentColor;
  color: var(--purple);
}
/* pn-article-styles:end */
