/* ===========================
   JEN FROM THE CITY — Styles
   =========================== */

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

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

:root {
  --cream:    #FAF7F2;
  --white:    #FFFFFF;
  --charcoal: #1C1C1E;
  --warm-gray:#6B6762;
  --gold:     #B8935A;
  --gold-lt:  #D4AA78;
  --border:   #E8E2D9;
  --nav-h:    72px;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { color: var(--warm-gray); max-width: 60ch; }

/* --- Utilities --- */
.container { width: min(1100px, 90%); margin-inline: auto; }
.section    { padding-block: clamp(4rem, 8vw, 8rem); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .875rem 2rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(250, 247, 242, .97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  width: min(1100px, 90%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-book {
  font-size: .8rem !important;
  padding: .5rem 1.2rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 2px;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold-lt) !important; color: var(--white) !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all .3s;
}

/* Nav on hero (transparent) */
.nav-transparent .nav-logo { color: var(--white); }
.nav-transparent .nav-links a { color: rgba(255,255,255,.85); }
.nav-transparent .nav-links a:hover { color: var(--white); }
.nav-transparent .nav-toggle span { background: var(--white); }
.nav-transparent.scrolled .nav-logo { color: var(--charcoal); }
.nav-transparent.scrolled .nav-links a { color: var(--charcoal); }
.nav-transparent.scrolled .nav-toggle span { background: var(--charcoal); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: .875rem;
    color: var(--charcoal) !important;
    font-size: .875rem;
  }
  .nav-book {
    margin: .5rem auto;
    display: inline-block;
    width: auto;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522083165195-3424ed129620?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .45;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 90%);
  margin-inline: auto;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 45ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.35);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   INTRO STRIP
   =========================== */
.intro-strip {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 1.75rem 1rem;
}
.intro-strip p {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--serif);
  font-style: italic;
  max-width: 70ch;
  margin-inline: auto;
}

/* ===========================
   ABOUT PREVIEW
   =========================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 2px;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about-eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: .5rem; }

@media (max-width: 768px) {
  .about-preview { grid-template-columns: 1fr; }
  .about-img-wrap::before { display: none; }
}

/* ===========================
   TOURS SECTION
   =========================== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tour-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.tour-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.tour-card:hover .tour-card-img img { transform: scale(1.04); }
.tour-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tour-tag {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .5rem;
}
.tour-card-body h3 { margin-bottom: .75rem; }
.tour-card-body p  { font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.tour-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  color: var(--warm-gray);
}
.tour-meta span { display: flex; align-items: center; gap: .35rem; }
.tour-card-body .btn { align-self: flex-start; }

/* Two-button layout for public tours */
.tour-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Booking page date highlight */
.book-date-block {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.book-date-block .date-label {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: .35rem;
}
.book-date-block .date-sub {
  font-size: .85rem;
  color: var(--warm-gray);
  margin-bottom: 1rem;
  max-width: unset;
}
.book-date-block .form-row { margin-bottom: 0; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--charcoal); color: var(--white); }
.testimonials h2 { color: var(--white); text-align: center; margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold-lt);
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { margin-bottom: 2rem; margin-inline: auto; }
.cta-banner .btn + .btn { margin-left: 1rem; }

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter {
  background: var(--gold);
  color: var(--white);
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: .75rem; }
.newsletter p  { color: rgba(255,255,255,.85); margin-inline: auto; margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: .875rem 1.25rem;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .95rem;
  width: min(320px, 100%);
  outline: none;
}
.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px var(--charcoal);
}
.newsletter-form .btn {
  background: var(--charcoal);
  color: var(--white);
  white-space: nowrap;
}
.newsletter-form .btn:hover { background: #333; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.5);
  padding-block: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .875rem; max-width: 28ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-social { display: flex; gap: 1rem; margin-top: .5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: .8rem;
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1485871981521-5b1fd3805eee?w=1600&auto=format&fit=crop&q=70');
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.7); margin-inline: auto; font-size: 1.1rem; }

/* ===========================
   TOURS PAGE
   =========================== */
.tours-list { display: flex; flex-direction: column; gap: 4rem; }
.tour-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tour-detail:nth-child(even) .tour-detail-img { order: 2; }
.tour-detail:nth-child(even) .tour-detail-text { order: 1; }
.tour-detail-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  border-radius: 2px;
}
.tour-detail-text .eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.tour-detail-text h2 { margin-bottom: 1rem; }
.tour-detail-text p  { margin-bottom: 1.25rem; }
.tour-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--warm-gray);
}
.tour-highlights li::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .05em;
  font-size: 1.2em;
}
.tour-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.tour-info-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.tour-info-item .label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.tour-info-item .value {
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .tour-detail { grid-template-columns: 1fr; gap: 2rem; }
  .tour-detail:nth-child(even) .tour-detail-img { order: 0; }
  .tour-detail:nth-child(even) .tour-detail-text { order: 0; }
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-sticky img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.about-body h2 { margin-bottom: 1.25rem; }
.about-body p  { margin-bottom: 1.25rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-body .large {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.value-item h4 { font-family: var(--serif); margin-bottom: .5rem; font-size: 1.1rem; }
.value-item p { font-size: .875rem; max-width: unset; }

@media (max-width: 768px) {
  .about-full { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail-item .label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .25rem;
}
.contact-detail-item .value { font-size: .95rem; }
.contact-social { display: flex; gap: 1rem; }
.contact-social a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem;
  color: var(--warm-gray);
  transition: color .2s;
}
.contact-social a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--warm-gray); margin-top: -.5rem; max-width: unset; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ===========================
   SUCCESS / 404
   =========================== */
.success-msg {
  display: none;
  background: #f0faf4;
  border: 1px solid #a3d9b5;
  border-radius: 2px;
  padding: 1rem 1.25rem;
  color: #2e7d52;
  font-size: .9rem;
  margin-top: 1rem;
}
