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

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; width: 100%; }

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --ivory:       #FDF9F6;
  --blush-light: #F5E4EA;
  --blush:       #ECC8D2;
  --rose:        #C9748A;
  --berry:       #7A2D45;
  --ink:         #1E1419;
  --ink-mid:     #5C3D48;
  --ink-soft:    #9A7A84;
  --rule:        rgba(122, 45, 69, 0.13);

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

/* ─── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Utility ────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.rule { border: none; border-top: 0.5px solid var(--rule); margin: 0; }

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  border-bottom: 0.5px solid var(--rule);
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--berry); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--rule);
  min-height: 480px;
}

.hero__left {
  padding: 5rem 3rem 5rem 2.5rem;
  border-right: 0.5px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--berry);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero__body {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.95;
  max-width: 380px;
  font-weight: 300;
}

.hero__right {
  background: var(--blush-light);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.hero__note {
  background: var(--ivory);
  padding: 1.5rem;
  border-left: 2px solid var(--rose);
  margin: 2rem;
}

.hero__right .btn--berry {
  margin: 0 2rem 2rem;
  align-self: flex-start;
}

.hero__note {
  background: var(--ivory);
  padding: 1.5rem;
  border-left: 2px solid var(--rose);
}

.hero__note-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 400;
}

.hero__note p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-body);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.btn--berry {
  color: var(--ivory);
  background: var(--berry);
  padding: 0.85rem 2rem;
}

.btn--berry:hover { background: var(--rose); }

.btn--outline {
  color: var(--berry);
  background: transparent;
  border: 0.5px solid var(--rose);
  padding: 0.65rem 1.5rem;
}

.btn--outline:hover { background: var(--berry); color: var(--ivory); border-color: var(--berry); }

/* ─── Section wrapper ────────────────────────────────── */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--rule);
  flex-wrap: wrap;
}

.section__header-left { display: flex; align-items: baseline; gap: 1.25rem; }

.section__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
}

/* ─── Filter / dropdown ──────────────────────────────── */
.filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.filter__select {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--berry);
  border: 0.5px solid var(--rose);
  background: var(--ivory);
  padding: 0.45rem 1.8rem 0.45rem 0.75rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9748A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  outline: none;
}

.filter__select:focus { border-color: var(--berry); }

/* ─── Tiles grid ─────────────────────────────────────── */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
}

.tile {
  background: var(--ivory);
  transition: background 0.15s;
  cursor: pointer;
}

.tile:hover { background: var(--blush-light); }

.tile__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.tile__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tile__img-placeholder-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--rose);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.tile__body { padding: 1.5rem 1.5rem 1.75rem; }

.tile__meta {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.tile__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.tile__teaser {
  font-size: 0.82rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

.tile__read {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 0.5px solid var(--rose);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.tiles--three { grid-template-columns: repeat(3, 1fr); }

.tile__read:hover { color: var(--berry); border-color: var(--berry); }

/* ─── Entry (individual post) ────────────────────────── */
.entry {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 0.5px solid var(--rule);
}

.entry__sidebar {
  padding: 2.5rem 2rem;
  border-right: 0.5px solid var(--rule);
  background: var(--blush-light);
}

.entry__sidebar-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 400;
}

.entry__meta-row {
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.entry__meta-row:last-child { border-bottom: none; }

.entry__meta-key {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}

.entry__meta-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
}

.entry__body { padding: 2.5rem; }

.entry__body .eyebrow { margin-bottom: 1rem; }

.entry__body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.entry__body p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 1rem;
}

.entry__body p:last-child { margin-bottom: 0; }

.entry__body p em {
  font-style: italic;
  color: var(--berry);
}

/* ─── Destinations band ──────────────────────────────── */
.dest-band {
  background: var(--blush-light);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  padding: 4rem 2.5rem;
}

.dest-band__inner {
  max-width: 980px;
  margin: 0 auto;
}

.dest-band__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  width: 100%;
}

.dest-band__tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--berry);
  border: 0.5px solid var(--rose);
  padding: 0.45rem 1.1rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-weight: 400;
}

.dest-band__tag:hover { background: var(--berry); color: var(--ivory); border-color: var(--berry); }

/* ─── About band ─────────────────────────────────────── */
.about-band {
  border-top: 0.5px solid var(--rule);
}

.about-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-band__left {
  padding: 5rem 3rem 5rem 2.5rem;
  border-right: 0.5px solid var(--rule);
}

.about-band__left .eyebrow { margin-bottom: 1.75rem; }

.about-band__left h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

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

.about-band__left p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 2;
  font-weight: 300;
}

.about-band__right {
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar {
  padding: 1.1rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.pillar:first-child { border-top: 0.5px solid var(--rule); }

.pillar__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.pillar__body {
  font-size: 0.83rem;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 2rem;
  border-top: 0.5px solid var(--rule);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── Nav dropdown ───────────────────────────────────── */
.nav__dropdown-wrap { position: relative; }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: var(--ivory);
  border: 0.5px solid var(--rule);
  min-width: 540px;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 1000;
}

.nav__dropdown.is-open { display: grid; }

.nav__dropdown-col { padding: 1.5rem; border-right: 0.5px solid var(--rule); }
.nav__dropdown-col:last-of-type { border-right: none; }
.nav__dropdown-heading { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; font-weight: 400; }
.nav__dropdown-list { list-style: none; display: flex; flex-direction: column; gap: 0.1rem; }
.nav__dropdown-list a { font-size: 0.78rem; font-weight: 300; color: var(--ink-mid); padding: 0.2rem 0; display: block; transition: color 0.15s; }
.nav__dropdown-list a:hover { color: var(--berry); }
.nav__dropdown-footer { grid-column: 1 / -1; border-top: 0.5px solid var(--rule); padding: 0.75rem 1.5rem; }
.nav__dropdown-footer a { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); transition: color 0.15s; }
.nav__dropdown-footer a:hover { color: var(--berry); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav { padding: 1rem 1.5rem; }
  .nav__logo { font-size: 0.85rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 0.5px solid var(--rule);
    padding: 1.5rem;
    gap: 1.25rem;
    z-index: 999;
  }
  .nav__dropdown {
    position: static;
    min-width: 100%;
    grid-template-columns: 1fr;
    border: none;
    border-top: 0.5px solid var(--rule);
    margin-top: 0.5rem;
  }
  .nav__dropdown.is-open { display: flex; flex-direction: column; }
  .nav__dropdown-col { border-right: none; border-bottom: 0.5px solid var(--rule); padding: 1rem 0; }
  .nav__dropdown-footer { padding: 0.75rem 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { border-right: none; border-bottom: 0.5px solid var(--rule); padding: 2.5rem 1.5rem; }
  .hero__left .eyebrow { margin-bottom: 1rem; }
  .hero__headline { font-size: 2.4rem; }
  .hero__right { padding: 0; gap: 0; }
  .hero__note { margin: 1.5rem; }
  .hero__right .btn--berry { margin: 0 1.5rem 1.5rem; }

  /* Section */
  .section { padding: 2.5rem 1.5rem; }
  .section__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Tiles */
  .tiles, .tiles--three { grid-template-columns: 1fr; }
  .tile__body { padding: 1.25rem; }

  /* Entry sidebar/body (homepage) */
  .entry { grid-template-columns: 1fr; }
  .entry__sidebar { border-right: none; border-bottom: 0.5px solid var(--rule); }

  /* About */
  .about-band__inner { grid-template-columns: 1fr; }
  .about-band__left { border-right: none; border-bottom: 0.5px solid var(--rule); padding: 2.5rem 1.5rem; }
  .about-band__right { padding: 2.5rem 1.5rem; min-height: 260px; }

  /* Destinations band */
  .dest-band { padding: 2.5rem 1.5rem; }

  /* Places grid */
  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .places-section { padding: 2.5rem 1.5rem; }
  .places-group { margin-bottom: 2.5rem; }

  /* Filter */
  .filter { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .filter__select { width: 100%; }

  /* Map */
  #map, #home-map { height: 300px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .places-grid { grid-template-columns: 1fr; }
  .nav__dropdown { display: none !important; }
  .nav__dropdown.is-open { display: flex !important; }
}
