@import url('/styles/fonts.css');

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

:root {
  --green:   #2C3E35;
  --green-l: #3D5248;
  --cream:   #F7F4EF;
  --sand:    #E8DFD0;
  --warm:    #C8B89A;
  --text:    #2A2A25;
  --muted:   #6B6B60;
  --max:     860px;
}

html { font-family: 'Inter', system-ui, sans-serif; font-size: 17px; line-height: 1.7; color: var(--text); background: var(--cream); scroll-behavior: smooth; }
body { display: flex; flex-direction: column; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: underline; text-decoration-color: var(--warm); text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--green); text-decoration-thickness: 2px; }
/* Nav/footer/button links ohne Unterstrich */
.site-logo, .nav-links a, .nav-cta, .hero-cta, .split-cta, .home-cta-btn,
.home-cta-btn--outline, .intro-cta-primary, .intro-cta-secondary,
.card-link, footer a, .wp-block-button__link, .footer-logo { text-decoration: none; }

/* ── NAV ── */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.site-logo {
  font-family: 'Lora', Georgia, serif; font-size: 1.5rem; font-weight: 600;
  color: #fff; letter-spacing: .03em; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.site-logo:hover { text-decoration: none; opacity: .88; }
.nav-links { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem 2rem; }
.nav-links a {
  font-size: .8rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.9); text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.nav-links a:hover { color: #fff; text-decoration: none; opacity: .8; }
.nav-links a.nav-active { color: #fff; font-weight: 500; text-decoration: underline; text-decoration-color: var(--warm); text-underline-offset: 4px; }
.nav-links .nav-cta {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  padding: .3rem .85rem;
  border-radius: 3px;
  color: #fff !important;
  letter-spacing: .08em;
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: rgba(255,255,255,.3); opacity: 1; }

/* ── HERO ── */
.hero {
  position: relative; height: 72vh; min-height: 440px; max-height: 700px; overflow: hidden; background: var(--green);
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,25,.35) 0%, rgba(20,32,25,.15) 45%, rgba(15,25,18,.7) 100%);
}
.hero-content {
  position: relative; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 0 1.5rem 4.5rem; text-align: center;
  animation: heroFadeUp 1.1s ease-out both; animation-delay: .15s;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm); margin-bottom: .8rem; }
.hero-title {
  font-family: 'Lora', Georgia, serif; font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 600; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.3);
  line-height: 1.2; max-width: 720px;
}
.hero-sub { margin-top: .75rem; font-size: .9rem; color: rgba(255,255,255,.78); font-weight: 300; max-width: 480px; letter-spacing: .04em; }
.hero-cta {
  margin-top: 2rem; display: inline-block; padding: .7rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.65); color: #fff;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px;
  transition: background .25s, border-color .25s;
}
.hero-cta:hover { background: rgba(255,255,255,.15); border-color: #fff; text-decoration: none; }

/* ── MAIN (inner pages) ── */
main {
  flex: 1; max-width: var(--max); width: 100%;
  margin: 0 auto; padding: 3.5rem 1.5rem 5rem;
}
main > * { animation: contentUp .65s ease-out both; }
main > *:nth-child(1) { animation-delay: .04s; }
main > *:nth-child(2) { animation-delay: .1s; }
main > *:nth-child(3) { animation-delay: .16s; }
main > *:nth-child(4) { animation-delay: .22s; }
main > *:nth-child(5) { animation-delay: .28s; }
main > *:nth-child(n+6) { animation-delay: .34s; }
@keyframes contentUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 2rem; color: var(--green);
}
main > h1 { display: none; } /* hero-title replaces it */

h2, h2.wp-block-heading {
  font-family: 'Lora', Georgia, serif; font-size: 1.55rem; font-weight: 600;
  color: var(--green); line-height: 1.25; margin: 3rem 0 1rem;
  padding-top: .5rem;
}
h2.wp-block-heading::before {
  content: ''; display: block; width: 36px; height: 2px;
  background: var(--warm); margin-bottom: .75rem;
}
h2.has-text-align-center::before { margin-left: auto; margin-right: auto; }

h3 { font-family: 'Lora', Georgia, serif; font-size: 1.15rem; font-weight: 600; color: var(--green); margin: 2rem 0 .5rem; }
p  { margin-bottom: 1.1rem; color: var(--text); font-weight: 300; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1rem 1.5rem; font-weight: 300; }
li { margin-bottom: .3rem; }
strong { font-weight: 500; }

/* lead paragraph */
main > p:first-of-type,
main > .wp-block-columns:first-child p:first-child {
  font-size: 1.08rem; line-height: 1.8; color: var(--text);
}

/* ── IMAGES ── */
figure { margin: 2rem 0; }
figure img, .wp-block-image img { border-radius: 5px; box-shadow: 0 3px 18px rgba(0,0,0,.1); }
figcaption { font-size: .8rem; color: var(--muted); margin-top: .5rem; text-align: center; font-style: italic; }

/* Full-bleed */
.wp-block-image.alignfull,
.wp-block-image.alignwide { margin-left: -1.5rem; margin-right: -1.5rem; max-width: calc(100% + 3rem); }
.wp-block-image.alignfull img,
.wp-block-image.alignwide img { border-radius: 0; width: 100%; max-height: 480px; object-fit: cover; box-shadow: none; }

/* Centered images */
.wp-block-image.aligncenter { text-align: center; }
.wp-block-image.aligncenter img { margin: 0 auto; }

/* ── COLUMNS ── */
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 2.5rem; margin: 1.5rem 0 2rem; align-items: center; }
.wp-block-column { flex: 1 1 240px; min-width: 0; }
.wp-block-columns .wp-block-image { margin: 0; }
.wp-block-columns .wp-block-image img { height: 340px; object-fit: cover; width: 100%; box-shadow: 0 6px 28px rgba(0,0,0,.12); }

/* Coloured-background columns */
.wp-block-columns.has-background {
  padding: 2rem; border-radius: 8px; margin: 2rem 0;
  background: var(--sand) !important; /* override inline */
}
.wp-block-columns.alignfull { margin-left: -1.5rem; margin-right: -1.5rem; padding: 2rem 1.5rem; border-radius: 0; }

/* ── GALLERY ── */
.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem; margin: 2.5rem 0;
}
.wp-block-gallery .wp-block-image { margin: 0; }
.wp-block-gallery figure { margin: 0; overflow: hidden; border-radius: 5px; }
.wp-block-gallery img { width: 100%; height: 220px; object-fit: cover; box-shadow: none; border-radius: 0; transition: transform .4s ease; }
.wp-block-gallery figure:hover img { transform: scale(1.04); }

/* ── GROUP / COVER ── */
.wp-block-group.has-background { padding: 2.5rem; border-radius: 8px; margin: 2rem 0; }

.wp-block-cover {
  position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; overflow: hidden; margin: 2.5rem -1.5rem; padding: 3rem 2rem;
}
.wp-block-cover__image-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wp-block-cover::after { content: ''; position: absolute; inset: 0; background: rgba(30,44,36,.5); }
.wp-block-cover__inner-container { position: relative; z-index: 1; color: #fff; text-align: center; max-width: 600px; }
.wp-block-cover .wp-block-heading { color: #fff; }
.wp-block-cover .wp-block-heading::before { background: rgba(255,255,255,.5); }

/* ── BUTTONS ── */
.wp-block-buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0; }
.wp-block-button__link {
  display: inline-block; padding: .65rem 1.75rem;
  background: var(--green); color: #fff; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; transition: background .2s;
}
.wp-block-button__link:hover { background: var(--green-l); text-decoration: none; }
.is-style-outline .wp-block-button__link {
  background: transparent; border: 1.5px solid var(--green); color: var(--green);
}
.is-style-outline .wp-block-button__link:hover { background: var(--green); color: #fff; }

/* ── TABLE ── */
.wp-block-table table { width: 100%; border-collapse: collapse; font-size: .92rem; font-weight: 300; }
.wp-block-table td, .wp-block-table th { padding: .6rem .9rem; border: 1px solid var(--sand); }
.wp-block-table th { background: var(--sand); font-weight: 500; }

/* ── SEPARATOR ── */
.wp-block-separator { border: none; margin: 3rem auto; width: 60px; border-top: 2px solid var(--warm); }

/* ── QUOTE ── */
.wp-block-quote {
  border-left: 3px solid var(--warm); padding: .5rem 0 .5rem 1.5rem;
  margin: 1.5rem 0; font-style: italic; color: var(--muted);
}

/* ── EMBEDS ── */
.wp-block-embed { margin: 1.5rem 0; }
.wp-block-embed__wrapper iframe { width: 100%; border-radius: 6px; }

/* ── HELPERS ── */
.has-vivid-red-color { color: #c0392b; }
.has-text-align-center { text-align: center; }
.has-text-align-right  { text-align: right; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* ── HOMEPAGE SECTIONS (custom template) ── */
.page-home { padding: 0; max-width: 100%; }

.home-section { padding: 5rem 1.5rem; }
.home-section-inner { max-width: var(--max); margin: 0 auto; }

.home-intro { background: #fff; text-align: center; }
.home-intro-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm); margin-bottom: .75rem; }
.home-intro-heading { font-family: 'Lora', Georgia, serif; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 600; color: var(--green); line-height: 1.25; margin-bottom: 1.25rem; }
.home-intro-text { max-width: 620px; margin: 0 auto; color: var(--muted); font-weight: 300; font-size: 1.05rem; line-height: 1.8; }

.home-photo-strip { background: var(--cream); padding: 0 1.5rem 4rem; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 1100px; margin: 0 auto; }
.photo-strip figure { margin: 0; overflow: hidden; border-radius: 5px; }
.photo-strip img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption { font-size: .78rem; color: var(--muted); padding: .4rem .2rem 0; font-style: italic; }
.photo-strip-link { display: block; text-decoration: none; }
.photo-strip-link:hover img { transform: scale(1.04); }
.photo-strip-link:hover figcaption { color: var(--green); }

.home-feature-bar {
  position: relative; height: 420px; overflow: hidden;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.home-feature-bar-overlay { position: absolute; inset: 0; background: rgba(20,35,28,.55); display: flex; align-items: center; justify-content: center; }
.home-feature-bar-text { text-align: center; color: #fff; padding: 0 1.5rem; }
.home-feature-bar-text h2 { font-family: 'Lora', Georgia, serif; font-size: clamp(1.6rem,3.5vw,2.6rem); color: #fff; margin: 0 0 1rem; }
.home-feature-bar-text h2::before { display: none; }
.home-feature-bar-text p { color: rgba(255,255,255,.82); font-weight: 300; max-width: 520px; margin: 0 auto 1.5rem; }

.home-cards { background: var(--cream); }
.cards-heading { text-align: center; margin-bottom: 2.5rem; }
.cards-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm); margin-bottom: .5rem; }
.cards-title { font-family: 'Lora', Georgia, serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 600; color: var(--green); }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-title { font-family: 'Lora', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: var(--green); margin-bottom: .5rem; }
.card-text { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.65; margin: 0; }
.card-link { display: inline-block; margin-top: .75rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--warm); padding-bottom: 1px; }

.home-split { background: #fff; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: var(--max); margin: 0 auto; }
.split-text {}
.split-tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm); margin-bottom: .75rem; }
.split-heading { font-family: 'Lora', Georgia, serif; font-size: clamp(1.5rem,3vw,2rem); font-weight: 600; color: var(--green); line-height: 1.25; margin-bottom: 1.25rem; }
.split-body { color: var(--muted); font-weight: 300; font-size: .97rem; line-height: 1.8; margin-bottom: 1.5rem; }
.split-cta {
  display: inline-block; padding: .65rem 1.75rem; background: var(--green); color: #fff;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; transition: background .2s;
}
.split-cta:hover { background: var(--green-l); text-decoration: none; }
.split-image { border-radius: 6px; overflow: hidden; }
.split-image img { width: 100%; height: 380px; object-fit: cover; }

.home-reviews { background: var(--green); padding: 5rem 1.5rem; text-align: center; }
.home-reviews h2 { color: var(--warm); font-family: 'Lora', Georgia, serif; font-size: 1.1rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 3rem; font-weight: 400; }
.home-reviews h2::before { display: none; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: var(--max); margin: 0 auto; }
.review-card { text-align: left; }
.review-quote { font-family: 'Lora', Georgia, serif; font-style: italic; color: rgba(255,255,255,.88); font-size: .97rem; line-height: 1.75; margin-bottom: .75rem; }
.review-author { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--warm); }

.home-cta-bar { background: var(--sand); text-align: center; padding: 5rem 1.5rem; }
.home-cta-bar h2 { font-family: 'Lora', Georgia, serif; font-size: clamp(1.5rem,3vw,2rem); color: var(--green); margin-bottom: 1rem; }
.home-cta-bar h2::before { margin: 0 auto .75rem; }
.home-cta-bar p { color: var(--muted); font-weight: 300; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.home-cta-btn {
  display: inline-block; padding: .8rem 2.5rem; background: var(--green); color: #fff;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; transition: background .2s, color .2s;
}
.home-cta-btn:hover { background: var(--green-l); text-decoration: none; color: #fff; }
.home-cta-btn--outline {
  background: transparent; border: 1.5px solid var(--green); color: var(--green);
}
.home-cta-btn--outline:hover { background: var(--green); color: #fff; }

/* Intro CTAs */
.intro-ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.intro-cta-primary {
  display: inline-block; padding: .75rem 2rem; background: var(--green); color: #fff;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; transition: background .2s;
}
.intro-cta-primary:hover { background: var(--green-l); text-decoration: none; color: #fff; }
.intro-cta-secondary {
  display: inline-block; padding: .75rem 2rem; border: 1.5px solid var(--green);
  color: var(--green); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; transition: background .2s, color .2s;
}
.intro-cta-secondary:hover { background: var(--green); color: #fff; text-decoration: none; }

/* Inline CTA-Banner */
.home-inline-cta {
  background: #f0ece4;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.inline-cta-text { font-size: 1.05rem; color: var(--text); font-weight: 300; margin-bottom: 1.25rem; }
.inline-cta-buttons { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--green); color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 300; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer-col { min-width: 140px; }
.footer-col-title { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--warm); margin-bottom: .75rem; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
footer a { color: rgba(255,255,255,.65); }
footer a:hover { color: #fff; text-decoration: none; }
.footer-logo { font-family: 'Lora', Georgia, serif; font-size: 1.2rem; color: #fff; font-weight: 600; display: block; margin-bottom: .4rem; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 1.5rem; text-align: center; font-size: .78rem; color: rgba(255,255,255,.4); max-width: 1100px; margin: 0 auto; }

/* ── CALENDAR ── */
.cal-intro { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.cal-error { background: #fdf0f0; border-left: 3px solid #c0392b; padding: .75rem 1rem; margin-bottom: 1.5rem; border-radius: 3px; font-size: .9rem; }
.cal-legend { display: flex; gap: 1.5rem; margin-bottom: 2rem; font-size: .85rem; color: var(--muted); }
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2.5rem 2rem; margin-bottom: 3rem; }
.cal-month-title { font-family: 'Lora', Georgia, serif; font-size: 1rem; font-weight: 600; color: var(--green); margin: 0 0 .75rem; }
.cal-days-header { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: .25rem; }
.cal-weekday { text-align: center; font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; padding: .15rem 0; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .82rem; border-radius: 3px; font-weight: 300; }
.cal-free   { background: #edf5ec; color: #2a5c27; }
.cal-booked { background: var(--sand); color: var(--muted); text-decoration: line-through; }
.cal-past   { opacity: .35; }
.cal-cta { margin-top: 1rem; font-size: .95rem; }

/* ── BEACH SLIDER (Homepage) ── */
.beach-slider {
  position: relative;
  overflow: hidden;
  background: var(--green);
  height: 520px;
}
.bs-track {
  display: flex;
  height: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bs-track::-webkit-scrollbar { display: none; }

.bs-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.bs-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.bs-slide figcaption {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,35,28,.55);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
  font-style: normal;
  pointer-events: none;
}

/* Arrows */
.bs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
  padding: 0;
}
.bs-btn:hover { background: rgba(255,255,255,.35); }
.bs-prev { left: 1.25rem; }
.bs-next { right: 1.25rem; }

/* Dots */
.bs-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.bs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.bs-dot--active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .beach-slider { height: 320px; }
  .bs-btn { width: 36px; height: 36px; font-size: 1.5rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .hero { height: 58vh; }
  .site-nav { padding: 1rem 1.25rem; }
  .nav-links { gap: .2rem 1rem; }
  .nav-links a { font-size: .73rem; }
  main { padding: 2.5rem 1.25rem 4rem; }
  .wp-block-columns { flex-direction: column; gap: 1.25rem; }
  .wp-block-columns .wp-block-image img { height: 240px; }
  .cards-grid, .reviews-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 220px; }
  .split-inner { grid-template-columns: 1fr; gap: 2rem; }
  .split-image { order: -1; }
  .split-image img { height: 260px; }
  .home-feature-bar { background-attachment: scroll; height: 300px; }
  .wp-block-gallery { grid-template-columns: repeat(2,1fr); }
  .home-reviews { padding: 3.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .wp-block-gallery { grid-template-columns: 1fr; }
}
