@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:        #1C2B3A;
  --cream:       #FAF7F2;
  --linen:       #EDE8DF;
  --bronze:      #B5895A;
  --gold:        #C9A84C;
  --slate:       #6B7A8B;
  --deep-bronze: #8B6440;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: 80px 24px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--slate); font-weight: 300; }

.section-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  display: block;
}

/* ─── Layout Helpers ────────────────────────────────────── */
.container    { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-cream  { background: var(--cream); padding: var(--section-pad); }
.section-linen  { background: var(--linen); padding: var(--section-pad); }
.section-navy   { background: var(--navy);  padding: var(--section-pad); }
.section-inner  { max-width: var(--max-width); margin: 0 auto; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-cream  { color: var(--cream) !important; }
.text-bronze { color: var(--bronze) !important; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--bronze);
  color: var(--bronze);
  background: var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 48px;
  line-height: 1;
  vertical-align: middle;
}
.btn:hover {
  background: var(--bronze);
  color: var(--cream);
  border-color: var(--bronze);
}
.btn-solid {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-solid:hover {
  background: var(--deep-bronze);
  border-color: var(--deep-bronze);
  color: var(--cream);
}
.btn-white {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
/* Consistent hero / CTA button — Bronze border + text on dark bg */
.btn-hero {
  background: transparent;
  border-color: var(--bronze);
  color: var(--bronze);
}
.btn-hero:hover {
  background: var(--bronze);
  color: var(--cream);
}

.text-link {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--bronze);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.text-link:hover { border-color: var(--bronze); color: var(--deep-bronze); }

.text-link-light {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.text-link-light:hover { color: var(--cream); border-color: rgba(250,247,242,0.5); }

/* ─── Navigation ────────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(28,43,58,0.2);
}

/* Logo image in nav */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Fallback text if image fails */
.nav-brand-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--bronze); padding-bottom: 2px; }

.nav-cta {
  font-weight: 500 !important;
  font-size: 0.68rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  color: var(--bronze) !important;
  border: 1.5px solid var(--bronze) !important;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s !important;
  border-bottom: 1.5px solid var(--bronze) !important;
}
.nav-cta:hover { background: var(--bronze) !important; color: var(--cream) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#nav-drawer.open { display: flex; }
#nav-drawer a {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
#nav-drawer a:hover { color: var(--white); }
#nav-drawer .nav-cta {
  font-size: 0.72rem !important;
  padding: 12px 24px !important;
}

/* ─── Hero Sections ─────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 110px 24px 100px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 58, 0.62);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1, .hero h2 { color: var(--white); max-width: 820px; margin: 0 auto 22px; }
.hero-sub {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(250,247,242,0.75);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-divider { width: 40px; height: 1px; background: var(--bronze); margin: 0 auto 28px; }

/* ─── Dawn Photo ────────────────────────────────────────── */
.dawn-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--bronze);
  border-radius: 4px;
  display: block;
}

/* ─── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--cream);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--bronze);
  box-shadow: 0 6px 28px rgba(181,137,90,0.14);
}
.card-linen { background: var(--linen); }
.card h3, .card h4 { margin-bottom: 10px; }
.card p { font-size: 0.92rem; line-height: 1.65; }

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }

/* ─── Specialty Icons ───────────────────────────────────── */
.icon-badge {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--bronze);
  display: block;
}

/* ─── Specialty Badges ──────────────────────────────────── */
.badge-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.badge {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid var(--bronze);
  padding: 8px 20px;
}

/* ─── Process Steps ─────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 48px 0 52px;
}
.step { text-align: center; padding: 28px 20px; }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p { font-size: 0.88rem; color: var(--slate); }

/* ─── Two-column layouts ────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.two-col-60-40 { grid-template-columns: 3fr 2fr; }

/* Fallback photo placeholder (About page before image is loaded) */
.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--linen);
  border: 1px solid rgba(181,137,90,0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bronze);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 24px;
}

/* ─── CTA Strip ─────────────────────────────────────────── */
.cta-strip { background: var(--navy); padding: 80px 24px; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p  { color: rgba(250,247,242,0.65); font-size: 1rem; margin-bottom: 34px; }

/* ─── Blog Cards ────────────────────────────────────────── */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  border: 1px solid rgba(107,122,139,0.3);
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  min-height: 44px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--bronze);
  color: var(--bronze);
}
.filter-btn.active { background: rgba(181,137,90,0.07); }

.blog-card {
  background: var(--cream);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 6px 28px rgba(181,137,90,0.14);
}
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-category-tag {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bronze);
}
.blog-card h3 { font-size: 1.3rem; line-height: 1.3; }
.blog-card p  { font-size: 0.9rem; line-height: 1.6; flex: 1; }
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(107,122,139,0.6);
  margin-top: 4px;
}

/* Image attribution */
.image-credit {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 11px;
  color: var(--slate);
  line-height: 1.4;
  margin-top: 2px;
  opacity: 0.75;
}
.image-credit a {
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.image-credit a:hover { color: var(--bronze); }

/* ─── Contact Form ──────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(107,122,139,0.25);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--bronze); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.thank-you-msg { display: none; text-align: center; padding: 40px 0; }
.thank-you-msg h3 { margin-bottom: 14px; }

/* Contact aside */
.contact-aside { padding-top: 8px; }
.contact-aside h3 { font-size: 1.6rem; margin-bottom: 24px; }
.next-steps {
  border-left: 2px solid var(--bronze);
  padding-left: 24px;
  margin-bottom: 36px;
}
.next-steps li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.55;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--slate);
}
.contact-detail svg { width: 18px; height: 18px; color: var(--bronze); flex-shrink: 0; }

/* ─── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.service-card {
  padding: 40px 36px;
  background: var(--cream);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(181,137,90,0.14);
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-card p  { font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; }

/* ─── Trip Style Cards ──────────────────────────────────── */
.trip-card {
  padding: 48px 40px;
  background: var(--cream);
  border: 1px solid var(--bronze);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.trip-card:hover { box-shadow: 0 6px 28px rgba(181,137,90,0.14); }
.trip-card h3 { font-size: 2rem; margin-bottom: 16px; }
.trip-card p  { font-size: 0.95rem; line-height: 1.72; margin-bottom: 24px; }

/* ─── Dividers ──────────────────────────────────────────── */
.bronze-line      { width: 48px; height: 1px; background: var(--bronze); margin: 24px auto; }
.bronze-line-left { margin: 20px 0; }

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 32px 0;
  color: rgba(250,247,242,0.65);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
/* Footer logo */
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
}
/* Fallback footer brand text (shown if logo fails) */
.footer-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.5);
}
.footer-nav-label, .footer-connect-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.63rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 160px;
  gap: 10px 28px;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.86rem;
  color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-connect-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.86rem;
  color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}
.footer-connect-item:hover { color: var(--white); }
.footer-connect-item svg { width: 16px; height: 16px; color: var(--bronze); flex-shrink: 0; }
/* Small footer CTA button */
.btn-footer-cta {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1.5px solid var(--bronze);
  color: var(--bronze);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  min-height: 40px;
}
.btn-footer-cta:hover { background: var(--bronze); color: var(--cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 11px;
  color: rgba(250,247,242,0.3);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { max-height: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }

  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 20px 70px; }

  .grid-3,
  .grid-2,
  .grid-5,
  .steps,
  .services-grid,
  .two-col,
  .two-col-60-40 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Dawn photo — landscape on mobile */
  .dawn-photo { aspect-ratio: 4/3; }

  /* Blog grid stacks */
  #blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-nav { max-height: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* All buttons at least 44px tall */
  .btn { min-height: 44px; padding: 12px 24px; }
  .filter-btn { min-height: 44px; }

  /* Cards stack cleanly */
  .trip-card { padding: 32px 24px; }
  .service-card { padding: 28px 24px; }
  .card { padding: 28px 20px; }
}
