/* ===== Daffodil Theme ===== */
/* Botanical luxury — warm creams, serif elegance, airy layouts */

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

:root {
  --t-bg: #faf7f3;
  --t-surface: #ffffff;
  --t-surface2: #f2ede7;
  --t-border: #e8e0d5;
  --t-text: #2a2118;
  --t-text2: #6b5e4e;
  --t-muted: #a09282;
  --t-accent: #b8936a;
  --t-accent2: #8b6343;
  --t-rose: #c9a4a4;
  --t-sage: #8a9e8a;
  --t-dark: #2a2118;
  --t-heading-font: 'Mr De Haviland', 'Cormorant Garamond', serif;
  --t-heading2-font: 'Cormorant Garamond', serif;
  --t-display-font: 'Cormorant Garamond', serif;
  --t-nav-h: 72px;
  --t-radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--t-bg);
  color: var(--t-text);
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.rich-text strong {
  font-weight: 600;
  color: var(--t-text);
}

.rich-text em {
  font-style: italic;
  color: var(--t-accent2);
}

[data-parallax-kind="media"] {
  --media-parallax: 0px;
  overflow: hidden;
}

[data-parallax-kind="media"] img {
  transform: translate3d(0, var(--media-parallax), 0) scale(1.06);
  transform-origin: center;
  transition: transform .45s ease-out;
  will-change: transform;
}

/* ── Nav ─────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--t-nav-h);
  background: color-mix(in srgb, var(--t-bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--t-border);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 40px;
}

.site-nav.is-static {
  position: relative;
}

.site-nav.variant-light {
  background: color-mix(in srgb, var(--t-surface) 96%, transparent);
}

.site-nav.variant-dark {
  background: color-mix(in srgb, var(--t-dark) 94%, transparent);
  border-bottom-color: color-mix(in srgb, var(--t-bg) 12%, transparent);
}

.site-nav.variant-dark .nav-logo,
.site-nav.variant-dark .nav-links a,
.site-nav.variant-dark .nav-toggle {
  color: rgba(250,247,243,.9);
}

.site-nav.variant-dark .nav-toggle {
  border-color: rgba(250,247,243,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.site-nav.variant-dark .nav-links a:hover {
  color: #fff;
}

.nav-cta {
  margin-left: auto;
  white-space: nowrap;
}

.site-nav .nav-links + .nav-cta {
  margin-left: 0;
}

.nav-overlay {
  position: fixed;
  inset: 110px 0 0;
  background: rgba(42,33,24,.22);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 94;
}

.nav-logo {
  font-family: var(--t-display-font), serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--t-text);
  flex-shrink: 0;
}

.nav-logo .brand-mark { color: var(--t-accent); }

.site-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-brand-link.has-brand-media {
  gap: 0;
}

.site-brand-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-brand-media {
  display: block;
  width: auto;
  max-width: min(260px, 48vw);
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--t-border);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(242,237,231,.92));
  color: var(--t-text);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(42,33,24,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.nav-toggle:hover {
  border-color: rgba(184,147,106,.45);
  box-shadow: 0 12px 28px rgba(42,33,24,.12);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(184,147,106,.45);
  outline-offset: 2px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-text2);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--t-accent);
  transition: width .3s ease;
}

.nav-links a:hover { color: var(--t-text); }
.nav-links a:hover::after { width: 100%; }

/* ── Components ─────────────────────────────── */
.cms-component { width: 100%; }

/* Hero */
.comp-hero {
  --hero-heading-size: clamp(3.8rem, 7.8vw, 6.3rem);
  --hero-sub-size: 1.35rem;
  --hero-overlay-opacity: 1;
  --hero-image-focus-x: 50%;
  --hero-image-focus-y: 50%;
  --hero-image-fit: cover;
  --hero-image-zoom: 1;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}

.comp-hero .hero-bg {
  position: absolute;
  inset: -8% 0;
  background-size: var(--hero-image-fit, cover);
  background-position: var(--hero-image-focus-x, 50%) var(--hero-image-focus-y, 50%);
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(calc(1.08 * var(--hero-image-zoom, 1)));
  will-change: transform;
}

.comp-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,247,243,.2), rgba(250,247,243,.8));
  opacity: var(--hero-overlay-opacity, 1);
}

.comp-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comp-hero .hero-ornament {
  font-size: 28px;
  color: var(--t-accent);
  margin-bottom: 24px;
  display: block;
  animation: fadeDown .8s ease both;
}

.comp-hero h1 {
  font-family: var(--t-heading-font), serif;
  font-size: var(--hero-heading-size);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 24px;
  animation: fadeDown .8s .1s ease both;
  text-shadow: 0 8px 28px rgba(42,33,24,.16);
}

.comp-hero .hero-sub {
  font-size: var(--hero-sub-size);
  font-weight: 400;
  color: rgba(42, 33, 24, .92);
  max-width: 620px;
  margin: 0 auto 36px;
  animation: fadeDown .8s .2s ease both;
  letter-spacing: .02em;
  padding: 16px 22px;
  text-shadow: 0 4px 18px rgba(42,33,24,.08);
}

.comp-hero .hero-btn-wrap {
  animation: fadeDown .8s .3s ease both;
}

.comp-text-block h2,
.comp-image-text h2,
.comp-gallery .section-title,
.comp-features .section-title,
.comp-social-links .section-title,
.comp-osm-map .section-title,
.comp-contact .section-title,
.comp-cta h2,
.comp-posts-list .section-title {
  font-family: var(--t-heading2-font), serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

/* Text Block */
.comp-text-block {
  padding: 80px 8%;
}

.comp-text-block .text-inner {
  max-width: 760px;
}

.comp-text-block.align-center { text-align: center; }
.comp-text-block.align-center .text-inner { margin: 0 auto; }
.comp-text-block.align-right { text-align: right; }
.comp-text-block.align-right .text-inner { margin-left: auto; }

.comp-text-block h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--t-text);
}

.comp-text-block p {
  color: var(--t-text2);
  font-size: .97rem;
  line-height: 1.85;
}

/* Image + Text */
.comp-image-text {
  padding: 80px 8%;
}

.comp-image-text .it-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.comp-image-text.img-right .it-grid { direction: rtl; }
.comp-image-text.img-right .it-grid > * { direction: ltr; }

.comp-image-text .it-img {
  --image-text-image-fit: cover;
  --image-text-image-focus-x: 50%;
  --image-text-image-focus-y: 50%;
  --image-text-image-ratio: 4 / 3;
  --image-text-image-zoom: 1;
  aspect-ratio: var(--image-text-image-ratio, 4 / 3);
  overflow: hidden;
  border-radius: var(--t-radius);
  background: var(--t-surface2);
}

.comp-image-text .it-img img {
  width: 100%;
  height: 100%;
  object-fit: var(--image-text-image-fit, cover);
  object-position: var(--image-text-image-focus-x, 50%) var(--image-text-image-focus-y, 50%);
  transform: scale(var(--image-text-image-zoom, 1));
  transition: transform .6s ease;
}

.comp-image-text .it-img:hover img { transform: translate3d(0, var(--media-parallax), 0) scale(calc(var(--image-text-image-zoom, 1) * 1.08)); }

.comp-image-text .it-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--t-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--t-border);
}

.comp-image-text .it-text { padding: 20px 0; }

.comp-image-text .it-text-panel {
  position: relative;
}

.comp-image-text .it-text-panel.has-background {
  padding: clamp(24px, 3vw, 40px);
  border-radius: calc(var(--t-radius) + 4px);
  overflow: hidden;
  // box-shadow: 0 22px 46px rgba(42,33,24,.08);
}

.comp-image-text .it-text-panel.has-background.bg-color,
.comp-image-text .it-text-panel.has-background.bg-gradient {
  border: 1px solid rgba(184,147,106,.14);
}

.comp-image-text .it-text-panel.has-background.bg-image {
  // color: #fff;
}

.comp-image-text .it-text-panel.has-background.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  // background: linear-gradient(180deg, rgba(42,33,24,.12), rgba(42,33,24,.42));
  pointer-events: none;
}

.comp-image-text .it-text-panel.has-background > * {
  position: relative;
  z-index: 1;
}

.comp-image-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.comp-image-text p {
  color: var(--t-text2);
  line-height: 1.85;
  margin-bottom: 24px;
}

.comp-image-text .it-text-panel.has-background.bg-image h2,
.comp-image-text .it-text-panel.has-background.bg-image p,
.comp-image-text .it-text-panel.has-background.bg-image .rich-text,
.comp-image-text .it-text-panel.has-background.bg-image .rich-text * {
  color: inherit;
}

.comp-image-text .it-text-panel.has-background .btn-theme-outline:hover {
  background: rgba(255,255,255,.14);
}

/* Gallery */
.comp-gallery { padding: 80px 8%; }
.comp-gallery.width-full { padding-left: 4%; padding-right: 4%; }

.comp-gallery .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

.comp-gallery .gallery-grid {
  display: grid;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.comp-gallery .gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.comp-gallery .gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.comp-gallery .gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.comp-gallery.layout-grid .gallery-grid {
  grid-template-columns: repeat(var(--gallery-columns, 3), minmax(0, 1fr));
}

.comp-gallery.layout-list .gallery-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.comp-gallery.layout-list.width-full .gallery-grid,
.comp-gallery.width-full .gallery-grid {
  max-width: none;
}

.comp-gallery.layout-list .gallery-item {
  aspect-ratio: 16 / 9;
}

.comp-gallery.layout-masonry .gallery-grid {
  display: block;
  columns: var(--gallery-columns, 3);
  column-gap: 12px;
}

.comp-gallery.layout-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  aspect-ratio: auto;
}

.comp-gallery.layout-masonry .gallery-item img {
  height: auto;
  min-height: 220px;
  object-fit: var(--gallery-item-fit, cover);
}

.comp-gallery .gallery-item {
  --gallery-item-fit: cover;
  --gallery-item-focus-x: 50%;
  --gallery-item-focus-y: 50%;
  --gallery-item-ratio: 3 / 4;
  --gallery-item-zoom: 1;
  aspect-ratio: var(--gallery-item-ratio, 3 / 4);
  overflow: hidden;
  border-radius: var(--t-radius);
  background: var(--t-surface2);
}

.comp-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: var(--gallery-item-fit, cover);
  object-position: var(--gallery-item-focus-x, 50%) var(--gallery-item-focus-y, 50%);
  transform: scale(var(--gallery-item-zoom, 1));
  transition: transform .5s ease;
}

.comp-gallery .gallery-item:hover img { transform: translate3d(0, var(--media-parallax), 0) scale(calc(var(--gallery-item-zoom, 1) * 1.08)); }

/* Features */
.comp-features {
  padding: 80px 8%;
  background: linear-gradient(180deg, rgba(242,237,231,.78), rgba(255,255,255,.52));
}

.comp-features .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
}

.comp-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.comp-features .feature-item {
  text-align: center;
  position: relative;
  --feature-pad-x: 8px;
}

.comp-features.variant-bordered .feature-item {
  padding: 30px 28px;
  --feature-pad-x: 28px;
  border: 1px solid rgba(184,147,106,.2);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 42px rgba(42,33,24,.06);
}

.comp-features.variant-plain .feature-item {
  padding: 10px 8px;
}

.comp-features .feature-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  width: calc(100% + (var(--feature-pad-x) * 2));
  margin-left: calc(var(--feature-pad-x) * -1);
  margin-right: calc(var(--feature-pad-x) * -1);
}

.comp-features .feature-media {
  --feature-media-fit: cover;
  --feature-media-focus-x: 50%;
  --feature-media-focus-y: 50%;
  --feature-media-ratio: 16 / 9;
  --feature-media-zoom: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: var(--feature-media-ratio, 16 / 9);
  min-height: 120px;
  padding: 0;
  border-radius: 0;
  background: rgba(255,255,255,.88);
  border-top: 1px solid rgba(184,147,106,.18);
  border-bottom: 1px solid rgba(184,147,106,.18);
  border-left: 0;
  border-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(42,33,24,.05);
  overflow: hidden;
  margin-top: -31px;
}

.comp-features .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--feature-media-fit, cover);
  object-position: var(--feature-media-focus-x, 50%) var(--feature-media-focus-y, 50%);
  transform: scale(var(--feature-media-zoom, 1));
  transition: transform .5s ease;
}

.comp-features .feature-item:hover .feature-media img {
  transform: translate3d(0, var(--media-parallax), 0) scale(calc(var(--feature-media-zoom, 1) * 1.08));
}

.comp-features .feature-icon {
  font-size: 32px;
  color: var(--t-accent);
  display: block;
  align-self: center;
}

.comp-features .feature-title {
  font-family: var(--t-heading-font), serif;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
}

.comp-features .feature-text {
  font-size: .9rem;
  color: var(--t-text2);
  line-height: 1.7;
}

.comp-features .feature-cta-wrap {
  margin-top: 22px;
}

.comp-features .feature-cta {
  padding: 11px 20px;
  font-size: .72rem;
  letter-spacing: .12em;
}

/* Testimonial */
.comp-testimonial {
  padding: 80px 8%;
  text-align: center;
}

.comp-testimonial .testimonial-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--t-radius);
  position: relative;
}

.comp-testimonial .t-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: .5;
  color: var(--t-accent);
  opacity: .4;
  margin-bottom: 24px;
  display: block;
}

.comp-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--t-text);
}

.comp-testimonial .t-author {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-muted);
}

.comp-testimonial .t-author strong {
  color: var(--t-text);
  font-weight: 500;
}

/* CTA */
.comp-cta {
  padding: 96px 8%;
  text-align: center;
}

.comp-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.comp-cta p {
  font-size: 1rem;
  opacity: .75;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */
.comp-contact { padding: 80px 8%; }

/* OpenStreetMap */
.comp-osm-map {
  padding: 80px 8%;
}

.osm-map-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.osm-map-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-osm-map .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.osm-map-address {
  font-size: 1rem;
  line-height: 1;
  color: var(--t-text);
  white-space: pre-line;
}

.osm-map-details {
  color: var(--t-text2);
}

.osm-map-link {
  align-self: flex-start;
}

.osm-map-frame {
  position: relative;
  min-height: var(--osm-map-height, 360px);
  border: 1px solid var(--t-border);
  background: var(--t-surface2);
  overflow: hidden;
}

.osm-map-canvas {
  width: 100%;
  min-height: var(--osm-map-height, 360px);
}

.osm-map-frame .leaflet-container {
  width: 100%;
  min-height: var(--osm-map-height, 360px);
  font: inherit;
}

.osm-map-status {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--t-muted);
  background: linear-gradient(180deg, rgba(250,247,243,.92), rgba(242,237,231,.95));
}

.osm-map-status[data-state="error"] {
  color: #8f3f3f;
}

.osm-map-status[hidden] {
  display: none;
}

.comp-contact .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

.comp-contact form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-contact input,
.comp-contact textarea,
.comp-contact select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--t-border);
  border-radius: var(--t-radius);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--t-text);
  transition: border-color .2s;
  outline: none;
}

.comp-contact input:focus,
.comp-contact textarea:focus { border-color: var(--t-accent); }
.comp-contact textarea { min-height: 130px; resize: vertical; }
.comp-contact input::placeholder, .comp-contact textarea::placeholder { color: var(--t-muted); }

.comp-contact .contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.comp-contact .contact-form-note,
.comp-contact .contact-form-status {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}

.comp-contact .contact-form-note {
  color: #8f3f3f;
}

.comp-contact .contact-form-status {
  min-height: 1.5em;
  color: var(--t-muted);
}

.comp-contact .contact-form-status.is-pending {
  color: var(--t-text2);
}

.comp-contact .contact-form-status.is-success {
  color: #2f6b4f;
}

.comp-contact .contact-form-status.is-error {
  color: #8f3f3f;
}

/* Posts List */
.comp-posts-list {
  padding: 80px 8%;
}

.comp-posts-list.width-full {
  padding-left: 4%;
  padding-right: 4%;
}

.comp-posts-list .posts-list-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comp-posts-list.width-full .posts-list-inner {
  max-width: none;
}

.comp-posts-list .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.posts-list-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--t-text2);
}

.posts-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.comp-posts-list.layout-grid .posts-list-grid {
  grid-template-columns: repeat(var(--posts-columns, 3), minmax(0, 1fr));
}

.comp-posts-list.layout-list .posts-list-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comp-posts-list.layout-list .post-list-card {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  align-items: stretch;
}

.comp-posts-list.layout-list .post-list-media {
  aspect-ratio: auto;
  min-height: 220px;
  height: 100%;
}

.comp-posts-list.layout-masonry .posts-list-grid {
  display: block;
  columns: var(--posts-columns, 3);
  column-gap: 24px;
}

.comp-posts-list.layout-masonry .post-list-card {
  display: inline-flex;
  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid;
}

.post-list-card {
  background: var(--t-surface);
  border: 1px solid var(--t-border);
  display: flex;
  flex-direction: column;
}

.post-list-media {
  aspect-ratio: 4 / 3;
  background: var(--t-surface2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-border);
  font-size: 30px;
}

.post-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-list-card:hover .post-list-media img {
  transform: translate3d(0, var(--media-parallax), 0) scale(1.08);
}

.post-list-body {
  padding: 20px;
}

.post-list-title {
  font-family: var(--t-heading-font), serif;
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1;
}

.post-list-text {
  color: var(--t-text2);
  font-size: .95rem;
  line-height: 1.8;
}

.posts-list-empty {
  padding: 36px;
  text-align: center;
  border: 1px solid var(--t-border);
  color: var(--t-muted);
  background: var(--t-surface2);
}

/* Divider */
.comp-divider { padding: 0 8%; }

.comp-divider.spacing-sm { padding-top: 24px; padding-bottom: 24px; }
.comp-divider.spacing-md { padding-top: 48px; padding-bottom: 48px; }
.comp-divider.spacing-lg { padding-top: 80px; padding-bottom: 80px; }

.comp-divider .div-line {
  border: none;
  border-top: 1px solid var(--t-border);
  max-width: 1100px;
  margin: 0 auto;
}

.comp-divider .div-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.comp-divider .div-dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--t-accent);
  opacity: .5;
}

.comp-divider .div-ornament {
  text-align: center;
  font-size: 20px;
  color: var(--t-accent);
  opacity: .6;
}

/* ── Shared ───────────────────────────────── */
.btn-theme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--t-radius);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-theme:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-theme-primary {
  background: var(--t-accent);
  color: white;
  border-color: var(--t-accent);
}
.btn-theme-primary:hover {
  background: var(--t-accent2);
  border-color: var(--t-accent2);
}

.btn-theme-outline {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn-theme-outline:hover {
  background: rgba(184,147,106,.08);
}

/* ── Footer ───────────────────────────────── */
.site-footer {
  background: var(--t-dark);
  color: rgba(250,247,243,.75);
  padding: 64px 8% 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,247,243,.1);
}

.footer-brand .nav-logo { color: rgba(250,247,243,.9); margin-bottom: 10px; }
.footer-brand .site-brand-media { max-height: 68px; filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg); }
.footer-brand p { font-size: .85rem; max-width: 300px; }
.footer-description { line-height: 1.8; }

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(250,247,243,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,243,.78);
  background: rgba(255,255,255,.03);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  color: rgba(250,247,243,.98);
  border-color: rgba(250,247,243,.26);
  background: rgba(255,255,255,.08);
}

.footer-social-link.has-brand-color {
  color: var(--social-brand-color, rgba(250,247,243,.92));
  border-color: color-mix(in srgb, var(--social-brand-color, rgba(250,247,243,.92)) 32%, rgba(250,247,243,.18));
  background: color-mix(in srgb, var(--social-brand-color, rgba(255,255,255,.08)) 10%, rgba(255,255,255,.03));
}

.footer-social-link.has-brand-color:hover {
  color: var(--social-brand-color, rgba(250,247,243,.98));
  border-color: color-mix(in srgb, var(--social-brand-color, rgba(250,247,243,.98)) 50%, rgba(250,247,243,.18));
  background: color-mix(in srgb, var(--social-brand-color, rgba(255,255,255,.12)) 16%, rgba(255,255,255,.08));
}

.social-link-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link-icon-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}

.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250,247,243,.5);
  transition: color .2s;
}
.footer-nav a:hover { color: rgba(250,247,243,.9); }

.footer-copy {
  max-width: 1100px;
  margin: 28px auto 0;
  font-size: .78rem;
  color: rgba(250,247,243,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer.variant-light {
  background: var(--t-surface2);
  color: var(--t-text2);
}

.site-footer.variant-light .footer-inner {
  border-bottom-color: rgba(42,33,24,.08);
}

.site-footer.variant-light .footer-brand .nav-logo,
.site-footer.variant-light .footer-nav a {
  color: var(--t-text);
}

.site-footer.variant-light .footer-social-link,
.site-footer.variant-minimal .footer-social-link {
  color: var(--t-text);
  border-color: rgba(42,33,24,.12);
  background: rgba(255,255,255,.4);
}

.site-footer.variant-light .footer-social-link:hover,
.site-footer.variant-minimal .footer-social-link:hover {
  color: var(--t-accent2);
  border-color: rgba(42,33,24,.22);
  background: rgba(255,255,255,.82);
}

.site-footer.variant-light .footer-nav a:hover {
  color: var(--t-accent2);
}

.site-footer.variant-light .footer-copy {
  color: rgba(42,33,24,.55);
}

.site-footer.variant-minimal {
  background: transparent;
  color: var(--t-text2);
  padding-top: 48px;
}

.site-footer.variant-minimal .footer-inner {
  border-bottom-color: rgba(42,33,24,.08);
}

.site-footer.variant-minimal .footer-brand .nav-logo,
.site-footer.variant-minimal .footer-nav a {
  color: var(--t-text);
}

.site-footer.variant-minimal .footer-copy {
  color: rgba(42,33,24,.5);
}

/* ── Social Links Component ────────────────── */
.comp-social-links {
  padding: 80px 8%;
  text-align: center;
}

.comp-social-links .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}

.social-links-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--t-text2);
  line-height: 1.8;
}

.social-links-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-link-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 12px 16px;
  border: 1px solid rgba(42,33,24,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--t-text);
  box-shadow: 0 10px 26px rgba(42,33,24,.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.social-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184,147,106,.45);
  box-shadow: 0 16px 32px rgba(42,33,24,.1);
  color: var(--t-accent2);
}

.social-link-card.has-brand-color {
  color: var(--social-brand-color, var(--t-text));
  border-color: color-mix(in srgb, var(--social-brand-color, var(--t-text)) 28%, rgba(42,33,24,.1));
  background: color-mix(in srgb, var(--social-brand-color, #fff) 8%, rgba(255,255,255,.72));
}

.social-link-card.has-brand-color:hover {
  color: var(--social-brand-color, var(--t-accent2));
  border-color: color-mix(in srgb, var(--social-brand-color, var(--t-accent2)) 48%, rgba(184,147,106,.45));
}

.social-link-label {
  font-size: .9rem;
  letter-spacing: .02em;
}

/* ── Animations ───────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 4%;
    gap: 24px;
  }
  .nav-cta {
    margin-left: 0;
  }
  .nav-links {
    gap: 18px;
  }
  .comp-image-text .it-grid { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .osm-map-shell { grid-template-columns: 1fr; }
  .comp-gallery .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .comp-gallery.layout-masonry .gallery-grid { columns: 2; }
  .comp-posts-list.layout-masonry .posts-list-grid { columns: 2; }
  .comp-posts-list.layout-list .post-list-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; }
  .social-links-grid { justify-content: stretch; }
  .social-link-card { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .site-nav {
    height: auto;
    min-height: var(--t-nav-h);
    padding: 12px 6%;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-cta {
    order: 4;
    width: 100%;
    justify-content: center;
  }
  .nav-logo {
    font-size: 1.2rem;
    letter-spacing: .05em;
    min-width: 0;
    max-width: calc(100% - 56px);
  }
  .site-brand-media {
    max-width: min(220px, 62vw);
    max-height: 48px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 6%;
    right: 6%;
    width: auto;
    margin-left: 0;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(184,147,106,.22);
    border-top: 1px solid rgba(184,147,106,.22);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,243,.97));
    box-shadow: 0 18px 45px rgba(42,33,24,.14);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index: 120;
  }
  .site-nav.is-open + .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 11px;
    letter-spacing: .1em;
    border-radius: 12px;
    background: transparent;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(184,147,106,.1);
    color: var(--t-text);
    transform: translateX(2px);
    outline: none;
  }
  .comp-osm-map {
    padding-left: 6%;
    padding-right: 6%;
  }
  .comp-hero { --hero-heading-size: clamp(2.8rem, 8vw, 4.2rem); }
  .comp-hero .hero-sub { padding: 14px 18px; }
  .comp-testimonial .testimonial-inner { padding: 40px 24px; }
  .comp-gallery .gallery-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .comp-gallery.layout-masonry .gallery-grid,
  .comp-posts-list.layout-masonry .posts-list-grid { columns: 1; }
}
