@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --alpine-white: #F8F5F0;
  --glacier-blue: #4A7FA5;
  --deep-pine: #1C3A2E;
  --gold-peak: #C9A84C;
  --stone-grey: #8B8680;
  --dark-slate: #1A1A1A;
  --mist: #E8E4DD;
  --crimson-poppy: #B84A3C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--alpine-white);
  color: var(--dark-slate);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-pine);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold-peak);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-slate);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-peak);
  transition: width 0.35s ease;
}

.nav-links a:hover { color: var(--gold-peak); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-peak); }
.nav-links a.active::after { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,58,46,0.72) 0%, rgba(26,26,26,0.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 780px;
  animation: fadeUp 1.2s 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--alpine-white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: #D4B96A;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  color: rgba(248,245,240,0.82);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold-peak);
  color: var(--dark-slate);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  transition: background 0.3s, gap 0.3s;
}

.hero-cta:hover { background: #D9B85C; gap: 1.1rem; }

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-peak);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--deep-pine);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; }

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--stone-grey);
  max-width: 520px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(28,58,46,0.12);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.card-body {
  padding: 1.8rem;
}

.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 0.7rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--stone-grey);
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-pine);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s, color 0.3s;
}

.card-link:hover { gap: 0.85rem; color: var(--gold-peak); }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.split-img-placeholder {
  width: 100%;
  height: 500px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--deep-pine);
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-peak);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.6);
  margin-top: 0.4rem;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-slate);
  color: rgba(248,245,240,0.6);
  padding: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--alpine-white);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--gold-peak); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(248,245,240,0.5);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: rgba(248,245,240,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--alpine-white); }

.footer-bottom {
  border-top: 1px solid rgba(248,245,240,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(248,245,240,0.3);
}

/* ── UTILITIES ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--deep-pine);
  color: var(--deep-pine);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  transition: background 0.3s, color 0.3s, gap 0.3s;
}

.btn-outline:hover {
  background: var(--deep-pine);
  color: var(--alpine-white);
  gap: 0.9rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-peak);
  color: var(--dark-slate);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, gap 0.3s;
}

.btn-gold:hover { background: #D9B85C; gap: 0.9rem; }

.divider {
  width: 50px;
  height: 2px;
  background: var(--gold-peak);
  margin: 1.5rem 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }
.text-center .divider { margin-inline: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 4rem;
  overflow: hidden;
  margin-top: 0;
}

.page-hero .hero-bg {
  animation: none;
  transform: scale(1);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s both;
}

.page-hero-content .hero-eyebrow { margin-bottom: 0.8rem; }

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--alpine-white);
  line-height: 1.1;
}

.page-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(248,245,240,0.75);
  margin-top: 0.8rem;
  max-width: 480px;
}

/* ── FORM ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-grey);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--mist);
  border: 1px solid transparent;
  padding: 0.9rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-slate);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-peak);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── ACCORDION (FAQ) ── */
.accordion-item {
  border-bottom: 1px solid var(--mist);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--deep-pine);
  text-align: left;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--gold-peak);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open { max-height: 300px; }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  font-size: 0.9rem;
  color: var(--stone-grey);
  line-height: 1.8;
  padding-bottom: 1.4rem;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 1px;
  background: var(--mist);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: -2.7rem;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold-peak);
  background: var(--alpine-white);
}

.timeline-day {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.87rem;
  color: var(--stone-grey);
  line-height: 1.75;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--deep-pine);
  padding: 3rem;
  color: var(--alpine-white);
}

.highlight-box .section-label { color: var(--gold-peak); }
.highlight-box .section-title { color: var(--alpine-white); }

/* ── INFO TABLE ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th, .info-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--mist);
  font-size: 0.88rem;
}

.info-table th {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-peak);
  background: var(--mist);
}

.info-table tr:last-child td { border-bottom: none; }

/* ── SEASON CARDS ── */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.season-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--mist);
}

.season-card:last-child { border-right: none; }

.season-icon { font-size: 2rem; margin-bottom: 1rem; }

.season-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 0.5rem;
}

.season-months {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 0.8rem;
}

.season-desc {
  font-size: 0.85rem;
  color: var(--stone-grey);
  line-height: 1.75;
}

/* ── CONTACT CARD ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-peak);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--dark-slate);
}

/* ── DECORATIVE ELEMENTS ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  section { padding: 5rem 2rem; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 0 2rem 3rem; }
  .hero-content { padding: 0 2rem; }
  .nav-links { display: none; }
}
/* Contact Us Page Styles */
.contact-section {
    padding: 6rem 4rem;
    background: var(--mist);
}

.contact-form {
    background: var(--alpine-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 1rem;
    color: var(--deep-pine);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--mist);
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form button {
    padding: 1rem 2rem;
    background-color: var(--gold-peak);
    color: var(--dark-slate);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--crimson-poppy);
}

/* Office Location Styles */
.office-location {
    padding: 6rem 4rem;
    background: var(--alpine-white);
}

.office-details {
    display: flex;
    gap: 2rem;
}

.office-address {
    flex: 1;
}

.office-address p {
    font-size: 1.1rem;
    color: var(--stone-grey);
    margin-bottom: 1rem;
}

.map {
    flex: 1;
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Social Media Styles */
.social-media {
    padding: 6rem 4rem;
    background: var(--mist);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    font-size: 1rem;
    color: var(--deep-pine);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--gold-peak);
}

/* Footer Styles */
footer {
    background: var(--dark-slate);
    color: rgba(248, 245, 240, 0.6);
    padding: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--alpine-white);
}

.footer-desc {
    font-size: 1rem;
    color: var(--stone-grey);
}