/* Theme tokens used across the page */
:root {
  color-scheme: light;
  --ink: #0f2a36;
  --muted: #4f6f78;
  --cream: #eef4f6;
  --sand: #dbe8ed;
  --olive: #0d3b4c;
  --stone: #9bc1c8;
  --blush: #e9b6c3;
  --shadow: 0 24px 50px rgba(15, 42, 54, 0.18);
  --radius: 26px;
}

/* Global box model reset */
* {
  box-sizing: border-box;
}

/* Base page typography and background treatment */
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(155, 193, 200, 0.4), transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, #f4f7f8 45%, #e6eff2 100%);
  min-height: 100vh;
}

/* Top announcement strip */
.announcement {
  background: #f6f8f9;
  color: var(--ink);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* Announcement link style */
.announcement a {
  color: var(--olive);
  text-decoration: underline;
  font-weight: 600;
}

/* Main content wrapper */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 90px;
  display: grid;
  gap: 56px;
}

/* Header layout */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(233, 239, 242, 0.9);
  padding: 16px 20px;
  border-radius: 20px;
}

/* Brand mark and wordmark */
.logo {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Logo image sizing */
.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* Primary nav links */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Default nav item style */
nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Header CTA pill button */
.button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--blush);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--olive);
  text-decoration: none;
  background: white;
}

/* Hero area: text and image split */
.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

/* Main hero heading */
.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 1.5rem + 2.6vw, 4rem);
  line-height: 1.1;
  max-width: 15ch;
  text-wrap: balance;
  margin: 0 0 16px;
}

/* Hero subtitle between heading and paragraph */
.hero p.hero-subtitle {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 1.3rem + 0.9vw, 2.1rem);
  font-weight: 600;
  color: var(--olive);
  line-height: 1.35;
}

/* Hero intro paragraph */
.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

/* Hero button row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Shared hero button styling */
.hero-actions a {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

/* Filled primary hero button */
.hero-actions .primary {
  background: var(--olive);
  color: white;
  box-shadow: 0 16px 30px rgba(13, 59, 76, 0.28);
}

/* Outlined secondary hero button */
.hero-actions .secondary {
  border: 1px solid var(--blush);
  color: var(--olive);
  background: white;
}

/* Hover lift for hero buttons */
.hero-actions a:hover {
  transform: translateY(-2px);
}

/* Hero image panel */
.hero-image {
  width: min(100%, clamp(250px, 34vw, 360px));
  aspect-ratio: 314 / 470;
  justify-self: center;
  border-radius: var(--radius);
  background-color: var(--sand);
  background-image: url("../images/tashaImage.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

/* Shared section heading style */
.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 14px;
}

/* Vertical spacing for sections */
.section {
  display: grid;
  gap: 20px;
}

/* Responsive two/three column grid helper */
.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Content card style */
.panel {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 35px rgba(36, 30, 25, 0.12);
}

/* Card heading spacing */
.panel strong {
  display: block;
  margin-bottom: 8px;
}

/* Address text in location panel */
.location-address {
  margin: 0 0 10px;
  color: var(--muted);
}

/* Click-to-map link for in-person address */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--olive);
  font-weight: 700;
}

.map-link:hover {
  text-decoration: underline;
}

/* Generic list style (available for future sections) */
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* Pull-quote typography */
.quote {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  color: var(--olive);
}

/* Bottom contact call-to-action band */
.cta-band {
  background: var(--sand);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact band link style */
.cta-band a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

/* Safety note block */
.note {
  background: var(--sand);
  padding: 18px 22px;
  border-radius: 20px;
  color: var(--muted);
}


/* Mobile layout tweaks */
@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-image {
    width: min(100%, 320px);
  }
}
