/* ============================================
   AESTHETIC TRAVEL FINDS — Global Styles v2
   Brand: Sand #D4A373 | Cream #FEFAE0 | Sage #CCD5AE | Charcoal #3D405B
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   Design: Editorial luxury magazine
   ============================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:         #C8956B;
  --sand-light:   #DEB896;
  --sand-pale:    #F0DDD0;
  --cream:        #FBF7F0;
  --cream-deep:   #F5EFE4;
  --sage:         #B8C4A0;
  --sage-dark:    #8FA677;
  --sage-pale:    #DDE6CE;
  --charcoal:     #2C2D2E;
  --charcoal-mid: #4A4B4C;
  --warm-white:   #FDFAF5;
  --warm-gray:    #B0A99F;
  --light-gray:   #EDE8DF;
  --text:         #2C2D2E;
  --text-mid:     #5A5652;
  --text-light:   #8A8480;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --max-width:    1240px;
  --content-width: 780px;
  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 149, 107, 0.15);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--sand); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--charcoal);
  border-bottom-color: var(--sand);
}

/* ============================================
   HERO — Full-Bleed Editorial
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?w=1800&q=90') center/cover no-repeat;
  background-color: #3a3228;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 45, 46, 0.52) 0%,
    rgba(44, 45, 46, 0.38) 60%,
    rgba(44, 45, 46, 0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--sand-light);
  border: 1px solid rgba(222, 184, 150, 0.5);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  border-radius: 1px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #FDFAF5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--sand-light);
}
.hero p {
  font-size: 1.05rem;
  color: rgba(253, 250, 245, 0.78);
  line-height: 1.85;
  margin-bottom: 2.8rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
}
.hero-short {
  min-height: 52vh;
  background-position: center 30%;
}
.hero-short .hero-content { max-width: 600px; }
.hero-short h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 1px;
  transition: var(--transition);
  cursor: pointer; border: none;
}
.btn-primary {
  background: #FDFAF5;
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--sand);
  color: #FDFAF5;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 149, 107, 0.4);
}
.btn-outline {
  background: transparent;
  color: #FDFAF5;
  border: 1.5px solid rgba(253, 250, 245, 0.6);
}
.btn-outline:hover {
  background: rgba(253, 250, 245, 0.12);
  border-color: #FDFAF5;
}
.btn-sand {
  background: var(--sand);
  color: #FDFAF5;
}
.btn-sand:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(44, 45, 46, 0.2);
}
.btn-dark {
  background: var(--charcoal);
  color: #FDFAF5;
}
.btn-dark:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

/* ============================================
   EDITORIAL FEATURE SECTION (new)
   ============================================ */
.editorial-feature {
  background: var(--cream-deep);
  padding: 0;
  overflow: hidden;
}
.editorial-feature-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.editorial-img {
  position: relative;
  overflow: hidden;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.editorial-img:hover img { transform: scale(1.03); }
.editorial-text {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-eyebrow {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.editorial-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.editorial-text h2 em { font-style: italic; color: var(--sand); }
.editorial-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 420px;
}
.editorial-link {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  border-bottom: 1.5px solid var(--sand);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: var(--transition);
}
.editorial-link:hover {
  color: var(--sand);
}

/* ============================================
   SECTION BASICS
   ============================================ */
.section {
  padding: 5.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-alt {
  background: var(--cream-deep);
}
.section-alt > .section { /* keep inner max-width */
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .eyebrow {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sand);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; }
.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 1rem auto 0;
  font-weight: 300;
}
.section-divider {
  width: 40px; height: 1px;
  background: var(--sand);
  margin: 1.2rem auto;
}

/* ============================================
   CATEGORY GRID — Editorial 2×2
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.cat-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: var(--light-gray);
  aspect-ratio: 4/5;
}
/* First card: wider feature */
.cat-card:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(transparent, rgba(44, 45, 46, 0.72));
}
.cat-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 400;
  color: #FDFAF5;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.cat-card-overlay p {
  font-size: 0.75rem;
  color: rgba(253, 250, 245, 0.7);
  letter-spacing: 0.06em;
  font-weight: 300;
}
.cat-card-overlay .cat-arrow {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand-light);
  border-bottom: 1px solid rgba(222, 184, 150, 0.5);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
}
.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRODUCT GRID — Pin Style (Portrait)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  display: block;
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(200, 149, 107, 0.1);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(44, 45, 46, 0.1);
  border-color: rgba(200, 149, 107, 0.2);
}
.product-card-img {
  aspect-ratio: 3/4;   /* Portrait — like the pins */
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(251, 247, 240, 0.92);
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
  padding: 0.3rem 0.7rem;
  border-radius: 1px;
}
.product-card-body { padding: 1.4rem 1.5rem 0.8rem; }
.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.5rem 1.4rem;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal);
}
.product-link {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1px;
  transition: var(--transition);
}
.product-link:hover { color: var(--charcoal); border-bottom-color: var(--charcoal); }

/* ============================================
   PULL QUOTE (new)
   ============================================ */
.pull-quote {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
  position: relative;
}
.pull-quote blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--sand-pale);
  font-family: var(--font-heading);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}

/* ============================================
   NEWSLETTER / CTA STRIP
   ============================================ */
.section-cta {
  background: var(--charcoal);
  padding: 5rem 2rem;
  text-align: center;
}
.section-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #FDFAF5;
  margin-bottom: 0.8rem;
}
.section-cta h2 em { font-style: italic; color: var(--sand-light); }
.section-cta p {
  color: rgba(253, 250, 245, 0.65);
  margin-bottom: 2.2rem;
  font-weight: 300;
  font-size: 1rem;
  max-width: 440px;
  margin-left: auto; margin-right: auto;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail { padding-top: 90px; }
.product-detail-hero {
  max-width: var(--content-width);
  margin: 0 auto; padding: 2.5rem 2rem;
}
.breadcrumb {
  font-size: 0.75rem; color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 300;
}
.breadcrumb a { color: var(--sand); }
.breadcrumb a:hover { color: var(--charcoal); }
.product-detail-img {
  width: 100%; aspect-ratio: 16/10;
  border-radius: 2px; overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--cream-deep);
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.product-detail-meta {
  font-size: 0.8rem; color: var(--text-light);
  margin-bottom: 2rem;
  display: flex; gap: 1.2rem; align-items: center;
  font-weight: 300;
}
.product-detail-meta .tag {
  background: var(--sand-pale);
  padding: 0.25rem 0.9rem;
  border-radius: 1px;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
.product-detail-content {
  max-width: var(--content-width);
  margin: 0 auto; padding: 0 2rem 5rem;
}
.product-detail-content p {
  font-size: 1.05rem; line-height: 1.9;
  margin-bottom: 1.6rem;
  color: var(--text-mid);
  font-weight: 300;
}
.product-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

/* Affiliate CTA Box */
.affiliate-cta {
  background: var(--cream-deep);
  border-left: 3px solid var(--sand);
  padding: 2.2rem 2.5rem;
  margin: 2.5rem 0;
  border-radius: 0 2px 2px 0;
}
.affiliate-cta .price {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.affiliate-cta p {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
  margin-bottom: 1.2rem !important;
  font-weight: 300 !important;
}
.affiliate-cta .btn { margin-top: 0.5rem; }
.affiliate-disclosure {
  font-size: 0.7rem; color: var(--warm-gray);
  margin-top: 0.8rem; font-style: italic;
}

/* Pro / Con */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 2rem 0;
}
.pros, .cons { padding: 1.8rem; border-radius: 2px; }
.pros { background: rgba(184, 196, 160, 0.15); border-top: 2px solid var(--sage); }
.cons { background: rgba(200, 149, 107, 0.08); border-top: 2px solid var(--sand-light); }
.pros h3, .cons h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 1rem;
}
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li {
  font-size: 0.9rem; line-height: 1.65;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative; font-weight: 300;
}
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--sage-dark); font-weight: 700; }
.cons li::before { content: "–"; position: absolute; left: 0; color: var(--sand); font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(253, 250, 245, 0.6);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 400;
  color: #FDFAF5;
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; font-weight: 300; }
.footer h4 {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand-light);
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }
.footer li a {
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.55);
  font-weight: 300;
}
.footer li a:hover { color: #FDFAF5; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  display: flex; justify-content: space-between;
  font-size: 0.75rem; font-weight: 300;
}
.footer-bottom a { color: rgba(253, 250, 245, 0.4); }
.footer-bottom a:hover { color: rgba(253, 250, 245, 0.7); }

/* ============================================
   CATEGORY PAGE HERO (short variant)
   ============================================ */
.hero-category {
  min-height: 45vh;
  background-image:
    url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?w=1600&q=85');
  background-position: center 40%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .editorial-feature-inner {
    grid-template-columns: 1fr;
  }
  .editorial-img { min-height: 340px; }
  .editorial-text { padding: 3rem 2rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card:first-child { grid-row: auto; aspect-ratio: 4/5; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { min-height: 85vh; padding: 100px 1.5rem 60px; }
  .hero-short { min-height: 50vh; }
  .section { padding: 3.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .product-detail-hero, .product-detail-content { padding-left: 1.2rem; padding-right: 1.2rem; }
  .editorial-text { padding: 2.5rem 1.5rem; }
  .editorial-text h2 { font-size: 1.8rem; }
}
