:root {
  --alpine-pine: #263C35;
  --glacier-blue: #7E9EAD;
  --swiss-clay: #A66A50;
  --limestone: #D8D2C5;
  --snow-cream: #F4F1E8;
  --alpine-gold: #B59A62;
  --charcoal: #303432;
  --deep-berry: #684A50;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --hero-heading: clamp(46px, 5vw, 58px);
  --section-heading: clamp(30px, 4vw, 38px);
  --card-heading: clamp(20px, 2.5vw, 24px);
  --body-text: clamp(15px, 1.5vw, 17px);
  --nav-text: 14px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--snow-cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--alpine-pine);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* Typography Classes */
.label-caps {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--swiss-clay);
}

.intro-text {
  font-size: var(--body-text);
  font-weight: 300;
  max-width: 600px;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 1px solid var(--alpine-pine);
  background: transparent;
  color: var(--alpine-pine);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  background: var(--alpine-pine);
  color: var(--snow-cream);
}

.btn-primary {
  background: var(--alpine-pine);
  color: var(--snow-cream);
}

.btn-primary:hover {
  background: var(--swiss-clay);
  border-color: var(--swiss-clay);
}

.link-arrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--alpine-pine);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.link-arrow:hover {
  color: var(--swiss-clay);
  border-bottom-color: var(--swiss-clay);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, border-bottom 0.4s ease;
}

header.transparent {
  background-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.solid {
  background-color: var(--limestone);
  border-bottom: 1px solid rgba(38, 60, 53, 0.1);
}

header.transparent * {
  color: var(--snow-cream);
}

header.solid * {
  color: var(--alpine-pine);
}

.micro-strip {
  display: flex;
  justify-content: space-between;
  padding: 8px 4%;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

header.solid .micro-strip {
  border-bottom: 1px solid rgba(38, 60, 53, 0.1);
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4%;
}

.brand-area {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
}

.brand-desc {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: var(--nav-text);
  font-weight: 500;
}

header.solid .main-nav a:hover, header.solid .header-enquire:hover {
  color: var(--swiss-clay);
}

.header-enquire {
  font-size: var(--nav-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(38, 60, 53, 0.4) 0%, rgba(0,0,0,0) 50%);
  z-index: 2;
}

.hero-panel {
  position: absolute;
  bottom: 8%;
  left: 4%;
  width: 90%;
  max-width: 500px;
  background-color: rgba(244, 241, 232, 0.95);
  padding: 40px;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.hero-panel .label-caps {
  color: var(--glacier-blue);
  margin-bottom: 16px;
  display: block;
}

.hero-panel h1 {
  font-size: var(--hero-heading);
  margin-bottom: 24px;
}

.hero-panel p {
  font-size: var(--body-text);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Standard Section */
.section {
  padding: 100px 4%;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: var(--section-heading);
  margin-bottom: 16px;
}

/* Accommodation Masonry */
.accomm-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.accomm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  group: item;
}

.accomm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  transition: transform 0.7s ease;
}

.accomm-card:hover .card-img-wrap img {
  transform: scale(1.03);
}

.accomm-content {
  padding-right: 20px;
}

.accomm-num {
  font-family: var(--font-serif);
  color: var(--glacier-blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.accomm-card h3 {
  font-size: var(--card-heading);
  margin-bottom: 12px;
}

.accomm-card p {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.accomm-features {
  margin-bottom: 24px;
}

.accomm-features li {
  font-size: 14px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
  color: #555;
}

.accomm-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--alpine-gold);
  font-weight: bold;
}

/* Specific Masonry Placements */
.card-large { grid-column: span 7; }
.card-large .card-img-wrap { height: 600px; }

.card-small { grid-column: span 5; margin-top: 100px; }
.card-small .card-img-wrap { height: 400px; }

.card-wide { grid-column: span 12; display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: center; margin-top: 40px;}
.card-wide .card-img-wrap { height: 500px; margin-bottom: 0;}

.card-tall { grid-column: 4 / span 6; margin-top: 60px; text-align: center; }
.card-tall .card-img-wrap { height: 700px; }
.card-tall .accomm-content { padding-right: 0; padding-top: 24px; display: flex; flex-direction: column; align-items: center; }
.card-tall p { max-width: 400px; }
.card-tall .accomm-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.card-tall .accomm-features li { padding-left: 0; }
.card-tall .accomm-features li::before { display: none; }

/* Spa Section */
.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.spa-item {
  background: #fff;
  padding: 24px;
  border: 1px solid var(--limestone);
}

.spa-item img {
  height: 250px;
  margin-bottom: 20px;
}

.spa-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.spa-item p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* Wellness Journey */
.journey-container {
  background-color: var(--limestone);
  padding: 80px 4%;
}

.journey-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.journey-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 0;
  color: var(--swiss-clay);
  font-size: 20px;
}

.journey-step:last-child::after {
  display: none;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--alpine-pine);
  margin-bottom: 16px;
}

.step-desc {
  font-size: 14px;
}

/* Experience Blocks */
.exp-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-block {
  text-align: center;
}

.exp-block .card-img-wrap {
  height: 400px;
  margin-bottom: 24px;
}

.exp-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* Dining */
.dining-section {
  background-color: var(--alpine-pine);
  color: var(--snow-cream);
  padding: 100px 4%;
  text-align: center;
}

.dining-section h2 {
  color: var(--alpine-gold);
}

.dining-content {
  max-width: 700px;
  margin: 0 auto;
}

.dining-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin: 40px 0;
}

/* Location */
.location-wrap {
  position: relative;
  height: 600px;
}

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

.location-box {
  position: absolute;
  bottom: 0;
  right: 10%;
  background: var(--snow-cream);
  padding: 40px;
  width: 400px;
}

/* Detail Pages (Rooms/Suites) */
.detail-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-hero img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

.detail-hero::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(38, 60, 53, 0.3); z-index: 2;
}

.detail-title-box {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--snow-cream);
}

.detail-title-box h1 {
  color: var(--snow-cream);
  font-size: clamp(40px, 4vw, 56px);
}

.detail-content {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 4%;
}

.detail-text-block {
  margin-bottom: 60px;
}

.detail-text-block h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

/* Highlights Editorial Grid */
.highlights-section {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 4%;
}

.hl-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.hl-card {
  background: var(--snow-cream);
  border: 1px solid var(--limestone);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hl-card .hl-img {
  position: relative;
  overflow: hidden;
}

.hl-card .hl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hl-card:hover .hl-img img {
  transform: scale(1.03);
}

.hl-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hl-content .label-caps {
  margin-bottom: 12px;
  color: var(--glacier-blue);
}

.hl-content h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--alpine-pine);
}

.hl-content p {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--charcoal);
  line-height: 1.6;
}

.hl-content .link-arrow {
  margin-top: auto;
  align-self: flex-start;
}

.hl-1 { grid-column: span 12; flex-direction: row; }
.hl-1 .hl-img { flex: 1; height: 500px; }
.hl-1 .hl-content { flex: 1; }

.hl-2 { grid-column: span 12; flex-direction: row-reverse; }
.hl-2 .hl-img { flex: 1; height: 500px; }
.hl-2 .hl-content { flex: 1; }

.hl-3, .hl-4 { grid-column: span 6; }
.hl-3 .hl-img, .hl-4 .hl-img { height: 350px; }

.hl-5 { grid-column: span 12; flex-direction: row; }
.hl-5 .hl-img { flex: 1; height: 500px; }
.hl-5 .hl-content { flex: 1; }

.hl-6 { grid-column: span 12; }
.hl-6 .hl-img { height: 600px; }
.hl-6 .hl-content { align-items: center; text-align: center; padding: 60px 40px; }
.hl-6 .hl-content p { max-width: 600px; }
.hl-6 .hl-content .link-arrow { align-self: center; margin-top: 0; }

@media (max-width: 992px) {
  .hl-1, .hl-2, .hl-5 { flex-direction: column; }
  .hl-1 .hl-img, .hl-2 .hl-img, .hl-5 .hl-img { height: 350px; flex: none; }
  .hl-6 .hl-img { height: 400px; }
}

@media (max-width: 768px) {
  .hl-3, .hl-4 { grid-column: span 12; }
  .hl-3 .hl-img, .hl-4 .hl-img { height: 300px; }
  .hl-1 .hl-img, .hl-2 .hl-img, .hl-5 .hl-img, .hl-6 .hl-img { height: 300px; }
  .hl-content { padding: 32px 24px; }
}

/* Highlight Details Sections */
.highlight-detail-container {
  max-width: 1200px;
  margin: 0 auto 100px;
}

.highlight-detail-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 4%;
  border-top: 1px solid var(--limestone);
}

.highlight-detail-section:first-child {
  border-top: none;
}

.highlight-detail-section:nth-child(even) {
  flex-direction: row-reverse;
}

.hd-image {
  flex: 1;
}

.hd-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hd-content {
  flex: 1;
}

.hd-content .label-caps {
  color: var(--glacier-blue);
  margin-bottom: 12px;
  display: block;
}

.hd-content h2 {
  font-size: var(--section-heading);
  margin-bottom: 24px;
}

.hd-content p {
  font-size: var(--body-text);
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hd-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-features li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.hd-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--alpine-gold);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  top: -2px;
}

@media (max-width: 992px) {
  .highlight-detail-section,
  .highlight-detail-section:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    padding: 60px 4%;
  }
  .hd-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hd-image img {
    height: 300px;
  }
}


.related-accomm {
  background: var(--limestone);
  padding: 80px 4%;
}

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

/* Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--alpine-pine);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--glacier-blue);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--alpine-pine);
  color: var(--snow-cream);
  padding: 80px 4% 40px;
}

.footer-statement {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 80px;
  max-width: 800px;
  color: var(--snow-cream);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
  padding-top: 40px;
}

.footer-col h4 {
  color: var(--alpine-gold);
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--limestone);
}

.footer-col ul li a:hover {
  color: var(--swiss-clay);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
  padding-top: 24px;
  font-size: 12px;
  color: var(--limestone);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--charcoal);
  color: var(--snow-cream);
  padding: 24px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  max-width: 600px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  background: transparent;
  border: 1px solid var(--limestone);
  color: var(--limestone);
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn:hover {
  background: var(--limestone);
  color: var(--charcoal);
}

.cookie-btn.accept {
  background: var(--alpine-gold);
  border-color: var(--alpine-gold);
  color: var(--charcoal);
}

/* Responsive */
@media (max-width: 1024px) {
  .card-wide { grid-template-columns: 1fr; }
  .card-wide .card-img-wrap { height: 400px; }
  .spa-grid, .exp-blocks, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-timeline { flex-direction: column; gap: 40px; }
  .journey-step::after { content: '↓'; right: auto; bottom: -30px; left: 50%; transform: translateX(-50%); top: auto; }
}

@media (max-width: 768px) {
  .micro-strip { display: none; }
  .main-nav, .header-enquire { display: none; }
  .mobile-toggle { display: block; color: inherit; }
  
  .hero-panel { bottom: 5%; left: 5%; width: 90%; padding: 24px; }
  
  .accomm-editorial { display: flex; flex-direction: column; gap: 40px; }
  .card-large, .card-small, .card-wide, .card-tall { margin-top: 0; }
  .card-large .card-img-wrap, .card-tall .card-img-wrap, .card-small .card-img-wrap { height: 350px; }
  
  .spa-grid, .exp-blocks, .related-grid { grid-template-columns: 1fr; }
  .location-box { position: relative; width: 100%; right: 0; }
  .location-wrap { height: auto; }
  .location-img { height: 300px; }
  
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  .cookie-banner { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-actions { flex-wrap: wrap; justify-content: center; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--snow-cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a { font-size: 24px; font-family: var(--font-serif); color: var(--alpine-pine); }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 120px auto 80px; padding: 0 4%; }
.legal-content h1 { margin-bottom: 40px; }
.legal-content h2 { font-size: 24px; margin: 32px 0 16px; }
.legal-content p { margin-bottom: 16px; }