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

html { scroll-behavior: smooth; }

:root {
  --red:        #C0392B;
  --dark:       #1a1a1a;
  --mid:        #444;
  --muted:      #888;
  --text-muted: #888;
  --border:     #e2e2e2;
  --bg:         #f9f7f4;
  --white:      #ffffff;
  --light:      #ffffff;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}


body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; object-fit: cover; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.nav-authors {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.nav-authors span { color: var(--border); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
    url('../images/IMG_1160-800.jpeg') center/cover no-repeat;
}

@media (min-width: 769px) {
  .hero-bg {
    background:
      linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
      url('../images/IMG_1160-full.jpeg') 50% 20%/cover no-repeat;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px 72px;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 50px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.hero-meta strong { color: var(--white); }
.hero-meta .dot { width: 3px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 50%; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
}

/* ── SECTION WRAPPER ─────────────────────────── */
.section { padding: 80px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark);
}

.section-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.section-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.section-link:hover { opacity: 0.7; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-cta-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.section-cta-link:hover { opacity: 0.65; }

.section-cta-link--light {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ── POST GRID ───────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.post-card-img {
  height: 220px;
  overflow: hidden;
}

.post-card-img img {
  height: 100%;
  transition: transform 0.4s;
}

.post-card:hover .post-card-img img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.post-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}

.post-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FEATURED (big 2-col) ─────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.featured-card-img {
  height: 480px;
  overflow: hidden;
}

.featured-card-img img {
  height: 100%;
  transition: transform 0.5s;
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.04);
}

.featured-card-body {
  padding: 28px 0 0;
}

.featured-card-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.featured-card:hover .featured-card-title { color: var(--red); }

.featured-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── SIDE STACK (right col of featured) ────────── */
.side-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
}

.side-card:first-child { border-top: 1px solid var(--border); }
.side-card:hover { opacity: 0.75; }

.side-card-img {
  height: 80px;
  overflow: hidden;
}

.side-card-img img { height: 100%; }

.side-card-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

/* ── DESTINATIONS STRIP ─────────────────────────── */
.destinations { background: var(--dark); color: var(--white); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.dest-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.dest-item img {
  height: 100%;
  filter: brightness(0.65);
  transition: transform 0.4s, filter 0.4s;
}

.dest-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.45);
}

.dest-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.dest-label h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.dest-label p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── ABOUT ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--red);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.authors-row {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.author-card {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.author-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.author-card h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.author-social {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--red);
  text-decoration: none;
}
.author-social:hover {
  text-decoration: underline;
}

.about-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 480px;
}

.about-img-main {
  grid-column: 1 / 3;
  height: 280px;
  overflow: hidden;
}

.about-img-main img { height: 100%; }

.about-img-sub { overflow: hidden; height: 184px; }
.about-img-sub img { height: 100%; }

/* ── INSTAGRAM STRIP ────────────────────────────── */
.insta-section { background: var(--white); }

.insta-label {
  text-align: center;
  margin-bottom: 32px;
}

.insta-label p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.insta-label h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.insta-item {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.insta-item img {
  height: 100%;
  transition: transform 0.3s, filter 0.3s;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.insta-overlay span {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.insta-item:hover .insta-overlay { background: rgba(0,0,0,0.3); }
.insta-item:hover .insta-overlay span { opacity: 1; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 56px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand h2 span { color: var(--red); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col li:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── UTILITY ─────────────────────────────────────── */
.tag-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 24px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-img { height: 360px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── HAMBURGER BUTTON ────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  padding: 1rem 2rem 2rem;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-mobile ul li {
  border-bottom: 1px solid var(--border);
}

.nav-mobile ul li a {
  display: block;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
  color: var(--red);
  padding-left: 8px;
}

.nav-mobile-footer {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-mobile-footer::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-authors { display: none; }
  .nav-links { display: none; }
  .section { padding: 56px 20px; }
  .hero-content { padding: 0 20px 56px; }
  .hero-scroll { right: 20px; }
  .post-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px 24px; }
}
