:root {
  --cream: #f4ead2;
  --cream-light: #fffaf0;
  --ink: #171715;
  --charcoal: #292b29;
  --red: #c83a19;
  --orange: #ee5a19;
  --gold: #e5a900;
  --muted: #756a58;
  --line: rgba(32, 27, 19, .2);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(108, 75, 38, .05) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    linear-gradient(90deg, rgba(164, 112, 44, .025), transparent 35%, rgba(164, 112, 44, .025)),
    var(--cream-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: #fff; padding: .75rem 1rem; }
.skip-link:focus { left: .75rem; top: .75rem; }

.top-ribbon {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--charcoal);
  color: #fff7e7;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .34em;
}
.top-ribbon span { width: 34px; height: 2px; background: var(--gold); }

.site-header {
  min-height: 144px;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 max(3vw, 24px);
  border-bottom: 12px double var(--red);
  background: rgba(255, 250, 240, .97);
  position: relative;
  z-index: 10;
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
}
.brand { width: 310px; margin: 12px 0; align-self: center; position: relative; z-index: 2; }
.brand img { border-radius: 10px; box-shadow: 0 9px 22px rgba(38, 28, 16, .18); }
nav { display: flex; justify-content: center; gap: clamp(1.4rem, 3.5vw, 3.5rem); }
nav a { text-decoration: none; font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.1rem; letter-spacing: .02em; padding: .45rem 0; border-bottom: 3px solid transparent; }
nav a:hover, nav a:focus-visible { color: var(--red); border-color: var(--red); }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .85rem 1.35rem;
  border: 2px solid var(--red);
  border-radius: 6px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: .035em;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(74, 39, 16, .18); }
.primary, .book-button { background: var(--red); color: #fff; }
.primary:hover, .book-button:hover { background: #a92c13; }
.secondary { color: var(--red); background: rgba(255,255,255,.35); }
.book-button { min-width: 150px; }

.hero { display: grid; grid-template-columns: minmax(0, 44%) minmax(0, 1fr); min-height: 520px; border-bottom: 10px double var(--red); }
.hero-copy { min-width: 0; padding: 64px clamp(24px, 4vw, 80px) 48px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 .7rem; color: var(--red); font-family: Impact, "Arial Narrow", sans-serif; font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: .96; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 900; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 4vw, 5rem); line-height: 1.04; }
h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
h3 { font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.5rem; letter-spacing: .02em; }
.hero-lede { max-width: 520px; margin: 1.25rem 0 1.5rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 1.5vw, 1.45rem); line-height: 1.3; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.script-line { margin: 1.5rem 0 0; color: #493c2b; font-family: "Segoe Script", "Brush Script MT", cursive; font-size: clamp(1.1rem, 1.5vw, 1.4rem); transform: rotate(-2deg); }
.hero-photo { position: relative; min-width: 0; overflow: hidden; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream-light) 0, transparent 14%); pointer-events: none; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.82) contrast(1.02); }

.quick-facts {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.fact { display: grid; justify-items: center; text-align: center; gap: .3rem; padding: 0 2rem; border-right: 1px solid var(--line); }
.fact:last-of-type { border-right: 0; }
.fact-icon { display: grid; place-items: center; min-width: 54px; height: 54px; color: var(--red); font-family: Impact, sans-serif; font-size: 1.7rem; }
.fact strong { font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.2rem; letter-spacing: .05em; text-transform: uppercase; }
.fact small { color: var(--muted); font-size: .9rem; }
.construction-note { grid-column: 1 / -1; margin: 32px 0 0; padding: 16px 22px; text-align: center; color: #4b3d2d; background: rgba(223, 201, 158, .25); border: 1px solid rgba(154, 107, 42, .18); border-radius: 7px; }

.section { max-width: var(--max); margin: 0 auto; padding: 88px 24px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.park { border-top: 1px solid var(--line); }
.stay-details { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.stay-inclusions { padding-top: 12px; }
.included-list { list-style: none; padding: 0; margin: 24px 0 0; }
.included-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.included-list strong { display: block; font-size: 1.2rem; }
.included-list span { display: block; margin-top: 4px; color: #52493c; }
.stay-rates { background: var(--cream); padding: clamp(24px, 3vw, 40px); border-top: 6px solid var(--red); }
.rate-list { margin: 20px 0; }
.rate-list > div { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.rate-list dt { font-size: 1.1rem; font-weight: 700; }
.rate-list dd { margin: 0; font-family: Georgia, serif; font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
.rate-list dd span { font-family: Arial, sans-serif; font-size: 1rem; font-weight: 400; color: #52493c; }
.rates-included { font-weight: 700; margin-bottom: 8px; }
.rates-note { font-size: .9rem; color: #52493c; margin: 0; }

.map-section { display: grid; grid-template-columns: 35% 1fr; gap: 4rem; align-items: center; }
.map-copy p:not(.eyebrow) { max-width: 35rem; font-size: 1.1rem; }
.text-link { color: var(--red); font-family: Impact, "Arial Narrow", sans-serif; letter-spacing: .04em; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.map-image { display: block; border: 12px solid var(--cream); box-shadow: 0 14px 36px rgba(42, 31, 19, .18); transform: rotate(1deg); transition: transform .2s ease; }
.map-image:hover { transform: rotate(0); }

.photos { border-top: 1px solid var(--line); }
.row-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.photo-grid { display: grid; grid-template-columns: 1.7fr .8fr; gap: 1rem; }
figure { margin: 0; position: relative; min-height: 370px; overflow: hidden; background: var(--cream); }
figure img { width: 100%; height: 100%; object-fit: cover; }
figcaption { position: absolute; left: 0; bottom: 0; padding: .7rem 1rem; color: #fff; background: rgba(23, 23, 21, .82); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }

.contact { max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.5fr .8fr; gap: 3rem; align-items: center; color: #fff7e7; background: var(--charcoal); border-top: 9px solid var(--gold); }
.contact h2 { color: #fff; }
.contact-card > p:not(.eyebrow) { max-width: 640px; font-family: Georgia, serif; font-size: 1.25rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.contact .secondary { color: #fff7e7; border-color: #fff7e7; }
address { display: grid; gap: .35rem; padding: 2rem; font-style: normal; border: 1px solid rgba(255,255,255,.22); }
address strong { margin-bottom: .5rem; font-family: Impact, sans-serif; font-size: 1.25rem; letter-spacing: .04em; }
address a { color: #ffd45c; }
address small { margin-top: .75rem; color: #d8d0c2; }

footer { min-height: 220px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 2rem; max-width: var(--max); margin: 0 auto; padding: 40px 24px; }
footer img { width: 180px; border-radius: 6px; }
footer > p { font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 1.2rem; }
footer .copyright { font-family: Arial, sans-serif; font-size: .82rem; color: var(--muted); }

@media (max-width: 900px) {
  .site-header { min-height: 104px; grid-template-columns: 190px 1fr auto; gap: 1rem; }
  .brand { width: 190px; margin-bottom: -20px; }
  nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 1rem 24px; background: var(--cream-light); border-bottom: 6px solid var(--red); }
  nav.open { display: flex; }
  nav a { padding: .8rem 0; }
  .menu-button { display: block; justify-self: end; min-height: 44px; padding: .55rem .9rem; background: transparent; border: 1px solid var(--ink); border-radius: 4px; font: 700 .9rem Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
  .book-button { min-width: 0; min-height: 44px; padding: .55rem .8rem; font-size: .9rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 32px 24px 40px; }
  .hero-photo { height: clamp(230px, 42vw, 360px); order: -1; }
  .hero-photo::after { background: linear-gradient(0deg, var(--cream-light), transparent 28%); }
  .quick-facts { grid-template-columns: 1fr; gap: 1.5rem; }
  .fact { padding: 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .stay-details { grid-template-columns: 1fr; }
  .map-section, .contact { grid-template-columns: 1fr; }
  .map-section { gap: 2rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure { min-height: 330px; }
  footer { grid-template-columns: 160px 1fr; }
  footer .copyright { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .top-ribbon { font-size: .62rem; letter-spacing: .24em; }
  .site-header { grid-template-columns: 1fr auto; padding: 12px 16px; }
  .brand { width: 170px; margin: 0; align-self: center; }
  .book-button { display: none; }
  h1 { font-size: clamp(2.6rem, 8vw, 3.5rem); }
  h2 { font-size: 2.75rem; }
  .hero-photo { height: 230px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 64px 20px; }
  .row-heading { align-items: start; flex-direction: column; }
  .photo-grid figure { min-height: 250px; }
  .contact { padding: 64px 20px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


.brand-contact { margin: 8px 0 0; text-align: center; font-size: .9rem; font-weight: 700; line-height: 1.45; }
.brand-contact a { color: var(--red); white-space: nowrap; }
.brand-contact span { display: block; font-size: .8rem; font-weight: 400; }
@media (max-width: 900px) { .brand { margin: 12px 0; } .brand-contact { font-size: .85rem; } .brand-contact span { font-size: .8rem; } }
