@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600&family=Satisfy&display=swap');

:root {
  --copper: #b5651d;
  --copper-light: #d4844a;
  --copper-dark: #8b4513;
  --navy: #1a2744;
  --navy-light: #243560;
  --lake-blue: #2d6a8a;
  --lake-light: #4a9aba;
  --white: #ffffff;
  --cream: #faf8f4;
  --text-dark: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #8a8a8a;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-deep: 0 12px 48px rgba(0,0,0,0.22);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,101,29,0.3);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Satisfy', cursive;
  font-size: 1.6rem;
  color: var(--copper-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--copper-light);
  border-bottom-color: var(--copper-light);
}

.nav-links .nav-cta a {
  background: var(--copper);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  border-bottom: none;
  letter-spacing: 0.08em;
}

.nav-links .nav-cta a:hover {
  background: var(--copper-light);
  color: white;
  border-bottom: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenBurns 24s ease-in-out infinite;
  transform: scale(1.08);
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }

@keyframes kenBurns {
  0%   { opacity: 0; transform: scale(1.08); }
  8%   { opacity: 1; }
  30%  { opacity: 1; transform: scale(1.0); }
  38%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,39,68,0.35) 0%,
    rgba(26,39,68,0.25) 40%,
    rgba(26,39,68,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
  animation: heroFadeIn 1.2s ease 0.3s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Satisfy', cursive;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: white;
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--copper);
  color: white;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(181,101,29,0.4);
  border: 2px solid var(--copper);
}

.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,101,29,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--copper), var(--copper-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--navy);
  padding: 2.5rem;
  text-align: center;
}

.intro-strip p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.intro-strip strong {
  color: var(--copper-light);
  font-style: normal;
}

/* ===== FEATURES GRID ===== */
.features-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.feature-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.feature-body {
  padding: 1.5rem;
  border-top: 3px solid var(--copper);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== AERIAL SHOWCASE ===== */
.aerial-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.aerial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.aerial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,39,68,0.8) 0%, rgba(26,39,68,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.aerial-content {
  padding: 4rem;
  max-width: 520px;
  animation: slideInLeft 0.8s ease both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.aerial-content .section-eyebrow { color: var(--copper-light); }
.aerial-content .section-title { color: white; text-align: left; }
.aerial-content .section-sub { color: rgba(255,255,255,0.85); text-align: left; margin: 0; }
.aerial-content .divider { margin: 1rem 0; }

/* ===== AMENITIES ICONS ===== */
.amenities-section {
  padding: 6rem 2rem;
  background: white;
}

.amenities-icons {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.amenity-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.amenity-item:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.amenity-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: 0.05em;
}

/* ===== HISTORY SECTION ===== */
.history-section {
  padding: 6rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.history-section::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  top: -5rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.history-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.history-inner .section-eyebrow { color: var(--copper-light); }
.history-inner .section-title { color: white; }
.history-inner .divider { margin: 1rem auto; }

.history-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 2rem;
}

.history-text + .history-text { margin-top: 1.2rem; }

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img { transform: scale(1.08); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-white {
  background: white;
  color: var(--copper-dark);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-white:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0e1626;
  padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  font-family: 'Satisfy', cursive;
  font-size: 2rem;
  color: var(--copper-light);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer-contact-line {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.footer-contact-line a {
  color: var(--copper-light);
  text-decoration: none;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--copper-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 70px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem;
  width: 100%;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--copper-light);
  text-decoration: none;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ===== ROOMS PAGE ===== */
.content-section {
  padding: 5rem 2rem;
}

.content-section.alt { background: white; }

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rooms-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.rooms-intro p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.room-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}

.room-card-header {
  background: var(--navy);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.room-card-header::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--navy);
}

.room-type {
  font-family: 'Satisfy', cursive;
  font-size: 1.6rem;
  color: var(--copper-light);
  margin-bottom: 0.3rem;
}

.room-size-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.room-card-body {
  padding: 2rem;
}

.room-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.room-includes li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.room-includes li::before {
  content: '✓';
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}

.room-cta {
  display: block;
  text-align: center;
  background: var(--copper);
  color: white;
  padding: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
}

.room-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.rates-note {
  background: var(--cream);
  border-left: 4px solid var(--copper);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  max-width: 700px;
  margin: 3rem auto 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.rates-note a {
  color: var(--copper);
  font-weight: 600;
  text-decoration: none;
}

.rates-note a:hover { text-decoration: underline; }

/* ===== AMENITIES PAGE ===== */
.amenities-detail {
  padding: 5rem 2rem;
  background: var(--cream);
}

.amenities-blocks {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.amenity-block {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.amenity-block-body {
  padding: 2rem;
}

.amenity-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.amenity-block-text {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 0.95rem;
}

.cabin-includes-section {
  padding: 5rem 2rem;
  background: white;
}

.includes-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.include-chip {
  background: var(--cream);
  border: 1px solid rgba(181,101,29,0.2);
  border-radius: 40px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.include-chip:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.activities-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.activities-list {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.activity-item {
  background: white;
  padding: 1.8rem;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.activity-item:hover {
  border-bottom-color: var(--copper);
  transform: translateY(-3px);
}

.activity-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.activity-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.activity-desc { font-size: 0.85rem; color: var(--text-mid); margin-top: 0.4rem; }

/* ===== RESERVATIONS PAGE ===== */
.reservations-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.reservations-inner {
  max-width: 900px;
  margin: 0 auto;
}

.reservation-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.res-option {
  background: white;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.res-option:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.res-option-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

.res-option h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.res-option p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.res-note {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
}

.res-note p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

.res-note strong { color: var(--copper-light); }

.pet-waiver-section {
  padding: 3rem 2rem 5rem;
  background: var(--cream);
}

.pet-waiver-box {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pet-waiver-icon { font-size: 3rem; flex-shrink: 0; }

.pet-waiver-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pet-waiver-text p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info {
  background: var(--navy);
  border-radius: 8px;
  padding: 3rem;
  color: white;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--copper-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail-text h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.3rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.5;
  transition: var(--transition);
}

.contact-detail-text a:hover { color: var(--copper-light); }

.contact-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1rem;
}

.contact-form-wrap {
  background: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-wrap .form-sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--copper);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.map-section {
  height: 420px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.directions-section {
  padding: 5rem 2rem;
  background: white;
}

.directions-inner {
  max-width: 900px;
  margin: 0 auto;
}

.directions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.direction-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 2rem;
  border-top: 4px solid var(--copper);
}

.direction-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.direction-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .amenities-icons { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; }
  .amenities-blocks { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-list { grid-template-columns: 1fr 1fr; }
  .reservation-options { grid-template-columns: 1fr; max-width: 480px; margin: 3rem auto 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .directions-cards { grid-template-columns: 1fr; }
  .aerial-content { padding: 2rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: rgba(26,39,68,0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(181,101,29,0.3);
  }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 300px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pet-waiver-box { flex-direction: column; text-align: center; }
  .page-hero-content { padding: 2rem; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-list { grid-template-columns: 1fr; }
}
