:root {
  --bg: #0e0d0b;
  --bg-soft: #171511;
  --paper: #f4efe5;
  --paper-soft: #e7dccb;
  --gold: #b89b62;
  --gold-light: #d8c18b;
  --ink: #1d1812;
  --muted: #bfb5a5;
  --line: rgba(244, 239, 229, .16);
  --max: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 84px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(14,13,11,.82), rgba(14,13,11,0));
  transition: background .3s ease, height .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(14,13,11,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 14px;
}

.brand-text {
  font-size: 13px;
  color: var(--paper);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(244,239,229,.82);
}

.main-nav a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 12px 18px;
  color: var(--gold-light) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--paper);
  margin: 8px 0;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 160px clamp(24px, 6vw, 92px) 86px;
  overflow: hidden;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 65% 30%, rgba(184,155,98,.16), transparent 28%),
    linear-gradient(to right, rgba(14,13,11,.94), rgba(14,13,11,.50), rgba(14,13,11,.24)),
    linear-gradient(to top, rgba(14,13,11,.94), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 20px;
}

h1, h2, h3, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: .92;
  letter-spacing: -.06em;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.045em;
}

h3 {
  font-size: 26px;
}

.hero-subtitle {
  max-width: 620px;
  margin: 28px 0 36px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(244,239,229,.78);
  font-family: "Cormorant Garamond", serif;
}

.hero-actions,
.booking-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(244,239,229,.34);
  color: var(--paper);
}

.scroll-note {
  position: absolute;
  right: 42px;
  bottom: 42px;
  writing-mode: vertical-rl;
  color: rgba(244,239,229,.48);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
}

.placeholder-image {
  background:
    linear-gradient(135deg, rgba(184,155,98,.26), rgba(14,13,11,.2)),
    repeating-linear-gradient(45deg, #201d18 0 12px, #181511 12px 24px);
  position: relative;
  overflow: hidden;
}

.placeholder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(244,239,229,.12), transparent 30%);
}

.placeholder-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(244,239,229,.22);
  border-radius: 999px;
  color: rgba(244,239,229,.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.intro,
.rooms,
.gallery,
.reviews,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) clamp(24px, 5vw, 40px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 7vw, 96px);
  font-family: "Manrope", sans-serif;
  align-items: start;
}

.intro-grid p {
  color: rgba(244,239,229,.72);
  margin-top: 0;
  font-family: "Manrope", sans-serif;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 74px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-row article {
  background: var(--bg);
  padding: 34px;
}

.feature-row span {
  color: var(--gold);
  font-size: 13px;
}

.feature-row p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 680px;
}

.split-section.dark {
  background: var(--bg-soft);
}

.split-copy {
  padding: clamp(54px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy p {
  color: rgba(244,239,229,.72);
  max-width: 520px;
}

.text-link {
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 18px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 54px;
}

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

.room-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.room-image {
  height: 310px;
}

.room-content {
  padding: 28px;
}

.room-content p {
  color: rgba(29,24,18,.68);
}

.room-content a {
  display: inline-block;
  margin-top: 8px;
  color: #7a6034;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.coimbra {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(86px, 12vw, 150px) clamp(24px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 8vw, 120px);
}

.coimbra .section-kicker {
  color: #82683a;
}

.coimbra-copy p {
  color: rgba(29,24,18,.68);
  max-width: 590px;
}

.experience-list {
  display: grid;
  gap: 1px;
  background: rgba(29,24,18,.13);
  align-self: center;
}

.experience-list div {
  background: var(--paper);
  padding: 24px 0;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 20px;
}

.experience-list strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.experience-list span {
  color: rgba(29,24,18,.62);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  border-radius: 22px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.reviews {
  text-align: center;
}

blockquote {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -.04em;
  max-width: 1040px;
  margin: 0 auto;
}

.review-note {
  color: rgba(244,239,229,.48);
  font-size: 13px;
  margin-top: 28px;
}

.booking-strip {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(184,155,98,.24), rgba(244,239,229,.08));
  border: 1px solid var(--line);
  justify-content: space-between;
}

.booking-strip h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  padding-top: 0;
}

.contact-card,
.map-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card {
  padding: 42px;
}

address {
  margin: 28px 0;
  line-height: 1.7;
  color: var(--muted);
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  color: var(--gold-light);
}
.social-links {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}
.social-links img {
    width: 20px;
    height: 20px;
}

.social-links a {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244,239,229,.15);
    border-radius: 50%;

    color: var(--gold-light);

    transition: all .25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);

    border-color: var(--gold);

    background: rgba(184,155,98,.08);
}

.social-links i {
    font-size: 20px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(244,239,229,.7);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; z-index: 31; }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(14,13,11,.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    transform: translateY(-100%);
    transition: transform .35s ease;
  }

  body.menu-open .main-nav {
    transform: translateY(0);
  }

  .intro-grid,
  .split-section,
  .coimbra,
  .contact {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 420px;
  }

  .feature-row,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .experience-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 58px;
  }

  .brand-text {
    display: none;
  }

  .scroll-note {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .booking-strip {
    margin-inline: 24px;
    padding: 28px;
  }
}


/* v2 updates */
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
}

.real-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.special-image {
  position: relative;
}

.diagonal-ribbon {
  position: absolute;
  top: 28px;
  right: -58px;
  z-index: 4;
  width: 245px;
  padding: 12px 10px;
  text-align: center;
  transform: rotate(35deg);
  background: rgba(14, 13, 11, .86);
  color: var(--gold-light);
  border-top: 1px solid rgba(216,193,139,.65);
  border-bottom: 1px solid rgba(216,193,139,.65);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cinematic-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.22 !important;
  letter-spacing: -.025em;
  color: rgba(29,24,18,.78) !important;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 35px 0 50px;
}

.legal-navigation a {
    padding: 12px 20px;
    border: 1px solid rgba(184,155,98,.35);
    border-radius: 999px;

    color: var(--gold-light);

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;

    transition: all .25s ease;
}

.legal-navigation a:hover {
    background: rgba(184,155,98,.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

section[id] {
    scroll-margin-top: 120px;
}

@media (max-width: 560px) {
  .brand-logo { height: 42px; }
  .brand-text { display: none; }
}
