/* ==========================================================================
   Black Sand Hotel — main.css
   Endursmíði á blacksandhotel.is (Framer) sem hreint HTML/CSS.
   Hvalreki Studio 2026. Ein CSS-skrá, engin inline styles.
   ========================================================================== */

:root {
  --dark: #11120d;
  --dark-2: #292a25;
  --dark-3: #191a15;
  --line-dark: #41413d;
  --light: #e9e9e6;
  --line-light: #cfcfca;
  --grey: #b8b8b6;
  --grey-2: #8a8a86;
  --grey-dark: #6e6e6a;
  --sage: #7c8b7a;
  --sage-2: #99a48d;
  --white: #ffffff;
  --serif: "DM Serif Text", "Times New Roman", serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: "DM Serif Text"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/dmseriftext-400.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: "DM Serif Text"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/dmseriftext-400-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 Serif Text"; font-style: italic; font-weight: 400; font-display: swap;
  src: url(../fonts/dmseriftext-400i.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: "DM Serif Text"; font-style: italic; font-weight: 400; font-display: swap;
  src: url(../fonts/dmseriftext-400i-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: 100 900; font-display: swap;
  src: url(../fonts/dmsans-var.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: "DM Sans"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url(../fonts/dmsans-var-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 Serif Display"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/dmserifdisplay-400.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: "DM Serif Display"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/dmserifdisplay-400-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;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; font-weight: 400; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 1100px) { .container { padding: 0 40px; } }
@media (max-width: 640px)  { .container { padding: 0 20px; } }

/* Small uppercase utility (nav, labels, buttons) */
.upper { text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 500; }

.link-underline {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px;
}
.link-underline:hover { opacity: 0.7; }

/* ==========================================================================
   Notice bar
   ========================================================================== */
.notice {
  background: var(--dark-3);
  border-bottom: 1px solid var(--line-dark);
  padding: 11px 48px 11px 24px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
  font-size: 14px; color: var(--light);
}
.notice[hidden] { display: none; }
.notice svg { flex: 0 0 auto; }
.notice-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--white); padding: 8px; line-height: 0;
}
.notice-close:hover { opacity: 0.7; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 18, 13, 0.92);
  backdrop-filter: blur(8px);
  padding: 18px 0 0;
}
.header-logo { display: flex; justify-content: center; }
.header-logo img { width: 300px; height: auto; }
.site-nav {
  display: flex; justify-content: center; align-items: center; gap: 64px;
  padding: 20px 0 16px;
}
.site-nav > a, .nav-drop > button {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 500;
  color: var(--white); background: none; border: 0; padding: 0;
  display: inline-flex; align-items: center; gap: 7px;
}
.site-nav > a:hover, .nav-drop > button:hover { opacity: 0.7; }
.nav-drop { position: relative; }
.nav-drop svg { transition: transform 0.2s; }
.nav-drop.open svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-30%);
  min-width: 196px;
  background: var(--dark-3);
  border: 1px solid rgba(65, 65, 61, 0.6);
  padding: 22px 24px 24px;
  display: none;
}
.nav-drop.open .nav-menu, .nav-drop:hover .nav-menu { display: block; }
.nav-menu-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-2); margin-bottom: 16px; white-space: nowrap;
}
.nav-menu a {
  display: block; padding: 6px 0;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 500;
  white-space: nowrap;
}
.nav-menu a:hover { opacity: 0.7; }
.nav-toggle { display: none; background: none; border: 0; line-height: 0; }

@media (max-width: 900px) {
  .site-header { padding: 14px 0; background: var(--dark); }
  .header-logo img { width: 220px; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
  .site-nav {
    display: none; flex-direction: column; gap: 24px; padding: 32px 0;
    border-top: 1px solid var(--line-dark); margin-top: 14px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-menu { position: static; transform: none; display: none; border: 0; padding: 12px 0 0; background: none; text-align: center; }
  .nav-menu-label { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgb(17,18,13) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
  padding-top: 28px; padding-bottom: 40px;
}
.hero-copy { max-width: 504px; padding-top: 26px; }
.pill {
  display: inline-block; padding: 9px 18px; border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-copy h1 {
  font-family: var(--serif); font-size: 72px; line-height: 72px; letter-spacing: -0.02em;
  margin: 20px 0 22px;
}
.hero-copy p { font-size: 20px; line-height: 28px; color: var(--grey); max-width: 504px; }
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.btn {
  display: inline-block; padding: 12px 24px; white-space: nowrap;
  font-size: 15px; line-height: 16px; letter-spacing: 0; text-transform: uppercase; font-weight: 600;
  border: 1px solid transparent; border-radius: 6px; text-align: center;
}
.btn-solid { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-solid:hover { background: var(--sage-2); border-color: var(--sage-2); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); }

/* Hero room carousel */
.hero-rooms { width: 389px; flex: 0 0 auto; }
.hero-room { display: none; background: var(--dark); padding: 31px; }
.hero-room.active { display: block; }
.hero-room img { width: 100%; height: 262px; object-fit: cover; }
.hero-room-arrows { display: flex; gap: 18px; margin: 14px 0 18px; }
.hero-room-arrows button, .arrow-btn {
  background: none; border: 0; color: var(--white); padding: 0; line-height: 0;
}
.hero-room-arrows button:hover { opacity: 0.7; }
.hero-room h3 { font-family: var(--serif); font-size: 28px; line-height: 29px; margin-bottom: 10px; }
.room-bed { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 14px; }
.room-specs {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--light);
  margin-bottom: 18px;
}
.room-specs span { white-space: nowrap; }
.room-specs span { display: inline-flex; align-items: center; gap: 6px; }
.hero-nav {
  display: flex; gap: 10px; justify-content: center; margin-top: 10px;
}
.round-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: rgba(0,0,0,0.2);
  color: var(--white); display: inline-flex; align-items: center; justify-content: center;
}
.round-btn:hover { background: rgba(0,0,0,0.45); }

@media (max-width: 1100px) {
  .hero-copy h1 { font-size: 54px; }
  .hero-rooms { width: 300px; }
  .hero-room img { width: 100%; }
}
@media (max-width: 820px) {
  .hero-inner { flex-direction: column; align-items: flex-start; padding-top: 48px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .hero-rooms { width: 100%; max-width: 380px; align-self: center; }
}

/* ==========================================================================
   Booking bar (BookVisit widget)
   ========================================================================== */
.booking-bar {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--dark);
}
.booking-bar-inner { padding-top: 0; padding-bottom: 0; }
.booking-bar iframe {
  display: block; width: calc(100% - 86px); margin: 0 auto; height: 96px; border: 0;
}
@media (max-width: 900px) { .booking-bar iframe { height: 320px; } }

/* ==========================================================================
   Section strips (ABOUT US / BLOG rows)
   ========================================================================== */
.strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
}
.strip-light { padding: 31px 0; }
.strip-dark { border-bottom: 1px solid var(--line-dark); }
.strip-light { border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: var(--dark); }

/* ==========================================================================
   Choose Your Space (rooms slider)
   ========================================================================== */
.rooms-section { padding: 96px 0 88px; }
.rooms-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.rooms-head h2 { font-family: var(--serif); font-size: 48px; line-height: 48px; margin-top: 22px; }
.slider-arrows { display: flex; gap: 14px; }
.rooms-viewport { overflow: hidden; }
.rooms-track { display: flex; gap: 16px; transition: transform 0.5s ease; }
.room-card {
  flex: 0 0 calc(50% - 8px);
  border: 1px solid var(--line-dark);
}
.room-card img { width: 100%; aspect-ratio: 324 / 170; object-fit: cover; }
.room-card-body { padding: 32px; }
.room-card h3 { font-family: var(--serif); font-size: 40px; line-height: 40px; margin-bottom: 10px; }
.rooms-all { text-align: center; margin-top: 56px; }
@media (max-width: 820px) {
  .room-card { flex: 0 0 100%; }
  .rooms-head h2 { font-size: 36px; }
}

/* ==========================================================================
   Light sections
   ========================================================================== */
.light { background: var(--light); color: var(--dark); }
.south-section { padding: 80px 0; }
.south-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.south-copy { max-width: 540px; }
.stripes-sm { margin-bottom: 60px; }
.south-copy h2 { font-family: var(--serif); font-size: 48px; line-height: 48px; margin-bottom: 26px; }
.south-copy p { font-size: 16px; line-height: 1.6; color: var(--grey-dark); max-width: 460px; }
.south-grid img { width: 540px; height: 660px; object-fit: cover; }
@media (max-width: 900px) {
  .south-grid { flex-direction: column; }
  .south-grid img { width: 100%; height: auto; }
  .south-copy h2 { font-size: 36px; }
}

/* Blog */
.blog-section { padding-bottom: 110px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 56px; }
.blog-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.blog-date { font-size: 13px; color: var(--grey-dark); margin: 18px 0 8px; }
.blog-card h5 { font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.blog-card:hover h5 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   A Hotel Shaped by the Land
   ========================================================================== */
.land-section { padding: 60px 0 108px; text-align: center; }
.land-section h2 { font-family: var(--serif); font-size: 48px; line-height: 48px; margin-bottom: 26px; }
.land-section > .container > p {
  max-width: 640px; margin: 0 auto 34px; font-size: 16px; line-height: 1.65; color: var(--grey);
}
.land-map { margin: 70px auto 0; width: 630px; max-width: 100%; aspect-ratio: 1070 / 584; }
@media (max-width: 900px) { .land-section h2 { font-size: 36px; } }

/* Divider stripes */
.stripes { display: block; width: 100%; }

/* ==========================================================================
   CTA (full-bleed image)
   ========================================================================== */
.cta {
  position: relative; min-height: 724px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; overflow: hidden; gap: 26px;
}
.cta > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: brightness(0.65);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-family: var(--serif); font-size: 48px; line-height: 48px; }
@media (max-width: 900px) { .cta h2 { font-size: 38px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); padding-top: 90px; }
.footer-grid {
  display: flex; justify-content: space-between; gap: 60px; padding-bottom: 80px;
}
.footer-left { max-width: 320px; }
.footer-left img { width: 330px; margin-bottom: 44px; }
.footer-left h5 { font-family: var(--serif); font-size: 24px; margin-bottom: 24px; }
.newsletter input[type="email"] {
  width: 100%; height: 50px; padding: 0 16px;
  background: var(--dark-3); border: 1px solid var(--line-dark); color: var(--white);
  font-family: inherit; font-size: 14px;
}
.newsletter input[type="email"]::placeholder { color: var(--grey-2); }
.newsletter button {
  margin-top: 14px; padding: 14px 28px;
  background: transparent; border: 1px solid var(--line-dark); color: var(--white);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.newsletter button:hover { border-color: var(--white); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.footer-links {
  display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 44px 64px;
  align-content: start; padding-top: 8px;
}
.footer-links a { font-size: 15px; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-2);
  margin-bottom: 14px;
}
.footer-col > div + div { margin-top: 10px; }
.footer-addr { font-size: 15px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; gap: 20px;
  font-size: 14px; color: var(--grey);
}
.hitels { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); line-height: 1.3; }
.hitels b { display: block; font-family: var(--serif); font-size: 20px; letter-spacing: 0; text-transform: none; color: var(--grey); font-weight: 400; }
.cookie-link { font-size: 14px; color: var(--grey); background: none; border: 0; padding: 0; }
.cookie-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .footer-grid { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Undirsíður (v3)
   ========================================================================== */
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Texture page hero */
.page-hero { position: relative; overflow: hidden; text-align: center; padding: 130px 24px 150px; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.9; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--serif); font-size: 64px; line-height: 1.05; margin: 26px auto 0; max-width: 900px; }
.page-hero-sub { margin-top: 24px; color: var(--grey); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }
.page-hero .link-underline { display: inline-block; margin-top: 28px; }
@media (max-width: 700px) { .page-hero h1 { font-size: 40px; } .page-hero { padding: 80px 20px 90px; } }

.section-h2 { font-family: var(--serif); font-size: 48px; margin: 22px 0 56px; }

/* Room listing (/room) */
.room-listing { display: flex; gap: 56px; padding: 56px 0; border-top: 1px solid var(--line-dark); }
.room-listing:first-of-type { border-top: 0; }
.rl-media { position: relative; flex: 0 0 54%; }
.rl-img { display: none; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.rl-img.active { display: block; }
.rl-arrows { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 16px; }
.rl-arrows button { background: rgba(17,18,13,0.55); border: 0; color: var(--white); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.rl-body h3 { font-family: var(--serif); font-size: 36px; margin-bottom: 18px; }
.rl-desc { color: var(--grey); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.rl-specs { margin: 26px 0; border-top: 1px solid var(--line-dark); }
.rl-specs > div { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.rl-label { color: var(--grey-2); display: inline-flex; gap: 8px; align-items: center; }
@media (max-width: 900px) { .room-listing { flex-direction: column; gap: 28px; } }

/* Room page */
.roompage-hero { display: grid; grid-template-columns: 42% 58%; align-items: stretch; }
.rp-copy { padding: 70px 60px 70px 100px; display: flex; flex-direction: column; justify-content: center; }
.rp-back { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 34px; }
.rp-copy h1 { font-family: var(--serif); font-size: 54px; line-height: 1.05; margin-bottom: 30px; }
.rp-copy .btn { align-self: flex-start; }
.rp-img { flex: 1 1 50%; object-fit: cover; min-height: 520px; max-height: 640px; }
@media (max-width: 900px) { .roompage-hero { grid-template-columns: 1fr; } .rp-img { min-height: 0; order: -1; } .rp-copy { padding: 40px 24px; } .rp-copy h1 { font-size: 42px; } }

.rp-about { padding: 90px 0 60px; }
.rp-about .pill { display: inline-block; }
.rp-desc { margin: 30px 0 44px; color: var(--light); font-size: 17px; line-height: 1.7; }
.rp-fac-label { color: var(--grey-2); margin-bottom: 20px; }
.fac-list { list-style: none; margin: 0 0 40px; padding: 0; columns: 2; gap: 48px; }
.fac-list li { display: flex; gap: 12px; align-items: center; padding: 7px 0; font-size: 15px; break-inside: avoid; }
.fac-list-1col { columns: 1; }
@media (max-width: 700px) { .fac-list { columns: 1; } }

.price-box { border: 1px solid var(--line-dark); background: rgba(255,255,255,0.02); padding: 34px 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.price-head { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; }
.price-box .upper { color: var(--grey-2); font-size: 11px; }
.price-mid h4 { font-family: var(--serif); font-size: 28px; }
.price-mid h4 span { font-family: var(--sans); font-size: 14px; color: var(--grey); }
.price-note { margin-top: 8px; }

.rp-gallery { padding: 20px 0 80px; }
.rp-gal-label { margin-bottom: 22px; font-size: 15px; }
.rp-gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rp-gal-grid img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
@media (max-width: 800px) { .rp-gal-grid { grid-template-columns: repeat(2, 1fr); } }

.more-rooms { display: flex; }
.more-room-card { flex: 1; border-right: 1px solid var(--line-dark); padding: 60px 40px; text-align: center; }
.more-room-card:last-child { border-right: 0; }
.more-room-card h4 { font-family: var(--serif); font-size: 30px; margin-bottom: 10px; }
.more-room-card img { width: 100%; max-width: 270px; aspect-ratio: 27 / 31; object-fit: cover; margin: 22px auto; }
@media (max-width: 800px) { .more-rooms { flex-direction: column; } .more-room-card { border-right: 0; border-bottom: 1px solid var(--line-dark); } }

/* About */
.about-intro { padding: 100px 0 70px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; }
.about-h3 { font-family: var(--serif); font-size: 40px; line-height: 1.15; margin-top: 26px; }
.about-lead { font-size: 24px; line-height: 1.4; margin-bottom: 26px; }
.about-copy p + p { margin-top: 18px; }
.about-copy p:not(.about-lead) { color: var(--grey); font-size: 15px; line-height: 1.7; }
.about-photo img { width: 100%; height: auto; }
.about-hosp { text-align: center; padding: 100px 0; }
.about-hosp h2 { font-family: var(--serif); font-size: 44px; margin-bottom: 26px; }
.about-hosp p { color: var(--grey); max-width: 600px; margin: 0 auto; line-height: 1.7; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Contact */
.contact-section { padding: 40px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.contact-info > div + div { margin-top: 36px; }
.contact-info p { font-size: 15px; line-height: 1.8; }
.contact-info a:hover { text-decoration: underline; }
.contact-form label { display: block; margin-bottom: 22px; font-size: 13px; color: var(--grey); }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 8px; padding: 14px 16px;
  background: var(--dark-3); border: 1px solid var(--line-dark); color: var(--white);
  font-family: inherit; font-size: 14px; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--grey-2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* FAQ */
.faq-section { padding: 60px 0 100px; }
.faq-h { font-family: var(--serif); font-size: 40px; margin-bottom: 40px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 17px; font-family: var(--serif); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-chev { transition: transform 0.2s; flex: 0 0 auto; }
.faq-item p { color: var(--grey); line-height: 1.7; padding: 0 0 24px; font-size: 15px; }
.faq-more { text-align: center; margin-top: 48px; }
.faq-more p { margin-bottom: 18px; font-family: var(--serif); font-size: 22px; }

/* Gallery */
.gallery-section { padding: 30px 0 90px; }
.gallery-grid { columns: 3; gap: 20px; }
.gallery-grid img { width: 100%; margin-bottom: 20px; break-inside: avoid; display: block; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }

/* Restaurant */
.chef-section { padding: 80px 0; }
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.chef-grid img { width: 100%; height: 100%; object-fit: cover; }
.chef-h { font-family: var(--serif); font-size: 32px; margin-bottom: 22px; }
.chef-p { color: var(--grey); line-height: 1.7; font-size: 15px; margin-bottom: 36px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
.chef-note { margin: 26px 0; color: var(--grey); font-size: 14px; }
@media (max-width: 900px) { .chef-grid { grid-template-columns: 1fr; gap: 36px; } }

.pill-dark { border-color: rgba(17,18,13,0.4); color: var(--dark); }
.menu-section { padding: 90px 0; }
.menu-h2 { font-family: var(--serif); font-size: 44px; margin: 24px 0 40px; }
.menu-item { display: flex; justify-content: space-between; gap: 30px; align-items: center; border-top: 1px solid var(--line-light); padding: 26px 0; }
.menu-item h4 { font-family: var(--serif); font-size: 26px; margin: 8px 0 6px; }
.menu-cat { color: var(--grey-dark); font-size: 10px; }
.menu-sub { color: var(--grey-dark); font-size: 14px; margin-bottom: 6px; }
.menu-price { font-family: var(--serif); font-size: 17px; font-weight: 400; margin-top: 8px; }
.menu-item img { width: 135px; height: 135px; object-fit: cover; flex: 0 0 auto; }
@media (max-width: 600px) { .menu-item img { width: 90px; height: 90px; } }

.private-section { text-align: center; padding: 100px 0; }
.private-section img { max-width: 560px; width: 100%; margin: 0 auto 40px; }
.private-section h3 { font-family: var(--serif); font-size: 40px; margin-bottom: 20px; }
.private-section p { color: var(--grey); max-width: 520px; margin: 0 auto 30px; line-height: 1.7; }

/* Wedding */
.wed-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.wed-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.wed-hero-copy { position: relative; z-index: 1; max-width: 1100px; }
.wed-hero-copy h1 { font-family: var(--serif); font-size: 58px; line-height: 1.1; margin: 26px 0; max-width: 880px; }
.wed-hero-copy p { color: var(--light); max-width: 860px; line-height: 1.7; margin-bottom: 30px; }
@media (max-width: 800px) { .wed-hero-copy h1 { font-size: 38px; } }
.wed-section { padding: 70px 0; }
.wed-section h2 { font-family: var(--serif); font-size: 40px; margin: 20px 0 24px; }
.wed-section p { color: var(--grey); line-height: 1.7; font-size: 15px; margin-bottom: 18px; }
.wed-h3 { font-family: var(--serif); font-size: 26px; margin: 26px 0 16px; }
.wed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.wed-grid img { width: 100%; max-height: 640px; object-fit: cover; }
.wed-map { width: 100%; height: 380px; border: 0; filter: grayscale(1) invert(0.92); }
@media (max-width: 900px) { .wed-grid { grid-template-columns: 1fr; gap: 36px; } .wed-grid-rev img { order: 2; } }

/* Blog */
.feat-section { padding: 70px 0; }
.feat-head { text-align: center; margin-bottom: 50px; }
.feat-head h2 { font-family: var(--serif); font-size: 44px; margin-top: 22px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feat-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feat-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feat-card h3 { font-family: var(--serif); font-size: 24px; line-height: 1.25; }
.feat-card:hover h3 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }

.blog-list-section { padding: 40px 0 100px; }
.blog-list-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 44px; }
.blog-list-head h2 { font-family: var(--serif); font-size: 40px; }
.blog-filters { display: flex; gap: 12px; }
.pill-filter { font-weight: 500; }
.pill-filter.active { background: var(--white); color: var(--dark); border-color: var(--white); }
.blog-list-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; border: 1px solid var(--line-dark); padding: 44px; }
.blog-rows { display: flex; flex-direction: column; gap: 48px; }
.blog-row { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: start; }
.blog-row img { width: 100%; aspect-ratio: 6 / 5; object-fit: cover; }
.blog-row h3 { font-family: var(--serif); font-size: 26px; line-height: 1.2; margin: 14px 0 12px; }
.blog-row h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.blog-exc { color: var(--grey); font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.pill-sm { padding: 6px 13px; font-size: 10px; }
.stay-card { border: 1px solid var(--line-dark); background: rgba(255,255,255,0.02); padding: 32px 30px; position: sticky; top: 160px; }
.stay-card h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 12px; }
.stay-card > p { color: var(--grey); font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.stay-card label { display: block; font-size: 13px; color: var(--grey); margin-bottom: 16px; }
.stay-card input { width: 100%; margin-top: 6px; height: 44px; padding: 0 14px; background: var(--dark-3); border: 1px solid var(--line-dark); color: var(--white); font-family: inherit; font-size: 14px; }
.pagination { display: flex; gap: 10px; margin-top: 10px; }
.page-link { width: 40px; height: 40px; border: 1px solid var(--line-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.page-link.active { background: var(--white); color: var(--dark); border-color: var(--white); }
@media (max-width: 1000px) { .blog-list-grid { grid-template-columns: 1fr; padding: 20px; } .blog-row { grid-template-columns: 1fr; } .stay-card { position: static; } }

/* Blog post */
.post { padding: 90px 0 40px; }
.post-crumb { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 26px; }
.post-crumb span { margin: 0 8px; }
.post h1 { font-family: var(--serif); font-size: 46px; line-height: 1.1; margin-bottom: 40px; }
.post-cover { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 48px; }
.post-body p { color: var(--light); font-size: 16px; line-height: 1.8; margin: 0 0 22px; }
.post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 40px 0 16px; }
.post-body img { width: 100%; margin: 30px 0; }
.post-body a { text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { color: var(--light); line-height: 1.8; margin: 0 0 22px; padding-left: 22px; }
@media (max-width: 700px) { .post h1 { font-size: 32px; } }

/* Simple pages (laundry, tnc) */
.simple-section { padding: 70px 0 100px; }
.simple-body h2 { font-family: var(--serif); font-size: 30px; margin: 44px 0 18px; }
.simple-body p { color: var(--grey); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.price-table { margin: 10px 0 20px; }

/* Language switcher (v4) */
.lang-switch { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; }
.lang-switch span { color: var(--line-dark); }
.lang-switch a { color: var(--grey-2); font-weight: 500; }
.lang-switch a.active { color: var(--white); }
.lang-switch a:hover { color: var(--white); }
@media (max-width: 900px) { .lang-switch { justify-content: center; } }
