/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,21,.85) 0%, rgba(28,24,21,.1) 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(241,231,211,.6);
  margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 200px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.025em;
  color: var(--bone);
  margin-bottom: 32px;
}
.hero__h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(241,231,211,.75);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__booking {
  max-width: 760px;
}

/* ── Intro ──────────────────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__text h2 {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.015em;
  margin-bottom: 28px;
}
.intro__text h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.intro__text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 480px;
}
.intro__aside {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--muted);
  line-height: 1.5;
  border-left: 2px solid var(--bone-2);
  padding-left: 24px;
  margin-top: 32px;
}
.intro__image {
  position: relative;
}
.intro__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-arch);
}

@media (max-width: 768px) {
  .intro { grid-template-columns: 1fr; gap: 48px; }
  .intro__image { order: -1; }
}

/* ── Apartments section ─────────────────────────────────────── */
.apts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.apts-header {
  grid-column: 1 / -1;
}
.apts-header h2 {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.015em;
}
.apts-header h2 em { font-style: italic; color: var(--terracotta); }

@media (max-width: 768px) {
  .apts-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Testimonial ────────────────────────────────────────────── */
.testimonial-section {
  background: var(--bone);
}
.testimonial-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-block__quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.testimonial-block__quote::before { content: "\201C"; }
.testimonial-block__quote::after  { content: "\201D"; }
.testimonial-block__author {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.testimonial-block__stars {
  font-size: 22px;
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.testimonial-block__review-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.testimonial-block__source {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 200ms;
}
.testimonial-block__source:hover {
  text-decoration-color: currentColor;
}

/* ── Food picks ─────────────────────────────────────────────── */
.food-picks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.food-pick-card {
  padding: 28px 24px;
  background: var(--bone);
  border-radius: 4px;
}
.food-pick-card__cat {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.food-pick-card__name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.food-pick-card__town {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.food-pick-card__note {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--terracotta);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .food-picks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .food-picks { grid-template-columns: 1fr; }
}

/* ── Testimonial slider ─────────────────────────────────────── */
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  min-height: 200px;
}
.testimonial-slide {
  display: none;
  text-align: center;
  animation: fade-in .4s ease;
}
.testimonial-slide.is-active { display: block; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--bone-2);
  cursor: pointer;
  padding: 0;
  transition: background 200ms, transform 200ms;
}
.testimonial-dot.is-active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* ── Places to visit ────────────────────────────────────────── */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.place-card {
  display: flex;
  flex-direction: column;
}
.place-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone-2);
  margin-bottom: 20px;
  position: relative;
}
.place-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.place-card:hover .place-card__img img { transform: scale(1.04); }
.place-card__slideshow { overflow: hidden; }
.place-card__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}
.place-card__slide.is-active { opacity: 1; }
.place-card__slideshow .place-card__slide { transform: none; }
.place-card:hover .place-card__slideshow .place-card__slide { transform: none; }
.place-card__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.place-card__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background 200ms;
}
.place-card__dot.is-active { background: #fff; }
.place-card__meta {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.place-card__title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.place-card__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .places-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .places-grid { grid-template-columns: 1fr; }
}

/* ── Shared section h2 (03 Food / 04 Day / 05 Places / 06 Testimonials) */
.section-h2 {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.015em;
}
.section-h2 em {
  font-style: italic;
  color: var(--terracotta);
}

/* ── CTA section ────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}
.cta-section h2 em { color: var(--terracotta); font-style: normal; }
.cta-section p {
  font-size: 18px;
  color: rgba(241,231,211,.6);
  margin-bottom: 40px;
  max-width: 480px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
}

/* ── Datepicker ─────────────────────────────────────────── */
.booking-strip__input--dp { cursor: pointer; }
.booking-strip__input--dp::placeholder { color: rgba(241,231,211,.3); }

.dp {
  position: fixed;
  z-index: 9999;
  width: 260px;
  background: #2a2320;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  font-family: var(--sans);
  font-size: 14px;
}
.dp__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--bone);
}
.dp__nav {
  background: none;
  border: none;
  color: rgba(241,231,211,.45);
  font-size: 20px;
  line-height: 1;
  padding: 2px 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 120ms, background 120ms;
}
.dp__nav:hover { color: var(--bone); background: rgba(255,255,255,.07); }
.dp__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.dp__dow span {
  text-align: center;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(241,231,211,.3);
  padding: 4px 0;
}
.dp__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp__cell {
  text-align: center;
  padding: 6px 2px;
  font-size: 13px;
  color: rgba(241,231,211,.85);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.dp__cell:not(:disabled):not(.dp__blank):hover { background: rgba(255,255,255,.1); }
.dp__blank { visibility: hidden; cursor: default; }
.dp__off   { color: rgba(241,231,211,.2); cursor: default; }
.dp__today { color: var(--terracotta); font-weight: 700; }
.dp__sel   { background: var(--terracotta); color: #fff; font-weight: 600; }
.dp__sel:hover { background: var(--terracotta-deep); }
