:root {
  --ink: #141c22;
  --ink-2: #24313a;
  --gold: #b57d22;
  --gold-2: #d8aa52;
  --cream: #f6f1e9;
  --paper: #ffffff;
  --line: #e6ded2;
  --muted: #65717a;
  --shadow: 0 18px 55px rgba(20, 28, 34, .15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(20, 28, 34, .96);
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}
.brand { letter-spacing: .12em; text-transform: uppercase; line-height: 1.05; }
.brand span { display: block; font-family: Georgia, serif; font-size: clamp(24px, 3vw, 40px); }
.brand strong { display: block; color: var(--gold-2); font-size: 14px; font-weight: 600; }
nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(181,125,34,.22);
}
.button.small { padding: 11px 16px; }
.button.secondary { background: var(--ink); box-shadow: none; }
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
background: #172027;
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,12,15,.92) 0%, rgba(8,12,15,.70) 32%, rgba(8,12,15,.18) 70%);
}
.hero-content {
  position: relative;
  max-width: 720px;
  padding: 0 clamp(22px, 6vw, 72px) 72px;
  color: white;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 800;
}
.eyebrow.dark { color: var(--gold); }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 { font-family: Georgia, serif; font-size: clamp(46px, 8vw, 86px); letter-spacing: .02em; }
h2 { font-family: Georgia, serif; font-size: clamp(30px, 5vw, 54px); }
h3 { font-size: 26px; }
.address { font-size: 20px; margin: 18px 0 28px; }
.quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.quickfacts div { padding: 26px clamp(16px, 4vw, 42px); border-right: 1px solid var(--line); }
.quickfacts span { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.quickfacts strong { display: block; margin-top: 6px; font-size: 18px; }
.section { padding: clamp(48px, 7vw, 88px) clamp(22px, 6vw, 72px); max-width: 1500px; margin: 0 auto; }
.intro, .split { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 6vw, 80px); align-items: start; }
.intro p:last-child, .split p { color: var(--ink-2); font-size: 18px; margin-top: 0; }
.section-heading { max-width: 850px; margin-bottom: 30px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.suite-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 14px;
}
.suite-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.suite-card:nth-child(2) img {
    object-position: center 20%;
}
}
.suite-body { padding: 28px; }
.price { color: var(--gold); font-size: 24px; font-weight: 900; margin: 8px 0 14px; }
ul { margin: 0 0 24px; padding-left: 20px; }
.highlight { background: var(--ink); color: white; display: grid; align-items: center; }
.highlight p { color: #dbe1e5; }
.centered { text-align: center; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-grid img { height: 260px; width: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.photo-grid .wide { grid-column: 1 / -1; height: 360px; }
.location-section { padding-top: 20px; }
.map-wrap { background: white; padding: 12px; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; border-radius: 10px; }
.form-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 72px); align-items: start; }
.form-intro { position: sticky; top: 130px; }
.inquiry-form {
  background: white;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 18px; font-weight: 800; color: var(--ink); }
input, select, textarea {
  margin-top: 7px;
  width: 100%;
  border: 1px solid #cfc8be;
  border-radius: 6px;
  padding: 13px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--muted); }
.checkbox input { width: auto; margin-top: 6px; }
.submit { width: 100%; font-size: 16px; padding: 16px; }
footer { padding: 34px clamp(22px, 6vw, 72px); background: var(--ink); color: white; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer span { color: #c7d0d6; }
.thanks-page, .admin-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.thanks-card, .admin-wrap { max-width: 920px; width: 100%; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: clamp(28px, 6vw, 58px); }
.thanks-card p { font-size: 18px; }
.admin-wrap { max-width: 1100px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 24px; }
.pin-form { display: flex; gap: 14px; align-items: end; margin-bottom: 26px; }
.pin-form label { flex: 1; margin: 0; }
.inquiry-item { background: #fbfaf8; border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin-bottom: 16px; }
.inquiry-item h2 { font-family: Arial, sans-serif; font-size: 22px; display: flex; justify-content: space-between; gap: 16px; }
.inquiry-item h2 span { color: var(--gold); font-size: 15px; text-align: right; }
.error { color: #a02020; font-weight: 800; }
@media (max-width: 980px) {
  .topbar { position: relative; align-items: flex-start; flex-direction: column; gap: 16px; }
  nav { flex-wrap: wrap; }
  .hero { min-height: 560px; }
  .quickfacts, .cards, .intro, .split, .form-section { grid-template-columns: 1fr; }
  .quickfacts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .form-intro { position: static; }
}
@media (max-width: 620px) {
  nav a:not(.button) { display: none; }
  .hero-content { padding-bottom: 42px; }
  .two-col, .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .wide { grid-column: auto; height: 240px; }
  .photo-grid img, .suite-card img { height: 230px; }
  .pin-form { flex-direction: column; align-items: stretch; }
}

/* ---------- Gallery ---------- */

.photo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
    margin-top:30px;
}

.photo-grid a{
    display:block;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.25s;
}

.photo-grid a:hover{
    transform:translateY(-4px);
}

.photo-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}
