@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@400;500;600&display=swap');

/* =====================
   CSS Variables
   ===================== */
:root {
  --teal: #0F6E56;
  --teal-light: #1D9E75;
  --teal-dark: #085041;
  --cream: #FAF7F2;
  --amber: #EF9F27;
  --amber-dark: #BA7517;
  --text-dark: #1a1a18;
  --text-mid: #444441;
  --text-muted: #888780;
  --border-light: #e8e5de;
  --border-mid: #ddd9cf;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

/* =====================
   Layout
   ===================== */
.page {
  max-width: 860px;
  margin: 0 auto;
}

.section {
  padding: 3.5rem 2rem;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* =====================
   Navigation
   ===================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: var(--teal-dark);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
}

/* =====================
   Hero
   ===================== */
.hero {
  background: var(--teal);
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* =====================
   Buttons
   ===================== */
.btn-primary {
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--amber-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* =====================
   Amenities
   ===================== */
.amenities {
  background: #fff;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.amenity-card {
  background: #fff;
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.amenity-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E1F5EE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenity-icon svg {
  width: 16px;
  height: 16px;
}

.amenity-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.amenity-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =====================
   Pricing
   ===================== */
.pricing {
  background: var(--cream);
}

.pricing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.price-table {
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}

.price-table:last-child {
  margin-bottom: 0;
}

.price-header {
  background: var(--teal-dark);
  padding: 0.85rem 1.25rem;
}

.price-header span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f0ece4;
  font-size: 14px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row-label {
  color: var(--text-mid);
}

.price-row-val {
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 15px;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 0.5rem;
}

.pricing-note p {
  margin-bottom: 1rem;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* =====================
   Photos
   ===================== */
.photos {
  background: var(--teal-dark);
  padding: 3rem 2rem;
}

.photos .section-label {
  color: var(--amber);
}

.photos .section-title {
  color: #fff;
}

.photos .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.photo-cell {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-cell:first-child {
  grid-row: 1 / 3;
}

.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.photo-placeholder svg {
  opacity: 0.3;
}

.photo-placeholder span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.photo-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.photo-link {
  color: var(--amber);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.photo-link:hover {
  color: #fff;
}

/* =====================
   Contact
   ===================== */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #E1F5EE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-val {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-val a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-val a:hover {
  color: var(--teal-dark);
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 14px;
}

.hours-day {
  color: var(--text-muted);
}

.hours-time {
  color: var(--text-dark);
  font-weight: 500;
}

.map-placeholder {
  background: #e8f5ee;
  border-radius: 8px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d0e8de;
  text-align: center;
  padding: 1rem;
}

.map-placeholder span {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
}

.map-placeholder small {
  font-size: 12px;
  color: var(--text-muted);
}

.map-placeholder a {
  margin-top: 8px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.map-placeholder a:hover {
  color: var(--teal-dark);
}

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--teal-dark);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .pricing-intro {
    grid-template-columns: 1fr;
  }

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

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
  }

  .photo-cell:first-child {
    grid-row: auto;
    grid-column: 1 / 3;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}
