@font-face {
  font-family: 'WindSong';
  src: url('/fonts/windsong-v13-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond — normal 400 & 500 share the same files */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-400italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-400italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* DM Sans — 300–600 share the same variable font files */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #ede8e1;
  --card: #fdfaf6;
  --card-alt: #f5f0e8;
  --text: #1a1612;
  --text-secondary: #3d3530;
  --muted: rgba(26, 22, 18, 0.68);
  --border: rgba(26, 22, 18, 0.09);
  --border-strong: rgba(26, 22, 18, 0.16);
  --accent: #b5813a;
  --accent-light: rgba(181, 129, 58, 0.12);
  --accent-pale: rgba(181, 129, 58, 0.07);
  --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.06);
  --shadow: 0 4px 28px rgba(26, 22, 18, 0.10), 0 1px 4px rgba(26, 22, 18, 0.05);
  --shadow-lg: 0 16px 56px rgba(26, 22, 18, 0.13), 0 4px 16px rgba(26, 22, 18, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1100px;
  --title-font: 'WindSong', serif;
  --display-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html[data-theme="dark"] {
  --bg: #0d0b07;
  --card: #1c1a13;
  --card-alt: #231f17;
  --text: rgba(255, 248, 232, 0.93);
  --text-secondary: rgba(255, 248, 232, 0.78);
  --muted: rgba(255, 248, 232, 0.62);
  --border: rgba(255, 248, 232, 0.09);
  --border-strong: rgba(255, 248, 232, 0.16);
  --accent: #c9953f;
  --accent-light: rgba(201, 149, 63, 0.14);
  --accent-pale: rgba(201, 149, 63, 0.07);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.48), 0 1px 4px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.58), 0 4px 16px rgba(0, 0, 0, 0.32);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 72px;
}

header {
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  text-align: center;
  padding: 28px;
  isolation: isolate;
  background: #1a1612;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02) brightness(0.92);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(8,6,3,0.45) 45%, rgba(8,6,3,0.74) 78%, rgba(8,6,3,0.86) 100%);
  z-index: -1;
}

.hero > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100px);
}

.hero-title {
  margin: 0 0 8px;
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 248, 232, 0.97);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-kicker {
  margin: 0 0 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 248, 232, 1);
  font-family: var(--body-font);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.hero-sub {
  margin-top: auto;
  margin-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.35;
  color: rgba(255, 248, 232, 1);
  transform: translateY(140px);
  white-space: normal;
  font-family: var(--display-font);
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

@media (max-width: 950px) {
  .hero { min-height: 340px; }
  .hero-center { transform: translateY(70px); }
  .hero-sub { transform: translateY(90px); }
}

@media (max-width: 600px) {
  .hero { min-height: 240px; padding: 6px; }
  .hero img { object-position: center 72%; }
  .hero-center { transform: translateY(50px); }
  .hero-sub { transform: translateY(65px); margin-bottom: 18px; }
}

/* ── Topbar ── */
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1040px;
  width: calc(100vw - 40px);
  margin: 24px auto 20px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Left group: Map + Airbnb + Booking */
.topbar > .cta:first-child {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* Right group: Enquire — stands alone */
.topbar > .cta:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.addr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 13px;
}

.addr svg { flex: 0 0 auto; margin-top: 2px; opacity: 0.65; }

.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 900px) {
  .topbar { flex-direction: column; align-items: flex-start; }
  .cta { width: 100%; justify-content: flex-start; }
  .addr { max-width: 100%; }
}

/* ── Card ── */
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info { padding: 24px 24px 28px; }

.info h2 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.info h3 {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: .01em;
  font-size: 18px;
  color: var(--text);
}

/* ── Buttons ── */
.btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--body-font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.10);
}

.btn.small { padding: 8px 14px; font-size: 12.5px; }
.btn svg { opacity: 0.78; }

/* ── Pill ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-pale);
  white-space: nowrap;
  font-size: 13px;
}

/* ── Note ── */
.note {
  margin-top: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(181, 129, 58, 0.18);
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ── Footer ── */
.footerbar {
  margin-top: 24px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.footertext { white-space: nowrap; }

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socialIcon {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color var(--transition);
}

.socialIcon:hover { color: var(--accent); }

.p4r-link {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  font-size: 12px;
  text-decoration: none;
}


/* ── Theme toggle ── */
.footer-right { display: flex; align-items: center; }

.theme-toggle-link {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--muted);
  padding: 0;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.theme-toggle-link:hover { text-decoration: underline; }

.toggle-dark { display: none; }
html[data-theme="dark"] .toggle-light { display: none; }
html[data-theme="dark"] .toggle-dark { display: inline; }

.toggle-icon { display: none; }
@media (max-width: 640px) {
  .toggle-text { display: none; }
  .toggle-icon { display: inline-flex; align-items: center; line-height: 0; transform: translateY(2px); }
}
@media (max-width: 480px) {
  .p4r-credit { display: none; }
}

/* ── Icon lists ── */
.ul-icons { list-style: none; padding-left: 0; }
.ul-icons li { display: flex; gap: 12px; align-items: flex-start; }
.ul-icons li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.ul-amenities li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%23b5813a" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

html[data-theme="dark"] .ul-amenities li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%23c9953f" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* ── Dark mode overrides ── */
html[data-theme="dark"] .card { background: var(--card); border-color: var(--border); box-shadow: var(--shadow); }
html[data-theme="dark"] .addr { color: var(--muted); }

html[data-theme="dark"] .btn {
  background: rgba(255, 248, 232, 0.05);
  border-color: rgba(255, 248, 232, 0.13);
  color: rgba(255, 248, 232, 0.90);
}

html[data-theme="dark"] .btn:hover {
  background: rgba(255, 248, 232, 0.09);
  border-color: var(--accent);
}

html[data-theme="dark"] .pill {
  background: var(--accent-pale);
  border-color: rgba(201, 149, 63, 0.16);
  color: rgba(255, 248, 232, 0.78);
}

html[data-theme="dark"] .note {
  background: var(--accent-pale);
  border-color: rgba(201, 149, 63, 0.16);
}

html[data-theme="dark"] .footerbar { color: var(--muted); }
html[data-theme="dark"] .theme-toggle-link { color: var(--muted); }
html[data-theme="dark"] .socialIcon { color: var(--muted); }
html[data-theme="dark"] .socialIcon:hover { color: var(--accent); }

