:root {
  --c-bg: #fbfaf7;
  --c-bg-warm: #f5efe8;
  --c-bg-cream: #f8f4ee;
  --c-text: #282420;
  --c-muted: #7c7168;
  --c-line: #e9ded3;
  --c-accent: #b69a7d;
  --c-accent-dark: #8d7158;
  --c-white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(48, 38, 30, 0.12);
  --shadow-card: 0 14px 40px rgba(48, 38, 30, 0.08);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 999px;
  --container: 1180px;
  --container-wide: 1440px;
  --container-narrow: 820px;
  --header-height: 82px;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-h1: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-h2: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-h3: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Brittany Signature", "Segoe Script", "Brush Script MT", cursive;
  --font-h1-weight: 300;
  --font-h2-weight: 300;
  --font-h3-weight: 300;
  --heading-text-transform: none;
  --h1-text-transform: none;
  --h2-text-transform: none;
  --h3-text-transform: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--c-accent);
  color: var(--c-white);
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  background: var(--c-text);
  color: var(--c-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(calc(100% - 2rem), var(--container-wide));
}

.container--narrow {
  width: min(calc(100% - 2rem), var(--container-narrow));
}

.site-main {
  min-height: 70vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(233, 222, 211, 0.8);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.home .site-header,
.single-oferta .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-color: transparent;
  color: var(--c-white);
}

.home .site-header.is-scrolled,
.single-oferta .site-header.is-scrolled,
.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.93);
  border-color: rgba(233, 222, 211, 0.9);
  box-shadow: 0 10px 30px rgba(30, 24, 20, 0.06);
  color: var(--c-text);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-brand {
  position: relative;
  z-index: 120;
  display: inline-flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(260px, 42vw);
  line-height: 1;
}

.site-logo {
  display: none;
  width: 100%;
}

.site-logo--default {
  display: block;
}

.site-logo__img,
.site-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.home .site-header:not(.is-scrolled) .site-logo--default,
.single-oferta .site-header:not(.is-scrolled) .site-logo--default {
  display: none;
}

.home .site-header:not(.is-scrolled) .site-logo--hero,
.single-oferta .site-header:not(.is-scrolled) .site-logo--hero {
  display: block;
}

.site-header.is-scrolled .site-logo--default,
.site-header.is-scrolled .site-logo--hero {
  display: none;
}

.site-header.is-scrolled .site-logo--sticky {
  display: block;
}

.site-footer__brand {
  max-width: min(240px, 70vw);
}

.site-footer__brand .custom-logo,
.site-footer__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.site-brand__title,
.site-footer__brand span {
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.site-brand__subtitle {
  margin-top: 0.25rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: currentColor;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  opacity: 0.45;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-socials a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}


/* Social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  opacity: 0.82;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 1;
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

.home .site-header:not(.is-scrolled) .social-link:hover,
.single-oferta .site-header:not(.is-scrolled) .social-link:hover {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-text);
}

.social-links--contact {
  margin-top: 2rem;
  align-items: stretch;
}

.social-links--contact .social-link {
  width: auto;
  height: auto;
  min-height: 48px;
  gap: 0.65rem;
  padding: 0.65rem 0.95rem;
  border-color: var(--c-line);
  border-radius: var(--radius-lg);
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links--contact .social-link:hover {
  color: var(--c-white);
  background: var(--c-text);
}

.social-links--footer {
  justify-content: center;
}

.social-links--footer .social-link {
  border-color: var(--c-line);
  color: var(--c-muted);
}

.social-links--footer .social-link:hover {
  color: var(--c-white);
}

.nav-toggle {
  position: relative;
  z-index: 120;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.8em;
  font-family: var(--font-heading);
  font-weight: 400;
  font-synthesis: none;
  text-transform: var(--heading-text-transform);
  line-height: 1.08;
  letter-spacing: 0.035em;
}

h1 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
  text-transform: var(--h1-text-transform);
  font-size: clamp(3rem, 8vw, 7.5rem);
}

h2 {
  font-family: var(--font-h2);
  font-weight: var(--font-h2-weight);
  text-transform: var(--h2-text-transform);
  font-size: clamp(2.25rem, 4.5vw, 4.6rem);
}

h3 {
  font-family: var(--font-h3);
  font-weight: var(--font-h3-weight);
  text-transform: var(--h3-text-transform);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin: 0 0 1.2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--c-accent-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero.has-image .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.prose {
  color: var(--c-muted);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--c-text);
}

.prose a:not(.btn) {
  color: var(--c-accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.prose img {
  border-radius: var(--radius-sm);
}

.prose--center {
  text-align: center;
}

/* Buttons */
.btn,
button.btn,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  background: var(--c-text);
  border: 1px solid var(--c-text);
  border-radius: var(--radius-lg);
  color: var(--c-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
}

.btn--light {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-text);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
}

.btn--outline:hover {
  color: var(--c-white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Layout sections */
.section {
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.section--warm {
  background: var(--c-bg-warm);
}

.section--cream {
  background: var(--c-bg-cream);
}

.section--narrow {
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.grid--2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.grid--center {
  align-items: center;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--c-muted);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--c-white);
  background: var(--c-text);
}

.hero--subpage {
  min-height: min(82svh, 760px);
}

.hero.has-soft-bg {
  background: radial-gradient(circle at top left, rgba(182, 154, 125, 0.25), transparent 45%), var(--c-bg-warm);
  color: var(--c-text);
}

.hero.has-soft-bg .hero__overlay {
  display: none;
}

.hero__image,
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 20, 17, 0.58), rgba(25, 20, 17, 0.18) 45%, rgba(25, 20, 17, 0.28));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero--home .hero__content {
  width: min(calc(100% - 2rem), 980px);
  text-align: center;
}

.hero__subtitle {
  width: min(100%, 650px);
  margin-inline: auto;
  color: currentColor;
  opacity: 0.82;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 48svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero--minimal {
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(3rem, 6vw, 6rem);
  background: var(--c-bg);
  text-align: center;
}

.page-hero--story.has-image {
  min-height: min(72svh, 760px);
  color: var(--c-white);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), 900px);
  text-align: center;
}

.page-hero p:not(.eyebrow) {
  width: min(100%, 680px);
  margin-inline: auto;
  color: var(--c-muted);
}

.page-hero.has-image p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

/* Intro */
.intro-split__media,
.about-page__media {
  position: relative;
}

.reveal-card {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: clamp(1.2rem, 4vw, 8rem) clamp(1.2rem, 4vw, 8rem) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--c-line);
}

.reveal-card--offset::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem 2rem 2rem -2rem;
  background: var(--c-bg-warm);
  border-radius: var(--radius-sm);
}

.reveal-card img,
.about-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-split__content {
  max-width: 560px;
}

/* Cards */
.story-grid,
.offer-grid,
.post-grid {
  display: grid;
  gap: 1rem;
}

.story-grid--preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.offer-card,
.post-card {
  position: relative;
}

.story-card__link,
.story-card__media,
.offer-card__media,
.post-card__media {
  display: block;
}

.story-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-line);
}

.story-card__media img,
.offer-card__media img,
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.story-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: var(--c-white);
  background: linear-gradient(to top, rgba(24, 20, 17, 0.58), rgba(24, 20, 17, 0.02) 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.story-card:hover .story-card__overlay {
  opacity: 1;
}

.story-card:hover img,
.offer-card:hover img,
.post-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.96);
}

.story-card__term {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.story-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.offer-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-line);
}

.offer-card__body,
.post-card__body {
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.offer-card__body h3 a,
.post-card h2 a {
  transition: color 0.25s ease;
}

.offer-card__body h3 a:hover,
.post-card h2 a:hover {
  color: var(--c-accent-dark);
}

.offer-card__body p:not(.eyebrow),
.post-card__body p {
  color: var(--c-muted);
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg);
}

.post-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Filters */
.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.filter-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  color: var(--c-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-pills a:hover,
.filter-pills a.is-active {
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

/* Gallery */
.masonry-gallery {
  columns: 3 280px;
  column-gap: 1rem;
}

.masonry-gallery--compact {
  columns: 3 260px;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--c-line);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  opacity: 0.92;
}

/* Offer single */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.package-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.package-card__badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-lg);
  background: var(--c-bg-warm);
  color: var(--c-accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card__price {
  margin: 0 0 1rem;
  color: var(--c-accent-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  list-style: none;
  color: var(--c-muted);
}

.package-card li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--c-accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 2rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.process-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--c-accent-dark);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
}

.process-card p {
  color: var(--c-muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.9rem 0 0;
  color: var(--c-muted);
}

/* CTA */
.cta-band {
  background: var(--c-bg);
}

.cta-band__inner {
  width: min(calc(100% - 2rem), 900px);
  padding: clamp(3rem, 7vw, 6rem);
  border: 1px solid var(--c-line);
  border-radius: clamp(1.5rem, 4vw, 4rem);
  background: radial-gradient(circle at top left, rgba(182, 154, 125, 0.15), transparent 45%), var(--c-bg-warm);
  text-align: center;
}

.cta-band__inner p:not(.eyebrow) {
  color: var(--c-muted);
}

/* Contact */
.contact-card,
.form-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-socials {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-line);
}

.contact-list span,
.contact-socials span {
  color: var(--c-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.contact-socials span {
  flex-basis: 100%;
}

.demo-form,
.wpcf7-form,
.fluentform {
  display: grid;
  gap: 1rem;
}

.demo-form label,
.wpcf7-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
textarea,
select {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem 1rem;
  color: var(--c-text);
  font-weight: 400;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  resize: vertical;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
textarea:focus,
select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(182, 154, 125, 0.13);
  background: var(--c-white);
}

.form-card__hint {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.82rem;
}



.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.contact-card--sticky {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.form-card--main h2,
.form-card--home h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.form-card__intro {
  color: var(--c-muted);
}

.czu-contact-form {
  display: grid;
  gap: 1.05rem;
}

.czu-contact-form--hide-labels .form-field {
  gap: 0;
}

.czu-contact-form--hide-labels .form-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.45rem;
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field em {
  color: var(--c-accent-dark);
  font-style: normal;
}

.form-field--other {
  display: none;
}

.form-field--other.is-visible {
  display: grid;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--c-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  accent-color: var(--c-accent-dark);
}

.form-alert {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-alert ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.form-alert--success {
  background: rgba(104, 135, 104, 0.14);
  border: 1px solid rgba(104, 135, 104, 0.3);
  color: #3e5f3e;
}

.form-alert--error {
  background: rgba(153, 74, 60, 0.1);
  border: 1px solid rgba(153, 74, 60, 0.25);
  color: #814034;
}

.czu-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-band--form {
  background: var(--c-bg);
}

.cta-band__inner--form {
  width: min(calc(100% - 2rem), 1040px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  text-align: left;
}

.cta-band__heading {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.cta-band__heading p:not(.eyebrow) {
  color: var(--c-muted);
}

.form-card--home {
  background: rgba(255, 255, 255, 0.72);
}

/* Pagination */
.pagination-wrap {
  margin-top: 3rem;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.8rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  color: var(--c-muted);
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

/* Footer */
.site-footer {
  padding-block: clamp(3rem, 7vw, 5.5rem) 2rem;
  background: var(--c-bg);
  text-align: center;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.site-footer__brand {
  display: inline-flex;
}

.site-footer__note,
.site-footer__copy {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.85rem;
}

.site-footer__contact,
.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--c-muted);
}

.site-footer__contact a:hover,
.footer-nav a:hover {
  color: var(--c-accent-dark);
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Placeholders / states */
.image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  background:
    radial-gradient(circle at 20% 20%, rgba(182, 154, 125, 0.22), transparent 30%),
    linear-gradient(135deg, #f0e5da, #fbfaf7);
}

.image-placeholder--portrait {
  aspect-ratio: 4 / 5;
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--c-line);
  border-radius: var(--radius-md);
  color: var(--c-muted);
  text-align: center;
}

/* Lightbox */
.czu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(20, 17, 15, 0.9);
}

.czu-lightbox.is-open {
  display: flex;
}

.czu-lightbox img {
  max-width: min(100%, 1300px);
  max-height: 90vh;
  object-fit: contain;
}

.czu-lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive,
  .post-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 980px) {
  .contact-layout,
  .cta-band__inner--form {
    grid-template-columns: 1fr;
  }

  .contact-card--sticky,
  .cta-band__heading {
    position: static;
  }

  .cta-band__inner--form {
    text-align: center;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    background: rgba(251, 250, 247, 0.98);
    color: var(--c-text);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  .primary-nav a {
    font-size: 1rem;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .prose--center-mobile,
  .intro-split__content {
    text-align: center;
    margin-inline: auto;
  }

  .intro-split__media,
  .about-page__media {
    max-width: 560px;
    margin-inline: auto;
  }

  .hero,
  .hero--subpage {
    min-height: 86svh;
  }

  .story-grid--preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .form-grid--2 {
    grid-template-columns: 1fr;
  }

  .social-links--contact {
    justify-content: center;
  }

  .social-links--contact .social-link {
    flex: 1 1 calc(50% - 0.65rem);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container,
  .container--wide,
  .container--narrow {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-brand {
    max-width: min(190px, 56vw);
  }

  .site-logo__img,
  .site-brand img {
    max-height: 46px;
  }

  .site-footer__brand {
    max-width: min(200px, 70vw);
  }

  .site-footer__brand .custom-logo,
  .site-footer__brand img {
    max-height: 46px;
  }

  .site-brand__title {
    font-size: 1.55rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive,
  .post-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .story-card__overlay {
    opacity: 1;
  }

  .masonry-gallery,
  .masonry-gallery--compact {
    columns: 1;
  }

  .cta-band__inner,
  .contact-card,
  .form-card {
    border-radius: var(--radius-md);
  }
}

/* --------------------------------------------------------------------------
   v1.0.7 — design polish, responsiveness, offer slider, footer, mobile menu
   -------------------------------------------------------------------------- */
:root {
  --c-bg: #fbfaf7;
  --c-bg-warm: #f3ece4;
  --c-bg-cream: #f7f1ea;
  --c-text: #24201d;
  --c-muted: #4e4842;
  --c-soft: #6b625b;
  --c-line: #e4d8cb;
  --c-accent: #b89b80;
  --c-accent-dark: #8b6e56;
  --shadow-soft: 0 22px 65px rgba(42, 34, 28, 0.13);
  --shadow-card: 0 14px 38px rgba(42, 34, 28, 0.075);
  --header-height: 76px;
}

body {
  color: var(--c-text);
  font-size: clamp(15px, 0.96vw, 16px);
  line-height: 1.72;
}

body.admin-bar .site-header {
  top: 32px;
}

p,
.prose,
.prose p,
.section-heading p:not(.eyebrow),
.offer-card__body p:not(.eyebrow),
.post-card__body p,
.package-card ul,
.process-card p,
.faq-list p,
.form-card__intro,
.cta-band__heading p:not(.eyebrow),
.cta-band__inner p:not(.eyebrow) {
  color: var(--c-muted);
}

h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
  letter-spacing: 0.025em;
}

h2 {
  font-size: clamp(2.15rem, 3.65vw, 4rem);
  letter-spacing: 0.025em;
}

h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.75rem);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--c-accent-dark);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.section {
  padding-block: clamp(4rem, 7.4vw, 7.4rem);
}

.section--narrow {
  padding-block: clamp(3rem, 5.4vw, 5.5rem);
}

.btn,
button.btn,
input[type="submit"] {
  min-height: 44px;
  padding: 0.78rem 1.25rem;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.site-header {
  min-height: var(--header-height);
}

.site-header__inner {
  min-height: var(--header-height);
}

.primary-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.nav-socials,
.social-links--header {
  gap: 0.5rem;
}

.social-links--header .social-link {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.72);
}

body:not(.home):not(.single-oferta) .site-header .social-links--header .social-link,
.site-header.is-scrolled .social-links--header .social-link {
  border-color: var(--c-line);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.hero,
.hero--subpage {
  min-height: min(74svh, 760px);
}

.hero--home {
  min-height: min(78svh, 820px);
}

.hero--home.hero--no-content {
  min-height: min(66svh, 700px);
}

.hero__overlay,
.page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.2), rgba(22, 18, 15, 0.08) 42%, rgba(22, 18, 15, 0.24)),
    linear-gradient(90deg, rgba(22, 18, 15, 0.34), rgba(22, 18, 15, 0.1) 52%, rgba(22, 18, 15, 0.22));
}

.hero::after,
.page-hero.has-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(70px, 12vw, 150px);
  background: linear-gradient(to bottom, rgba(251, 250, 247, 0), var(--c-bg));
  pointer-events: none;
}

.hero__content {
  max-width: 980px;
}

.hero__subtitle {
  max-width: 620px;
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.72;
}

.offer-hero .hero__content {
  width: min(calc(100% - 2rem), 860px);
  text-align: center;
}

.offer-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.intro-split .grid,
.about-page .grid {
  gap: clamp(2.5rem, 7vw, 7rem);
}

.intro-split__content,
.about-page__content {
  color: var(--c-text);
}

.reveal-card {
  border-radius: clamp(1.4rem, 3vw, 3.8rem);
}

/* Historia archive as organic mosaic instead of equal squares */
.story-grid--archive {
  display: block;
  columns: 3 280px;
  column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.story-grid--archive .story-card {
  display: block;
  break-inside: avoid;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem);
}

.story-grid--archive .story-card__media {
  aspect-ratio: 4 / 5;
}

.story-grid--archive .story-card:nth-child(4n+2) .story-card__media {
  aspect-ratio: 3 / 2;
}

.story-grid--archive .story-card:nth-child(5n+3) .story-card__media {
  aspect-ratio: 1 / 1.22;
}

.story-grid--archive .story-card:nth-child(7n+4) .story-card__media {
  aspect-ratio: 5 / 4;
}

.story-grid--preview {
  max-width: 980px;
  margin-inline: auto;
}

.story-grid--preview .story-card__media {
  aspect-ratio: 4 / 5;
}

.story-grid--preview .story-card:nth-child(2n) .story-card__media {
  aspect-ratio: 1 / 1;
}

.story-card__media,
.offer-card__media {
  border-radius: 0;
}

.story-card__overlay {
  background: linear-gradient(to top, rgba(23, 18, 15, 0.62), rgba(23, 18, 15, 0.02) 72%);
}

.offer-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.offer-card {
  border-radius: 22px;
  background: #fffdf9;
}

.offer-card__media {
  aspect-ratio: 4 / 4.45;
}

.offer-card__body h3 {
  margin-bottom: 0.45rem;
}

/* Offer page */
.offer-intro .prose {
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.9;
}

.packages-grid {
  max-width: 1120px;
  margin-inline: auto;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.package-card h3 {
  margin-bottom: 0.65rem;
  text-transform: none;
}

.package-card__price {
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
}

.package-card .btn {
  margin-top: auto;
}

.offer-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.offer-gallery-head > div:first-child {
  max-width: 680px;
}

.offer-gallery-head h2 {
  margin-bottom: 0.25em;
}

.offer-gallery-head p:not(.eyebrow) {
  color: var(--c-muted);
}

.offer-gallery-controls {
  display: flex;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.slider-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--c-text);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

.offer-gallery-slider {
  overflow: hidden;
}

.offer-gallery-slider__track {
  display: flex;
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  overflow-x: auto;
/*   padding: 0 0 0.7rem; */
	padding:0;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.offer-gallery-slide {
  flex: 0 0 clamp(260px, 38vw, 520px);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 22px;
  background: var(--c-line);
  box-shadow: var(--shadow-card);
}

.offer-gallery-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 3 / 4;
}

.offer-gallery-slide:hover img {
  transform: scale(1.03);
  opacity: 0.94;
}

.offer-features-section {
  background: var(--c-bg-warm);
}

.offer-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem) clamp(1.2rem, 4vw, 4rem);
  max-width: 1120px;
  margin-inline: auto;
}

.offer-feature-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.offer-feature-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--c-accent);
}

.offer-feature-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-feature-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.offer-feature-card p {
  margin: 0;
  color: var(--c-muted);
  line-height: 1.75;
}

.process-section {
  background: var(--c-bg);
}

.process-grid {
  max-width: 1080px;
  margin-inline: auto;
}

.process-card {
  min-height: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.process-card span {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.faq-list details {
  background: #fffdf9;
  border-radius: 14px;
}

/* Contact and form */
.contact-card,
.form-card,
.cta-band__inner {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.cta-band__inner--form {
  border-radius: clamp(1.6rem, 3.4vw, 3.4rem);
  background: radial-gradient(circle at 14% 8%, rgba(184, 155, 128, 0.18), transparent 38%), var(--c-bg-warm);
}

.form-field,
.demo-form label,
.wpcf7-form label {
  color: var(--c-text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
textarea,
select {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--c-text);
  font-weight: 400;
}

.form-consent {
  color: var(--c-muted);
}

/* Footer */
.site-footer {
  padding-block: clamp(3.8rem, 7vw, 6rem) 1.5rem;
  background: #f4eee7;
  border-top: 1px solid var(--c-line);
  text-align: left;
}

.site-footer__inner {
  gap: clamp(1.8rem, 3vw, 2.5rem);
}

.site-footer__top {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.site-footer__brand {
  margin-bottom: 1rem;
}

.site-footer__label {
  margin: 0 0 0.75rem;
  color: var(--c-accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__note,
.site-footer__copy {
  color: var(--c-muted);
}

.site-footer__contact,
.footer-nav ul {
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__contact a,
.footer-nav a {
  color: var(--c-text);
}

.social-links--footer {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.social-links--footer .social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.45);
}

.site-footer__copy {
  width: 100%;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(139, 110, 86, 0.18);
  text-align: center;
}

/* Better mobile menu */
@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .home .site-header,
  .single-oferta .site-header {
    position: fixed;
  }

  body.nav-open .site-header,
  .site-header.is-scrolled,
  .home .site-header.is-scrolled,
  .single-oferta .site-header.is-scrolled {
    background: rgba(251, 250, 247, 0.97);
    color: var(--c-text);
  }

  .primary-nav {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    height: 100dvh;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 2.4rem) 1.25rem 2rem;
    background: rgba(251, 250, 247, 0.985);
    transform: translateY(-110%);
    overflow-y: auto;
  }

  body.admin-bar .primary-nav {
    top: 32px;
    height: calc(100dvh - 32px);
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav ul {
    width: min(100%, 420px);
    gap: 0;
  }

  .primary-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(139, 110, 86, 0.15);
  }

  .primary-nav a {
    justify-content: center;
    width: 100%;
    min-height: 58px;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
  }

  .primary-nav a::after {
    display: none;
  }

  .social-links--header {
    justify-content: center;
    margin-top: 1.4rem;
  }

  .social-links--header .social-link,
  .home .site-header:not(.is-scrolled) .social-links--header .social-link,
  .single-oferta .site-header:not(.is-scrolled) .social-links--header .social-link {
    width: 42px;
    height: 42px;
    color: var(--c-text);
    border-color: var(--c-line);
  }

  .grid--2 {
    gap: 2rem;
  }

  .hero,
  .hero--subpage,
  .hero--home {
    min-height: 72svh;
  }

  .hero--home.hero--no-content {
    min-height: 58svh;
  }

  .offer-gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-features-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__contact,
  .footer-nav ul,
  .social-links--footer {
    justify-content: center;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .primary-nav {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.85rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.05rem);
  }

  .section {
    padding-block: 3.6rem;
  }

  .site-logo__img,
  .site-brand img {
    max-height: 42px;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 1.2rem);
  }

  .hero__actions .btn {
    width: auto;
  }

  .story-grid--archive {
    columns: 1;
  }

  .story-grid--preview {
    grid-template-columns: 1fr;
  }

  .story-card__overlay {
    opacity: 1;
  }

  .offer-gallery-slide {
    flex-basis: 82vw;
  }

  .offer-features-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-feature-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .offer-feature-card__icon,
  .offer-feature-card__icon svg {
    width: 46px;
    height: 46px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner--form,
  .contact-layout {
    text-align: left;
  }

  .cta-band__heading,
  .contact-card--sticky {
    position: static;
  }

  .social-links--contact {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .container--wide,
  .container--narrow {
    width: min(calc(100% - 1rem), var(--container));
  }

  .primary-nav a {
    min-height: 54px;
    font-size: 0.98rem;
  }

  .hero,
  .hero--subpage,
  .hero--home {
    min-height: 64svh;
  }

  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 3rem);
  }
}

/* v1.0.8 — header variants, tighter responsiveness and full-width story mosaic */
:root {
  --c-muted: #3f3933;
  --c-muted-soft: #62584f;
}

.site-header {
  overflow: visible;
}

body.czu-header-blur.home .site-header:not(.is-scrolled),
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.34), rgba(31, 27, 24, 0.10));
  border-color: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

body.czu-header-blur.home .site-header:not(.is-scrolled)::after,
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -58px;
  height: 58px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.13), rgba(31, 27, 24, 0));
}

body.czu-header-transparent.home .site-header:not(.is-scrolled),
body.czu-header-transparent.single-oferta .site-header:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.czu-header-blur .hero__overlay,
body.czu-header-blur .page-hero__overlay {
  background: linear-gradient(180deg, rgba(24, 20, 17, 0.28), rgba(24, 20, 17, 0.08) 34%, rgba(24, 20, 17, 0.20));
}

body.czu-header-transparent.home .hero__overlay,
body.czu-header-transparent.single-oferta .hero__overlay {
  background: linear-gradient(180deg, rgba(24, 20, 17, 0.50), rgba(24, 20, 17, 0.18) 42%, rgba(24, 20, 17, 0.34));
}

body.czu-header-transparent.home .hero::before,
body.czu-header-transparent.single-oferta .hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: min(36vh, 330px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 14, 12, 0.44), rgba(17, 14, 12, 0));
}

body.czu-header-transparent .hero__content,
body.czu-header-blur .hero__content {
  z-index: 2;
}

.section {
  padding-block: clamp(3.25rem, 6.2vw, 6.5rem);
}

.section--narrow {
  padding-block: clamp(2.7rem, 5vw, 5rem);
}

.page-hero--minimal {
  padding-top: calc(var(--header-height) + clamp(2.8rem, 5.2vw, 5.6rem));
  padding-bottom: clamp(2.6rem, 4.8vw, 4.9rem);
}

.page-hero--minimal h1 {
  font-size: clamp(3rem, 6.4vw, 6.2rem);
}

.page-hero--story.has-image {
  min-height: min(64svh, 660px);
}

.hero,
.hero--subpage {
  min-height: min(82svh, 780px);
}

.hero--home.hero--no-content {
  min-height: min(68svh, 650px);
}

.offer-hero h1,
.page-hero--story h1 {
  font-size: clamp(2.8rem, 6.2vw, 6.2rem);
}

.prose,
.section-heading p:not(.eyebrow),
.offer-gallery-head p:not(.eyebrow),
.offer-feature-card p,
.process-card p,
.contact-card p,
.form-card p,
.package-card li,
.site-footer__note,
.site-footer__copy {
  color: var(--c-muted);
}

.single-story .story-gallery-section {
  padding-block: 0 clamp(2.6rem, 5vw, 5rem);
  background: var(--c-bg);
}

.single-story .story-gallery-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.single-story .masonry-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 28px;
  gap: 6px;
}

.single-story .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  background: #e6e0d7;
  grid-column: span 3;
  grid-row: span 9;
}

.single-story .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-story .gallery-item.is-landscape {
  grid-column: span 6;
  grid-row: span 10;
}

.single-story .gallery-item.is-portrait {
  grid-column: span 3;
  grid-row: span 14;
}

.single-story .gallery-item.is-square {
  grid-column: span 4;
  grid-row: span 11;
}

.single-story .gallery-item.tile--wide {
  grid-column: span 8;
  grid-row: span 12;
}

.single-story .gallery-item.tile--tall {
  grid-column: span 4;
  grid-row: span 18;
}

.single-story .gallery-item.tile--large {
  grid-column: span 5;
  grid-row: span 14;
}

.story-grid--archive .story-card__media {
  background: #ddd8cf;
}

@media (max-width: 1100px) {
  .hero,
  .hero--subpage {
    min-height: 74svh;
  }

  .single-story .masonry-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 24px;
    gap: 5px;
  }

  .single-story .gallery-item.is-landscape,
  .single-story .gallery-item.tile--wide {
    grid-column: span 4;
  }

  .single-story .gallery-item.is-portrait,
  .single-story .gallery-item.tile--tall {
    grid-column: span 2;
  }

  .single-story .gallery-item.is-square,
  .single-story .gallery-item.tile--large {
    grid-column: span 3;
  }
}

@media (max-width: 920px) {
  body.czu-header-blur.home .site-header:not(.is-scrolled),
  body.czu-header-blur.single-oferta .site-header:not(.is-scrolled),
  body.czu-header-transparent.home .site-header:not(.is-scrolled),
  body.czu-header-transparent.single-oferta .site-header:not(.is-scrolled) {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.nav-open .site-header::after {
    display: none;
  }

  .primary-nav {
    background: rgba(251, 250, 247, 0.992);
  }

  .primary-nav a {
    color: var(--c-text);
  }

  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 2.6rem);
    padding-bottom: 3.2rem;
  }

  .hero,
  .hero--subpage,
  .hero--home {
    min-height: 68svh;
  }

  .single-story .masonry-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 20px;
    gap: 4px;
  }

  .single-story .gallery-item.is-landscape,
  .single-story .gallery-item.tile--wide {
    grid-column: span 3;
  }

  .single-story .gallery-item.is-portrait,
  .single-story .gallery-item.tile--tall {
    grid-column: span 2;
  }

  .single-story .gallery-item.is-square,
  .single-story .gallery-item.tile--large {
    grid-column: span 3;
  }
}

@media (max-width: 680px) {
  .section {
    padding-block: 3rem;
  }

  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 2.2rem);
    padding-bottom: 2.6rem;
  }

  .page-hero--minimal h1,
  .offer-hero h1,
  .page-hero--story h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .page-hero--story.has-image {
    min-height: 52svh;
  }

  .hero,
  .hero--subpage,
  .hero--home {
    min-height: 62svh;
  }

  .single-story .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 20vw;
    gap: 4px;
  }

  .single-story .gallery-item,
  .single-story .gallery-item.is-landscape,
  .single-story .gallery-item.is-portrait,
  .single-story .gallery-item.is-square,
  .single-story .gallery-item.tile--wide,
  .single-story .gallery-item.tile--tall,
  .single-story .gallery-item.tile--large {
    grid-column: span 1;
    grid-row: span 6;
  }

  .single-story .gallery-item.is-portrait,
  .single-story .gallery-item.tile--tall {
    grid-row: span 8;
  }

  .single-story .gallery-item.is-landscape,
  .single-story .gallery-item.tile--wide {
    grid-column: span 2;
    grid-row: span 6;
  }
}

/* v1.0.9 — full viewport hero and no bottom hero fade */
.hero::after,
.page-hero.has-image::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.hero,
.hero--home,
.hero--subpage,
.offer-hero,
.hero--home.hero--no-content {
  min-height: 100vh;
  min-height: 100svh;
}

.page-hero--story.has-image {
  min-height: 100vh;
  min-height: 100svh;
}

.hero__content {
  padding-top: var(--header-height);
}

@media (max-width: 920px) {
  .hero,
  .hero--home,
  .hero--subpage,
  .offer-hero,
  .hero--home.hero--no-content,
  .page-hero--story.has-image {
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 680px) {
  .hero,
  .hero--home,
  .hero--subpage,
  .offer-hero,
  .hero--home.hero--no-content,
  .page-hero--story.has-image {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 0.5rem);
  }
}


/* v1.1.2 — selectable story gallery layouts */
.single-story .masonry-gallery--balanced {
  display: block;
  column-count: 4;
  column-gap: 8px;
}

.single-story .masonry-gallery--balanced .gallery-item,
.single-story .masonry-gallery--balanced .gallery-item.is-landscape,
.single-story .masonry-gallery--balanced .gallery-item.is-portrait,
.single-story .masonry-gallery--balanced .gallery-item.is-square,
.single-story .masonry-gallery--balanced .gallery-item.tile--wide,
.single-story .masonry-gallery--balanced .gallery-item.tile--tall,
.single-story .masonry-gallery--balanced .gallery-item.tile--large {
  display: inline-block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0 0 8px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  grid-column: auto;
  grid-row: auto;
}

.single-story .masonry-gallery--balanced .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

@media (max-width: 1100px) {
  .single-story .masonry-gallery--balanced {
    column-count: 3;
    column-gap: 6px;
  }

  .single-story .masonry-gallery--balanced .gallery-item {
    margin-bottom: 6px;
  }
}

@media (max-width: 680px) {
  .single-story .masonry-gallery--balanced {
    column-count: 2;
    column-gap: 4px;
  }

  .single-story .masonry-gallery--balanced .gallery-item {
    margin-bottom: 4px;
  }
}

/* v1.1.3 — polished offer page, grouped packages and global feature icons */
.single-offer .section {
  padding-block: clamp(4rem, 7vw, 7.2rem);
}

.single-offer .section-heading {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.single-offer .section-heading h2 {
  margin-bottom: 0.18em;
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 0.98;
}

.single-offer .section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.8rem auto 0;
  color: var(--c-text);
  opacity: 0.82;
  line-height: 1.8;
}

.single-offer .offer-intro {
  padding-block: clamp(3rem, 6vw, 5.4rem);
  background: var(--c-bg);
}

.single-offer .offer-intro .prose {
  max-width: 920px;
  color: var(--c-text);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 2;
}

.offer-packages-section {
  background: var(--c-bg);
}

.offer-package-group + .offer-package-group {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.offer-package-group--secondary .section-heading h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.section-heading--packages .eyebrow {
  color: var(--c-accent-dark);
}

.packages-grid,
.single-offer .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: stretch;
  max-width: 1160px;
  margin-inline: auto;
}

.packages-grid--compact,
.single-offer .packages-grid--compact {
  grid-template-columns: repeat(2, minmax(260px, 390px));
  justify-content: center;
  max-width: 880px;
}

.package-card,
.single-offer .package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: clamp(1.7rem, 3.2vw, 3rem) clamp(1.35rem, 2.4vw, 2.15rem);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(182, 154, 125, 0.22);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.package-card h3,
.single-offer .package-card h3 {
  margin: 0 0 1.25rem;
  color: var(--c-accent-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.package-card__badge {
  background: transparent;
  color: var(--c-accent-dark);
  border: 1px solid var(--c-line);
}

.package-card ul,
.single-offer .package-card ul {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  padding: 0;
  margin: 0 0 1.8rem;
  color: var(--c-text);
  list-style: none;
  font-size: 0.96rem;
  line-height: 1.65;
}

.package-card li::before,
.single-offer .package-card li::before {
  content: none;
}

.package-card__price,
.single-offer .package-card__price {
  margin: auto 0 1.25rem;
  color: var(--c-accent-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.single-offer .package-card .btn {
  margin-top: 0;
}

.offer-gallery-section {
  background: var(--c-bg);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.offer-gallery-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
}

.offer-gallery-slide {
  flex-basis: clamp(280px, 31vw, 460px);
  border-radius: 0;
  box-shadow: none;
}

.offer-gallery-slide img {
  aspect-ratio: 4 / 3;
}

.offer-features-section,
.single-offer .offer-features-section {
  background: var(--c-bg-warm);
}

.offer-features-grid,
.single-offer .offer-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.3rem, 5vw, 4.6rem) clamp(2rem, 5vw, 5.6rem);
  max-width: 1160px;
  margin-inline: auto;
}

.offer-feature-card,
.single-offer .offer-feature-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.offer-feature-card__icon,
.single-offer .offer-feature-card__icon {
  display: grid;
  place-items: start center;
  width: 60px;
  height: 60px;
  color: var(--c-accent);
}

.offer-feature-card__icon svg,
.single-offer .offer-feature-card__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-feature-card__icon img,
.single-offer .offer-feature-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.offer-feature-card h3,
.single-offer .offer-feature-card h3 {
  margin: 0 0 0.55rem;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.3vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.offer-feature-card p,
.single-offer .offer-feature-card p {
  margin: 0;
  color: var(--c-text);
  opacity: 0.82;
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  line-height: 1.82;
}

.process-section,
.single-offer .process-section,
.faq-section,
.single-offer .faq-section {
  background: var(--c-bg);
}

.process-grid,
.single-offer .process-grid {
  max-width: 1080px;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-card,
.single-offer .process-card {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(182, 154, 125, 0.22);
  box-shadow: none;
}

.process-card p,
.single-offer .process-card p,
.faq-list p,
.single-offer .faq-list p {
  color: var(--c-text);
  opacity: 0.82;
}

.single-offer .faq-list details {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .packages-grid,
  .single-offer .packages-grid,
  .packages-grid--compact,
  .single-offer .packages-grid--compact,
  .offer-features-grid,
  .single-offer .offer-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .single-offer .section {
    padding-block: 3.2rem;
  }

  .single-offer .section-heading {
    margin-bottom: 1.8rem;
  }

  .packages-grid,
  .single-offer .packages-grid,
  .packages-grid--compact,
  .single-offer .packages-grid--compact,
  .offer-features-grid,
  .single-offer .offer-features-grid,
  .process-grid,
  .single-offer .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-feature-card,
  .single-offer .offer-feature-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1rem;
  }

  .offer-feature-card__icon,
  .single-offer .offer-feature-card__icon,
  .offer-feature-card__icon svg,
  .single-offer .offer-feature-card__icon svg,
  .offer-feature-card__icon img,
  .single-offer .offer-feature-card__icon img {
    width: 46px;
    height: 46px;
  }
}


/* v1.1.4 — agency polish: unified contact methods, calmer radii, equal story cards and consistent container */
:root {
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 999px;
  --container-wide: var(--container);
}

.site-header__inner.container,
.site-header__inner.container--wide {
  width: min(calc(100% - 2rem), var(--container));
}

.contact-card,
.form-card,
.cta-band__inner,
.cta-band__inner--form,
.offer-card,
.package-card,
.faq-list details {
  border-radius: var(--radius-md);
}

.reveal-card,
.reveal-card img,
.about-page__media img {
  border-radius: clamp(0.9rem, 2vw, 1.6rem);
}

.contact-list {
  display: none;
}

.contact-methods {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(139, 110, 86, 0.18);
  color: var(--c-text);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-method:hover {
  color: var(--c-accent-dark);
  border-color: rgba(139, 110, 86, 0.34);
}

.contact-method__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 110, 86, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--c-accent-dark);
}

.contact-method__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-method__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-method__body {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.contact-method__label {
  color: var(--c-accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-method__value {
  color: currentColor;
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-methods--no-icons .contact-method {
  padding-block: 0.65rem;
}

.contact-methods--footer {
  margin-top: 0;
  gap: 0.45rem;
}

.contact-methods--footer .contact-method {
  padding-block: 0.58rem;
}

.contact-methods--footer .contact-method__icon {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
}

.contact-methods--footer .contact-method__icon svg {
  width: 18px;
  height: 18px;
}

.contact-methods--footer .contact-method__value {
  font-size: 0.9rem;
}

.site-footer__contact {
  display: none !important;
}

/* Equal, calmer story/album cards on homepage and archive. Full album gallery remains mosaic. */
.story-grid--preview,
.story-grid--archive {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
  columns: initial !important;
  column-gap: initial !important;
  max-width: 1120px;
  margin-inline: auto;
}

.story-grid--archive .story-card,
.story-grid--preview .story-card {
  margin: 0 !important;
  break-inside: auto;
}

.story-grid--archive .story-card__media,
.story-grid--preview .story-card__media,
.story-grid--archive .story-card:nth-child(n) .story-card__media,
.story-grid--preview .story-card:nth-child(n) .story-card__media {
  aspect-ratio: 4 / 5 !important;
  border-radius: 0;
}

.story-card__overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(24, 20, 17, 0.42), rgba(24, 20, 17, 0.02) 66%);
}

.story-card h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.site-footer {
  background: #f6f0e9;
}

.site-footer__top {
  align-items: start;
}

@media (max-width: 920px) {
  .story-grid--preview,
  .story-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    text-align: left;
  }

  .site-footer__brand,
  .footer-nav ul,
  .social-links--footer {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .story-grid--preview,
  .story-grid--archive {
    grid-template-columns: 1fr;
  }

  .story-grid--archive .story-card__media,
  .story-grid--preview .story-card__media,
  .story-grid--archive .story-card:nth-child(n) .story-card__media,
  .story-grid--preview .story-card:nth-child(n) .story-card__media {
    aspect-ratio: 5 / 6 !important;
  }

  .contact-method__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
}


/* v1.1.5 — agency polish: header, cards, offer template */
:root {
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 999px;
  --shadow-card: 0 18px 50px rgba(38, 31, 25, 0.07);
  --shadow-hover: 0 22px 70px rgba(38, 31, 25, 0.12);
}

/* Header and menu */
.site-header {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.czu-header-blur.home .site-header:not(.is-scrolled),
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.22), rgba(31, 27, 24, 0.055));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.czu-header-blur.home .site-header:not(.is-scrolled)::after,
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled)::after {
  height: 32px;
  bottom: -32px;
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.06), rgba(31, 27, 24, 0));
}

.primary-nav .menu {
  gap: clamp(1rem, 2vw, 1.7rem);
}

.primary-nav .menu-item {
  position: relative;
}

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 260px;
  gap: 0;
  padding: 0.6rem 0;
  margin: 0;
  background: rgba(251, 250, 247, 0.96);
  border: 1px solid rgba(233, 222, 211, 0.82);
  box-shadow: 0 18px 50px rgba(38, 31, 25, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.primary-nav .sub-menu a {
  width: 100%;
  min-height: 38px;
  padding: 0.45rem 1rem;
  color: var(--c-text);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.primary-nav .sub-menu a::after {
  display: none;
}

.primary-nav .sub-menu a:hover {
  background: var(--c-bg-warm);
  color: var(--c-accent-dark);
}

.site-header .social-links {
  gap: 0.45rem;
}

.site-header .social-link {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  opacity: 0.9;
  background: transparent;
}

.site-header .social-link svg {
  width: 15px;
  height: 15px;
}

.site-header .social-link:hover,
.home .site-header:not(.is-scrolled) .social-link:hover,
.single-oferta .site-header:not(.is-scrolled) .social-link:hover {
  transform: translateY(-1px);
  background: transparent;
  color: currentColor;
  opacity: 1;
}

.home .site-header:not(.is-scrolled) .nav-toggle,
.single-oferta .site-header:not(.is-scrolled) .nav-toggle {
  color: var(--c-white);
}

.nav-toggle[aria-expanded="true"] {
  color: var(--c-text) !important;
}

/* Unified cards for stories and offers */
.story-grid,
.offer-grid {
  gap: clamp(1rem, 2vw, 1.4rem);
}

.story-card,
.offer-card {
  overflow: hidden;
  background: var(--c-bg);
  border: 1px solid rgba(233, 222, 211, 0.9);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.story-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 154, 125, 0.38);
  box-shadow: var(--shadow-hover);
}

.story-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.story-card__media,
.offer-card__media {
  aspect-ratio: 4 / 3.15;
  border-radius: 0;
}

.story-card__overlay {
  position: static;
  inset: auto;
  opacity: 1;
  display: block;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: var(--c-bg);
  color: var(--c-text);
}

.story-card__term {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--c-accent-dark);
  font-family: var(--font-body);
  font-size: 0.62rem;
}

.story-card h3,
.offer-card__body h3 {
  margin: 0;
  color: var(--c-text);
  font-size: clamp(1.24rem, 1.7vw, 1.7rem);
  line-height: 1.08;
}

.story-card__overlay::after,
.offer-card .text-link::after {
  content: "→";
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--c-accent-dark);
  transition: transform 0.25s ease;
}

.story-card:hover .story-card__overlay::after,
.offer-card:hover .text-link::after {
  transform: translateX(4px);
}

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.offer-card__media {
  aspect-ratio: 4 / 3.15;
}

.offer-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.offer-card__body p:not(.eyebrow) {
  color: var(--c-text);
  opacity: 0.72;
}

.offer-card .text-link {
  margin-top: auto;
}

/* Home contact section */
.cta-band--form {
  background: var(--c-bg);
}

.cta-band__inner--form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  width: min(calc(100% - 2rem), 980px);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-md);
  text-align: center;
}

.cta-band__inner--form .cta-band__heading {
  max-width: 720px;
  margin-inline: auto;
}

.cta-band__inner--form .form-card {
  width: min(100%, 720px);
  margin-inline: auto;
  text-align: left;
}

/* Offer packages, gallery and feature blocks */
.offer-packages-section .section-heading {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.offer-package-group + .offer-package-group {
  margin-top: clamp(3.2rem, 6vw, 5rem);
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--c-line);
}

.packages-grid {
  align-items: stretch;
}

.packages-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.package-card {
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.package-card h3 {
  color: var(--c-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
}

.package-card ul {
  color: var(--c-text);
  opacity: 0.78;
}

.offer-gallery-section {
  overflow: hidden;
  background: var(--c-bg);
}

.offer-gallery-head {
  align-items: center;
}

.offer-gallery-slider {
  position: relative;
}

.offer-gallery-slider__track {
  gap: 8px;
  padding-bottom: 1.2rem;
  scrollbar-width: none;
}

.offer-gallery-slider__track::-webkit-scrollbar {
  display: none;
}

.offer-gallery-slide {
  flex: 0 0 clamp(280px, 32vw, 460px);
  border-radius: 0;
  box-shadow: none;
}

.offer-gallery-slide img,
.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 16 / 10;
}

.offer-gallery-progress {
  position: relative;
  width: min(320px, 100%);
  height: 2px;
  margin: 0.9rem auto 0;
  overflow: hidden;
  background: var(--c-line);
}

.offer-gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--c-accent);
  transform-origin: left center;
  transform: scaleX(0.24);
  transition: transform 0.16s ease;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: transparent;
}

.offer-features-grid {
  gap: clamp(1.8rem, 4vw, 3.5rem) clamp(1.2rem, 5vw, 4.8rem);
}

.offer-feature-card__icon {
  width: 46px;
  height: 46px;
}

.offer-feature-card__icon svg,
.offer-feature-card__icon img {
  width: 42px;
  height: 42px;
}

.offer-feature-card h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0;
}

.offer-feature-card p {
  color: var(--c-text);
  opacity: 0.76;
}

.offer-feature-card a,
.package-card a:not(.btn),
.faq-list a,
.offer-extra a:not(.btn) {
  color: var(--c-accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

/* Additional offer section */
.offer-extra-section {
  background: var(--c-bg);
}

.offer-extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.offer-extra__content {
  max-width: 760px;
}

.offer-extra__content h2 {
  color: var(--c-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(2rem, 4vw, 4rem);
}

.offer-extra__points {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: 0;
  list-style: none;
}

.offer-extra__points li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-text);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.offer-extra__points li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.8em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}

.offer-extra__media {
  margin: 0;
  overflow: hidden;
  background: var(--c-bg-warm);
}

.offer-extra__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 34vw, 560px);
  object-fit: cover;
}

.offer-extra__media--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.offer-extra__media--soft {
  border-radius: var(--radius-md);
}

.offer-extra__media--square {
  border-radius: 0;
}

/* Story gallery gaps */
.single-story .masonry-gallery,
.single-story .masonry-gallery--artistic {
  gap: 6px;
}

.single-story .masonry-gallery--balanced {
  column-gap: 6px;
}

.single-story .masonry-gallery--balanced .gallery-item {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 920px) {
  .primary-nav {
    align-items: stretch;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 1.6rem);
    overflow-y: auto;
  }

  .primary-nav .menu {
    width: min(100%, 420px);
    margin-inline: auto;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav .menu > li > a {
    justify-content: center;
    min-height: 56px;
    border-bottom: 1px solid var(--c-line);
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .primary-nav .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0.3rem 0 0.8rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .primary-nav .sub-menu a {
    justify-content: center;
    min-height: 38px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    color: var(--c-muted);
  }

  .primary-nav .social-links {
    justify-content: center;
    margin-top: 1.2rem;
    color: var(--c-text);
  }

  .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive,
  .packages-grid,
  .packages-grid--compact,
  .offer-features-grid,
  .offer-extra {
    grid-template-columns: 1fr;
  }

  .offer-gallery-head {
    align-items: flex-start;
  }

  .offer-extra__media {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive {
    gap: 0.85rem;
  }

  .story-card__media,
  .offer-card__media {
    aspect-ratio: 4 / 3;
  }

  .cta-band__inner--form {
    width: min(calc(100% - 1.25rem), 980px);
    padding: 1.25rem;
  }

  .offer-gallery-head {
    display: grid;
  }

  .offer-gallery-controls {
    justify-content: center;
  }

  .offer-gallery-slide {
    flex-basis: min(82vw, 360px);
  }

  .offer-extra__media--circle {
    border-radius: 28vw;
  }
}

/* v1.1.6 — stronger agency rhythm, overlay cards, contact redesign and draggable offer gallery */
:root {
  --container: 1240px;
  --container-narrow: 900px;
  --c-accent: #b7795f;
  --c-accent-dark: #7f5945;
  --c-accent-sage: #59675d;
  --c-panel: #fffdf9;
  --shadow-card: 0 18px 48px rgba(35, 29, 24, 0.08);
  --shadow-hover: 0 28px 78px rgba(35, 29, 24, 0.15);
}

.container,
.site-header__inner.container {
  width: min(calc(100% - clamp(1.5rem, 5vw, 5rem)), var(--container));
}

.section {
  position: relative;
  overflow: hidden;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: min(96px, 34vw);
  height: 1px;
  margin: 0.55em auto 0;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.stories-preview,
.offers-preview,
.offer-gallery-section,
.cta-band--form {
  isolation: isolate;
}

.stories-preview::before,
.offers-preview::before,
.cta-band--form::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.stories-preview::before {
  right: max(-8vw, -120px);
  top: clamp(3rem, 9vw, 7rem);
  width: min(28vw, 360px);
  height: min(42vw, 540px);
  background: color-mix(in srgb, var(--c-accent-sage) 22%, transparent);
  clip-path: polygon(30% 0, 100% 12%, 82% 100%, 0 78%);
}

.offers-preview::before {
  left: max(-10vw, -150px);
  bottom: clamp(2rem, 7vw, 5rem);
  width: min(34vw, 430px);
  height: min(18vw, 230px);
  border: 1px solid rgba(127, 89, 69, 0.18);
  transform: rotate(-7deg);
}

.story-grid--preview,
.story-grid--archive,
.offer-grid,
.offer-grid--archive {
  max-width: var(--container);
  gap: clamp(1.15rem, 2.2vw, 2rem);
}

.story-card,
.offer-card {
  border-radius: 8px;
  background: #191512;
  box-shadow: var(--shadow-card);
  transform: translateY(0);
}

.story-card:hover,
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.story-card__link,
.offer-card {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.story-card__media,
.offer-card__media,
.story-grid--archive .story-card__media,
.story-grid--preview .story-card__media,
.story-grid--archive .story-card:nth-child(n) .story-card__media,
.story-grid--preview .story-card:nth-child(n) .story-card__media {
  aspect-ratio: 4 / 4.85 !important;
  height: auto;
  min-height: 100%;
}

.story-card__media::after,
.offer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 21, 18, 0.02) 28%, rgba(25, 21, 18, 0.64) 100%),
    linear-gradient(45deg, rgba(183, 121, 95, 0.18), transparent 42%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.story-card__media,
.offer-card__media {
  position: relative;
}

.story-card__overlay,
.offer-card__body {
  position: absolute;
  left: clamp(0.75rem, 1.4vw, 1rem);
  right: clamp(0.75rem, 1.4vw, 1rem);
  bottom: clamp(0.75rem, 1.4vw, 1rem);
  z-index: 2;
  padding: clamp(0.95rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.88);
  color: var(--c-text);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, background 0.35s ease;
}

.story-card:hover .story-card__overlay,
.offer-card:hover .offer-card__body {
  transform: translateY(-4px);
  background: rgba(255, 253, 249, 0.94);
}

.story-card__term,
.offer-card__body .eyebrow {
  color: var(--c-accent-dark);
}

.story-card h3,
.offer-card__body h3 {
  font-size: clamp(1.24rem, 1.75vw, 1.78rem);
  line-height: 1.05;
}

.offer-card__body p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.75rem;
}

.offer-card .text-link {
  margin-top: 1rem;
}

.single-story .story-gallery-container {
  background: var(--c-panel);
}

.single-story .masonry-gallery,
.single-story .masonry-gallery--artistic {
  gap: clamp(8px, 0.72vw, 12px);
  padding: clamp(8px, 0.72vw, 12px);
}

.single-story .masonry-gallery--balanced {
  column-gap: clamp(8px, 0.72vw, 12px);
  padding: clamp(8px, 0.72vw, 12px);
  background: var(--c-panel);
}

.single-story .masonry-gallery--balanced .gallery-item {
  margin-bottom: clamp(8px, 0.72vw, 12px);
}

.cta-band--form {
  background:
    linear-gradient(90deg, rgba(89, 103, 93, 0.08), transparent 34%),
    var(--c-bg-warm);
}

.cta-band--form::before {
  right: max(-12vw, -180px);
  bottom: clamp(2rem, 6vw, 5rem);
  width: min(42vw, 560px);
  height: min(26vw, 340px);
  border: 1px solid rgba(127, 89, 69, 0.18);
  clip-path: polygon(8% 18%, 100% 0, 86% 76%, 0 100%);
}

.cta-band__inner--form {
  width: min(calc(100% - clamp(1.5rem, 5vw, 5rem)), 1120px);
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(228, 216, 203, 0.9);
  background: rgba(255, 253, 249, 0.74);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.cta-band__heading,
.contact-card--sticky {
  position: static;
}

.cta-band__heading {
  max-width: 460px;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.cta-band__inner--form .form-card {
  width: 100%;
  margin: 0;
}

.form-card--home,
.form-card--main {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(35, 29, 24, 0.06);
}

.contact-layout {
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  width: min(calc(100% - clamp(1.5rem, 5vw, 5rem)), 1120px);
}

.offer-gallery-section {
  background:
    linear-gradient(180deg, var(--c-bg) 0%, #f6efe7 100%);
}

.offer-gallery-head {
  padding-bottom: clamp(0.8rem, 2vw, 1.2rem);
  border-bottom: 1px solid rgba(127, 89, 69, 0.14);
}

.offer-gallery-slider {
  margin-top: clamp(1.2rem, 2.8vw, 2.4rem);
  overflow: visible;
}

.offer-gallery-slider__track {
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  cursor: grab;
  user-select: none;
  scroll-padding-inline: clamp(0.9rem, 2vw, 1.4rem);
}

.offer-gallery-slider__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.offer-gallery-slider__track.is-dragging a {
  pointer-events: none;
}

.offer-gallery-slide {
  flex-basis: clamp(300px, 36vw, 560px);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(35, 29, 24, 0.1);
}

.offer-gallery-slide:nth-child(2n) {
  flex-basis: clamp(260px, 28vw, 430px);
}

.offer-gallery-slide img,
.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 5 / 3.35;
}

.offer-gallery-progress {
  width: min(420px, 100%);
  height: 10px;
  margin-top: 1.25rem;
  padding-block: 4px;
  background: transparent;
  cursor: grab;
  touch-action: none;
}

.offer-gallery-progress::before {
  content: "";
  display: block;
  height: 2px;
  background: rgba(127, 89, 69, 0.13);
}

.offer-gallery-progress span {
  margin-top: -2px;
  background: linear-gradient(90deg, rgba(127, 89, 69, 0.62), rgba(89, 103, 93, 0.58));
}

.offer-gallery-progress.is-dragging {
  cursor: grabbing;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(127, 89, 69, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.8);
  box-shadow: 0 10px 28px rgba(35, 29, 24, 0.08);
}

.packages-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 440px));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.packages-grid--compact .package-card {
  padding-inline: clamp(2rem, 3.4vw, 3.2rem);
}

.packages-grid--compact .package-card h3 {
  white-space: nowrap;
  font-size: clamp(1.35rem, 1.95vw, 2.15rem);
  letter-spacing: 0.11em;
}

@media (max-width: 920px) {
  .cta-band__inner--form,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-band__heading {
    max-width: none;
    padding-bottom: 0;
    text-align: center;
  }

  .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive {
    gap: clamp(1rem, 3vw, 1.35rem);
  }

  .packages-grid--compact .package-card h3 {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .container,
  .site-header__inner.container,
  .container--wide,
  .container--narrow {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .story-card__media,
  .offer-card__media,
  .story-grid--archive .story-card__media,
  .story-grid--preview .story-card__media,
  .story-grid--archive .story-card:nth-child(n) .story-card__media,
  .story-grid--preview .story-card:nth-child(n) .story-card__media {
    aspect-ratio: 4 / 4.55 !important;
  }

  .story-card__overlay,
  .offer-card__body {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.9rem;
  }

  .cta-band__inner--form {
    width: min(calc(100% - 1.25rem), 1120px);
    padding: 0.85rem;
  }

  .offer-gallery-slide,
  .offer-gallery-slide:nth-child(2n) {
    flex-basis: min(84vw, 390px);
  }
}

/* v1.1.8 — softer accents, roomier cards, image shapes and gallery polish */
.site-header,
.site-header.is-scrolled,
.home .site-header,
.single-oferta .site-header,
.home .site-header.is-scrolled,
.single-oferta .site-header.is-scrolled {
  border-bottom: 0;
  border-color: transparent;
}

.site-header {
  background: rgba(251, 250, 247, 0.84);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: none;
}

.site-header.is-scrolled,
.home .site-header.is-scrolled,
.single-oferta .site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(35, 29, 24, 0.045);
}

body.czu-header-blur.home .site-header:not(.is-scrolled),
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.15), rgba(31, 27, 24, 0.035));
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

body.czu-header-blur.home .site-header:not(.is-scrolled)::after,
body.czu-header-blur.single-oferta .site-header:not(.is-scrolled)::after {
  height: 22px;
  bottom: -22px;
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.035), rgba(31, 27, 24, 0));
}

.stories-preview::before,
.offers-preview::before,
.cta-band--form::before {
  width: clamp(150px, 16vw, 230px);
  height: clamp(150px, 16vw, 230px);
  border: 0;
  clip-path: none;
  opacity: 0.42;
  background:
    radial-gradient(ellipse 18% 34% at 50% 18%, rgba(183, 121, 95, 0.26) 0 58%, transparent 60%),
    radial-gradient(ellipse 18% 34% at 50% 82%, rgba(183, 121, 95, 0.22) 0 58%, transparent 60%),
    radial-gradient(ellipse 34% 18% at 18% 50%, rgba(89, 103, 93, 0.18) 0 58%, transparent 60%),
    radial-gradient(ellipse 34% 18% at 82% 50%, rgba(89, 103, 93, 0.18) 0 58%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(127, 89, 69, 0.2) 0 7%, transparent 8%);
}

.stories-preview::before {
  right: max(2vw, 1rem);
  top: clamp(2rem, 6vw, 4rem);
  transform: rotate(-12deg);
}

.offers-preview::before {
  left: max(2vw, 1rem);
  bottom: clamp(2rem, 6vw, 4rem);
  transform: rotate(15deg);
}

.cta-band--form::before {
  right: max(2vw, 1rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  transform: rotate(10deg) scale(0.86);
}

.image-shape {
  border-radius: clamp(1rem, 2vw, 1.6rem);
}

.image-shape::before {
  border-radius: inherit;
}

.image-shape--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.image-shape--soft {
  border-radius: clamp(1rem, 2vw, 1.6rem);
}

.image-shape--square {
  border-radius: 0;
}

.image-shape--circle img,
.image-shape--soft img,
.image-shape--square img {
  border-radius: inherit;
}

.story-grid--preview,
.story-grid--archive,
.offer-grid,
.offer-grid--archive {
  max-width: var(--container);
  gap: clamp(1.45rem, 2.8vw, 2.35rem);
}

.story-card,
.offer-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-card:hover,
.offer-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.story-card__link,
.offer-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #211b17;
  box-shadow: 0 18px 48px rgba(35, 29, 24, 0.11);
}

.story-card__media,
.offer-card__media,
.story-grid--archive .story-card__media,
.story-grid--preview .story-card__media,
.story-grid--archive .story-card:nth-child(n) .story-card__media,
.story-grid--preview .story-card:nth-child(n) .story-card__media {
  aspect-ratio: 4 / 5.15 !important;
  min-height: 0;
  border-radius: 0;
}

.story-card__media::after,
.offer-card__media::after {
  background:
    linear-gradient(180deg, rgba(25, 21, 18, 0.03) 26%, rgba(25, 21, 18, 0.74) 100%),
    linear-gradient(45deg, rgba(183, 121, 95, 0.14), transparent 48%);
  opacity: 0.8;
}

.story-card__overlay,
.offer-card__body {
  position: absolute;
  left: clamp(1rem, 1.8vw, 1.5rem);
  right: clamp(1rem, 1.8vw, 1.5rem);
  bottom: clamp(1rem, 1.8vw, 1.5rem);
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c-white);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateY(0);
}

.story-card:hover .story-card__overlay,
.offer-card:hover .offer-card__body {
  transform: translateY(0);
  background: transparent;
}

.story-card__term,
.offer-card__body .eyebrow,
.offer-card__body p:not(.eyebrow),
.offer-card .text-link {
  color: rgba(255, 255, 255, 0.84);
}

.story-card__term,
.offer-card__body .eyebrow {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.story-card:hover .story-card__term,
.story-card:focus-within .story-card__term,
.offer-card:hover .offer-card__body .eyebrow,
.offer-card:focus-within .offer-card__body .eyebrow {
  max-height: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.story-card h3,
.offer-card__body h3 {
  color: var(--c-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.story-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.story-card__overlay::after,
.offer-card .text-link::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 0.25rem;
  background: rgba(255, 255, 255, 0.72);
  transition: width 0.28s ease, background 0.28s ease;
}

.story-card:hover .story-card__overlay::after,
.story-card:focus-within .story-card__overlay::after,
.offer-card:hover .text-link::after,
.offer-card:focus-within .text-link::after {
  width: 76px;
  background: rgba(255, 255, 255, 0.95);
}

.offer-card__body {
  align-content: end;
}

.offer-card__body p:not(.eyebrow),
.offer-card .text-link {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.45rem);
  transition: max-height 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.offer-card:hover .offer-card__body p:not(.eyebrow),
.offer-card:hover .text-link,
.offer-card:focus-within .offer-card__body p:not(.eyebrow),
.offer-card:focus-within .text-link {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}

.contact-layout,
.cta-band__inner--form {
  width: min(calc(100% - clamp(1.5rem, 5vw, 5rem)), var(--container));
}

.cta-band__inner--form {
  grid-template-columns: minmax(270px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.offer-gallery-slider {
  overflow: hidden;
}

.offer-gallery-slider__track {
  gap: clamp(1.15rem, 2vw, 1.75rem);
  padding: 0 0 1.1rem;
  scroll-padding-inline: 0;
}

.offer-gallery-slide,
.offer-gallery-slide:nth-child(2n) {
  flex: 0 0 clamp(330px, 52vw, 690px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(35, 29, 24, 0.1);
}

.offer-gallery-slide:nth-child(2n) {
  flex-basis: clamp(300px, 38vw, 520px);
}

.offer-gallery-slide img,
.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 4 / 3;
}

.offer-gallery-progress {
  overflow: hidden;
}

.offer-gallery-progress span {
  transform-origin: left center;
}

.packages-grid--compact {
  grid-template-columns: repeat(2, minmax(320px, 500px));
  max-width: 1060px;
}

.packages-grid--compact .package-card {
  padding-inline: clamp(2rem, 3.4vw, 3.2rem);
}

.packages-grid--compact .package-card h3,
.package-card h3,
.single-offer .package-card h3 {
  white-space: normal;
}

.package-card__price,
.single-offer .package-card__price {
  font-size: clamp(1.75rem, 2.35vw, 2.25rem);
  letter-spacing: 0.03em;
  text-transform: none;
}

@media (max-width: 920px) {
  .cta-band__inner--form,
  .contact-layout {
    width: min(calc(100% - 1.5rem), var(--container));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .stories-preview::before,
  .offers-preview::before,
  .cta-band--form::before {
    opacity: 0.24;
    transform: scale(0.72);
  }

  .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive {
    gap: 1.15rem;
  }

  .story-card__media,
  .offer-card__media,
  .story-grid--archive .story-card__media,
  .story-grid--preview .story-card__media,
  .story-grid--archive .story-card:nth-child(n) .story-card__media,
  .story-grid--preview .story-card:nth-child(n) .story-card__media {
    aspect-ratio: 4 / 4.75 !important;
  }

  .story-card__overlay,
  .offer-card__body {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .offer-gallery-slide,
  .offer-gallery-slide:nth-child(2n) {
    flex-basis: min(78vw, 390px);
  }

  .packages-grid--compact {
    grid-template-columns: 1fr;
  }
}

/* v1.1.9 — cleaner agency rhythm: no decorative shapes, square buttons, fixed stories grid */
.stories-preview::before,
.offers-preview::before,
.cta-band--form::before {
  content: none !important;
  display: none !important;
}

.section-heading h2::after {
  width: min(72px, 24vw);
  background: rgba(183, 121, 95, 0.32);
}

.btn,
button.btn,
input[type="submit"],
.slider-btn {
  border-radius: 0 !important;
}

.stories-preview .story-grid--preview,
.story-grid--archive {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.4vw, 2.1rem) !important;
  max-width: min(100%, 1160px);
  margin-inline: auto;
  columns: initial !important;
  column-gap: initial !important;
  align-items: stretch;
  
}

.stories-preview .story-card,
.story-grid--archive .story-card {
  min-width: 0;
  margin: 0 !important;
  break-inside: auto;
}

.stories-preview .story-card__link,
.story-grid--archive .story-card__link {
  display: block;
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #1f1a16;
  box-shadow: 0 16px 42px rgba(35, 29, 24, 0.1);
}

.stories-preview .story-card__media,
.story-grid--archive .story-card__media,
.stories-preview .story-card:nth-child(n) .story-card__media,
.story-grid--archive .story-card:nth-child(n) .story-card__media {
  display: block;
  margin: 0 !important;
  aspect-ratio: 4 / 5.08 !important;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--c-line);
}

.stories-preview .story-card__media img,
.story-grid--archive .story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-preview .story-card__media::after,
.story-grid--archive .story-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 21, 18, 0) 42%, rgba(25, 21, 18, 0.76) 100%);
  opacity: 1;
}

.stories-preview .story-card__overlay,
.story-grid--archive .story-card__overlay {
  position: absolute;
  inset: auto clamp(1.15rem, 1.8vw, 1.5rem) clamp(1.05rem, 1.8vw, 1.45rem);
  z-index: 2;
  display: block;
  padding: 0 !important;
  border: 0;
  background: transparent !important;
  color: var(--c-white);
  text-align: left !important;
  transform: none !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.stories-preview .story-card__term,
.story-grid--archive .story-card__term {
  display: block;
  max-height: none;
  margin: 0 0 0.48rem;
  overflow: visible;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: left !important;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.3rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.stories-preview .story-card:hover .story-card__term,
.stories-preview .story-card:focus-within .story-card__term,
.story-grid--archive .story-card:hover .story-card__term,
.story-grid--archive .story-card:focus-within .story-card__term {
  opacity: 1;
  transform: translateY(0);
}

.stories-preview .story-card h3,
.story-grid--archive .story-card h3 {
  display: -webkit-box;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--c-white);
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.04;
  text-align: left !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.stories-preview .story-card__overlay::after,
.story-grid--archive .story-card__overlay::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin-top: 0.65rem;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .stories-preview .story-grid--preview,
  .story-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.35rem) !important;
  }
}

@media (max-width: 560px) {
  .stories-preview .story-grid--preview,
  .story-grid--archive {
    grid-template-columns: 1fr;
  }
}

/* v1.1.10 — explicit story card gutters */
.stories-preview .story-grid.story-grid--preview,
.story-grid.story-grid--archive {
  gap: 0 !important;
  column-gap: clamp(1.35rem, 2.4vw, 2.1rem) !important;
  row-gap: clamp(1.65rem, 3vw, 2.5rem) !important;
}

.stories-preview .story-card__media,
.story-grid--archive .story-card__media {
  margin: 0 !important;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(127, 89, 69, 0.14);
  color: var(--c-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__legal a:hover {
  color: var(--c-accent-dark);
}

/* v1.1.11 — exact viewport hero height */
.hero,
.hero--home,
.hero--subpage,
.offer-hero {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100svh;
}

.hero__content {
  min-height: 100%;
}

/* v1.1.12 — tighter page rhythm, denser story galleries and footer credit */
.page-hero--minimal {
  padding-top: calc(var(--header-height) + clamp(2.2rem, 4vw, 4.4rem)) !important;
  padding-bottom: clamp(2.2rem, 4vw, 4rem) !important;
}

.page-hero--minimal h1 {
  font-size: clamp(2.65rem, 5.4vw, 5.35rem);
}

.page-hero--legal {
  padding-bottom: clamp(1.7rem, 3vw, 3rem) !important;
}

.section--narrow,
.legal-page {
  padding-block: clamp(2.7rem, 4.8vw, 4.8rem);
}

.legal-page__content {
  max-width: 860px;
}

.legal-page__content h2,
.legal-page__content h3 {
  margin-top: 1.8em;
}

.single-story .story-gallery-section {
  padding-block: 0 clamp(2.2rem, 4vw, 4.4rem);
  overflow: hidden;
  background: var(--c-bg);
}

.single-story .story-gallery-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.single-story .masonry-gallery--artistic {
  display: grid !important;
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(18px, 2vw, 32px);
  gap: clamp(4px, 0.45vw, 7px);
  padding: 0 !important;
  background: var(--c-bg);
}

.single-story .masonry-gallery--artistic .gallery-item {
  display: block;
  width: auto;
  min-height: 0;
  margin: 0 !important;
  overflow: hidden;
  break-inside: auto;
  grid-column: span 3;
  grid-row: span 9;
}

.single-story .masonry-gallery--artistic .gallery-item.is-landscape,
.single-story .masonry-gallery--artistic .gallery-item.tile--wide {
  grid-column: span 6;
  grid-row: span 9;
}

.single-story .masonry-gallery--artistic .gallery-item.is-portrait,
.single-story .masonry-gallery--artistic .gallery-item.tile--tall {
  grid-column: span 3;
  grid-row: span 14;
}

.single-story .masonry-gallery--artistic .gallery-item.is-square,
.single-story .masonry-gallery--artistic .gallery-item.tile--large {
  grid-column: span 4;
  grid-row: span 12;
}

.single-story .masonry-gallery--artistic .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-story .masonry-gallery--balanced {
  display: block !important;
  column-count: 4;
  column-gap: clamp(6px, 0.55vw, 10px);
  padding: 0 !important;
  background: var(--c-bg);
}

.single-story .masonry-gallery--balanced .gallery-item {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(6px, 0.55vw, 10px) !important;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  grid-column: auto;
  grid-row: auto;
}

.single-story .masonry-gallery--balanced .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.site-footer__credit {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
  color: color-mix(in srgb, var(--c-muted) 82%, transparent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-footer__credit a,
.site-footer__credit {
  align-items: center;
  gap: 0.55rem;
}

.site-footer__credit a {
  display: inline-flex;
  color: inherit;
}

.site-footer__credit img {
  width: auto;
  max-width: 92px;
  max-height: 22px;
  object-fit: contain;
  opacity: 0.72;
}

.site-footer__credit a:hover img {
  opacity: 1;
}

@media (max-width: 1100px) {
  .single-story .masonry-gallery--artistic {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: clamp(17px, 2.6vw, 28px);
  }

  .single-story .masonry-gallery--artistic .gallery-item,
  .single-story .masonry-gallery--artistic .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic .gallery-item.tile--tall {
    grid-column: span 2;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic .gallery-item.tile--wide,
  .single-story .masonry-gallery--artistic .gallery-item.is-square,
  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    grid-column: span 4;
  }

  .single-story .masonry-gallery--balanced {
    column-count: 3;
  }
}

@media (max-width: 680px) {
  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 1.8rem) !important;
    padding-bottom: 2.4rem !important;
  }

  .single-story .masonry-gallery--artistic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 15vw;
    gap: 4px;
  }

  .single-story .masonry-gallery--artistic .gallery-item,
  .single-story .masonry-gallery--artistic .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic .gallery-item.tile--tall,
  .single-story .masonry-gallery--artistic .gallery-item.is-square,
  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    grid-column: span 2;
    grid-row: span 3;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic .gallery-item.tile--wide {
    grid-column: span 4;
    grid-row: span 3;
  }

  .single-story .masonry-gallery--balanced {
    column-count: 2;
    column-gap: 4px;
  }

  .single-story .masonry-gallery--balanced .gallery-item {
    margin-bottom: 4px !important;
  }
}

/* v1.1.13: centered hero content and refined contact heading scale */
.hero .hero__content,
.hero--home .hero__content,
.offer-hero .hero__content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-top: var(--header-height);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.hero .hero__content > *,
.hero--home .hero__content > *,
.offer-hero .hero__content > * {
  margin-left: auto;
  margin-right: auto;
}

.hero .hero__subtitle,
.offer-hero .hero__subtitle {
  text-align: center;
}

.hero .btn--light,
.offer-hero .btn--light {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--c-white);
  backdrop-filter: blur(3px);
}

.hero .btn--light:hover,
.hero .btn--light:focus-visible,
.offer-hero .btn--light:hover,
.offer-hero .btn--light:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: var(--c-white);
  color: var(--c-white);
}

.contact-card h2,
.cta-band__heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

@media (max-width: 680px) {
  .hero .hero__content,
  .hero--home .hero__content,
  .offer-hero .hero__content {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2.6rem;
  }
}

/* v1.1.14: unified containers and responsive page rhythm */
:root {
  --layout-gutter: clamp(1.5rem, 5vw, 5rem);
  --section-space: clamp(3.6rem, 7vw, 7rem);
  --section-space-compact: clamp(2.8rem, 5vw, 5rem);
  --grid-column-gap: clamp(1.25rem, 2.4vw, 2rem);
  --grid-row-gap: clamp(1.55rem, 3vw, 2.5rem);
}

.container,
.site-header__inner.container,
.contact-layout,
.cta-band__inner--form {
  width: min(calc(100% - var(--layout-gutter)), var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(calc(100% - var(--layout-gutter)), var(--container-wide));
}

.container--narrow {
  width: min(calc(100% - var(--layout-gutter)), var(--container-narrow));
}

.section {
  padding-block: var(--section-space);
}

.section--narrow,
.legal-page {
  padding-block: var(--section-space-compact);
}

.page-hero--minimal {
  padding-top: calc(var(--header-height) + clamp(2rem, 4vw, 4rem)) !important;
  padding-bottom: clamp(1.9rem, 3.8vw, 3.6rem) !important;
}

.page-hero__content {
  width: min(calc(100% - var(--layout-gutter)), 900px);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: clamp(1.9rem, 3.8vw, 3.2rem);
}

.story-grid,
.stories-preview .story-grid--preview,
.story-grid--archive,
.offer-grid,
.offer-grid--archive,
.packages-grid,
.post-grid,
.process-grid {
  max-width: 100%;
  column-gap: var(--grid-column-gap) !important;
  row-gap: var(--grid-row-gap) !important;
}

.contact-layout,
.cta-band__inner--form {
  gap: clamp(1.6rem, 4vw, 4rem);
}

.offer-gallery-head,
.offer-extra,
.faq-list,
.process-grid,
.features-grid,
.packages-grid {
  width: 100%;
}

@media (max-width: 1100px) {
  :root {
    --layout-gutter: clamp(1.5rem, 4.5vw, 3.5rem);
  }

  .story-grid--preview,
  .stories-preview .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive,
  .post-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --layout-gutter: 1.5rem;
    --section-space: clamp(2.8rem, 11vw, 4.2rem);
    --section-space-compact: clamp(2.25rem, 9vw, 3.4rem);
    --grid-column-gap: 1rem;
    --grid-row-gap: 1.15rem;
  }

  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 1.55rem) !important;
    padding-bottom: 2.1rem !important;
  }

  .story-grid--preview,
  .stories-preview .story-grid--preview,
  .story-grid--archive,
  .offer-grid,
  .offer-grid--archive,
  .post-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner--form,
  .contact-layout {
    width: min(calc(100% - var(--layout-gutter)), var(--container));
  }
}

/* v1.1.15: softer footer socials and scroll reveal motion */
.site-footer .social-links--footer .social-link {
  border-color: rgba(127, 89, 69, 0.18);
  background: rgba(255, 253, 249, 0.42);
  color: color-mix(in srgb, var(--c-accent-dark) 82%, var(--c-muted));
  box-shadow: 0 0 0 rgba(35, 29, 24, 0);
}

.site-footer .social-links--footer .social-link:hover,
.site-footer .social-links--footer .social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(127, 89, 69, 0.34);
  background: rgba(183, 121, 95, 0.1);
  color: var(--c-accent-dark);
  box-shadow: 0 10px 24px rgba(35, 29, 24, 0.07);
}

.czu-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.czu-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading.czu-reveal,
.site-footer__column.czu-reveal {
  transform: translate3d(0, 12px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .czu-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* v1.1.16: calmer offer cards and equalized story title rhythm */
.offer-card__body .eyebrow,
.offer-card__body p:not(.eyebrow),
.offer-card .text-link {
  display: none !important;
}

.offer-card__body h3 a,
.offer-card__body h3 a:hover,
.offer-card__body h3 a:focus-visible {
  color: inherit;
}

.stories-preview .story-card__overlay,
.story-grid--archive .story-card__overlay {
  display: grid;
  grid-template-rows: minmax(0, auto) minmax(2.12em, auto) auto;
  row-gap: 0.48rem;
justify-content:flex-start;
}

.stories-preview .story-card h3,
.story-grid--archive .story-card h3 {
  min-height: 2.12em;
  align-self: end;
}

.stories-preview .story-card__overlay::after,
.story-grid--archive .story-card__overlay::after {
  margin-top: 0.15rem;
}

@media (max-width: 680px) {
  .stories-preview .story-card h3,
  .story-grid--archive .story-card h3 {
    min-height: auto;
  }
}

/* v1.1.17: compact minimal page heroes */
.page-hero--minimal {
  padding-top: calc(var(--header-height) + clamp(1.45rem, 3vw, 2.7rem)) !important;
  padding-bottom: clamp(1.4rem, 3vw, 2.6rem) !important;
}

@media (max-width: 680px) {
  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 1.1rem) !important;
    padding-bottom: 1.55rem !important;
  }
}

/* v1.1.18: remove oversized heading margins in compact page heroes */
.page-hero--minimal {
  padding-top: calc(var(--header-height) + clamp(0.95rem, 2.2vw, 1.8rem)) !important;
  padding-bottom: clamp(1rem, 2.2vw, 1.65rem) !important;
}

.page-hero--minimal .eyebrow {
  margin-bottom: clamp(0.3rem, 0.8vw, 0.55rem);
}

.page-hero--minimal h1 {
  margin: 0;
  line-height: 0.92;
}

.page-hero--minimal p:not(.eyebrow) {
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 0.8rem) !important;
    padding-bottom: 1.15rem !important;
  }
}

/* v1.1.19: full contact sections and subtle botanical accents */
:root {
  --botanical-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 240' fill='none'%3E%3Cpath d='M87 228C91 180 83 127 61 78' stroke='%237f5945' stroke-width='1.35' stroke-linecap='round'/%3E%3Cpath d='M69 105C45 86 29 63 23 38C49 41 70 58 82 86' stroke='%237f5945' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M84 137C111 110 130 82 139 48C107 54 85 75 75 110' stroke='%2359675d' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M79 164C51 148 30 127 16 101C47 99 73 112 92 136' stroke='%237f5945' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M91 190C119 174 140 152 154 126C123 124 97 137 78 162' stroke='%2359675d' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='139' cy='48' r='4' stroke='%237f5945' stroke-width='1.05'/%3E%3Ccircle cx='23' cy='38' r='3.5' stroke='%2359675d' stroke-width='1.05'/%3E%3C/svg%3E");
}

.about-page,
.stories-preview,
.offers-preview,
.offer-features-section,
.offer-contact-section,
.contact-page {
  isolation: isolate;
}

.about-page::after,
.stories-preview::after,
.offers-preview::after,
.offer-features-section::after,
.offer-contact-section::after,
.contact-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: clamp(120px, 15vw, 210px);
  aspect-ratio: 3 / 4;
  background-image: var(--botanical-accent);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.085;
  filter: saturate(0.8);
}

.about-page > .container,
.stories-preview > .container,
.offers-preview > .container,
.offer-features-section > .container,
.offer-contact-section > .container,
.contact-page > .container {
  position: relative;
  z-index: 1;
}

.about-page::after,
.offer-contact-section::after,
.contact-page::after {
  right: max(1.25rem, 5vw);
  top: clamp(1rem, 4vw, 3rem);
  transform: rotate(8deg);
}

.stories-preview::after,
.offer-features-section::after {
  left: max(1rem, 4vw);
  bottom: clamp(1rem, 4vw, 3rem);
  transform: scaleX(-1) rotate(-7deg);
}

.offers-preview::after {
  right: max(1rem, 4vw);
  bottom: clamp(1rem, 4vw, 3rem);
  transform: rotate(12deg);
}

.offer-contact-section .contact-layout {
  align-items: stretch;
}

.offer-contact-section .contact-card,
.offer-contact-section .form-card {
  height: 100%;
}

@media (max-width: 680px) {
  .about-page::after,
  .stories-preview::after,
  .offers-preview::after,
  .offer-features-section::after,
  .offer-contact-section::after,
  .contact-page::after {
    width: 112px;
    opacity: 0.055;
  }
}

/* v1.1.20: full home contact and quieter footer composition */
.home-contact-section .contact-layout {
  align-items: stretch;
}

.home-contact-section .contact-card,
.home-contact-section .form-card {
  height: 100%;
}

.site-footer {
  padding-block: clamp(3.2rem, 6vw, 5.2rem) 1.25rem;
}

.site-footer__top {
  grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.95fr) minmax(180px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.site-footer__column--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__brand {
  margin-bottom: clamp(1rem, 2.2vw, 1.6rem);
}

.site-footer__legal {
  justify-content: flex-start;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  padding-top: clamp(0.9rem, 1.8vw, 1.15rem);
  border-top: 1px solid rgba(127, 89, 69, 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.site-footer__credit {
  justify-content: flex-start;
  width: 100%;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(127, 89, 69, 0.1);
}

.site-footer__copy {
  margin-top: clamp(0.8rem, 1.8vw, 1.2rem);
  padding-top: 0;
  border-top: 0;
  text-align: left;
}

@media (max-width: 920px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__brand,
  .site-footer__contact,
  .footer-nav ul,
  .social-links--footer,
  .site-footer__legal,
  .site-footer__credit,
  .site-footer__copy {
    justify-content: center;
    text-align: center;
  }

  .site-footer__column--brand,
  .site-footer__legal,
  .site-footer__credit {
    align-items: center;
  }
}

/* v1.1.21: mobile polish, gallery lightbox, extra offer section and cleaner media grids */
.hero__image-link,
.page-hero__image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero__image-link img,
.page-hero__image-link img,
.js-lightbox img,
.czu-lightbox img {
  -webkit-user-drag: none;
  user-select: none;
}

.hero__overlay,
.page-hero__overlay,
.hero__content,
.page-hero__content {
  pointer-events: none;
}

.hero__content a,
.page-hero__content a {
  pointer-events: auto;
}

.czu-lightbox {
  gap: 1rem;
}

.czu-lightbox__close,
.czu-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(24, 21, 19, 0.42);
  color: var(--c-white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.czu-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

.czu-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 1.35rem;
}

.czu-lightbox__nav--prev {
  left: clamp(0.8rem, 3vw, 2rem);
}

.czu-lightbox__nav--next {
  right: clamp(0.8rem, 3vw, 2rem);
}

.czu-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.offer-extra-section {
  background: var(--c-bg);
  overflow: hidden;
}

.offer-extra {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.offer-extra__content {
  max-width: 680px;
}

.offer-extra__content h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.offer-extra__points {
  display: grid;
  gap: 0.85rem;
  margin: clamp(1.4rem, 3vw, 2.2rem) 0;
  padding: 0;
  list-style: none;
}

.offer-extra__points li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.offer-extra__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent-dark);
}

.offer-extra__media {
  width: min(100%, 560px);
  justify-self: end;
  overflow: hidden;
  background: transparent;
}

.offer-extra__media--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.offer-extra__media--soft {
  aspect-ratio: 4 / 5;
  border-radius: clamp(1rem, 2vw, 1.6rem);
}

.offer-extra__media--square {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.offer-extra__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-gallery-section {
  background: transparent !important;
}

.offer-gallery-slider,
.offer-gallery-slider__track,
.offer-gallery-slide {
  background: transparent !important;
}

.offer-gallery-slide {
  box-shadow: none;
}

.offer-gallery-slide img,
.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.single-story .masonry-gallery--artistic {
  display: block !important;
  width: 100%;
  column-count: 3;
  column-gap: clamp(5px, 0.55vw, 9px);
  padding: 0 !important;
  background: transparent;
}

.single-story .masonry-gallery--artistic .gallery-item,
.single-story .masonry-gallery--artistic .gallery-item.is-landscape,
.single-story .masonry-gallery--artistic .gallery-item.is-portrait,
.single-story .masonry-gallery--artistic .gallery-item.is-square,
.single-story .masonry-gallery--artistic .gallery-item.tile--wide,
.single-story .masonry-gallery--artistic .gallery-item.tile--tall,
.single-story .masonry-gallery--artistic .gallery-item.tile--large {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(5px, 0.55vw, 9px) !important;
  overflow: hidden;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  grid-column: auto;
  grid-row: auto;
}

.single-story .masonry-gallery--artistic .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

@media (max-width: 920px) {
  .primary-nav .menu-item-has-children > a {
    gap: 0.5rem;
  }

  .primary-nav .menu-item-has-children > a::before {
    content: "+";
    order: 2;
    color: var(--c-accent-dark);
    font-family: var(--font-body);
    font-size: 1rem;
  }

  .primary-nav .menu-item-has-children.is-submenu-open > a::before {
    content: "-";
  }

  .primary-nav .sub-menu {
    position: static;
    display: grid;
    width: min(100%, 320px);
    max-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 420px;
    padding: 0.45rem 0 0.9rem;
  }

  .primary-nav .sub-menu a {
    justify-content: center;
    min-height: 34px;
    color: var(--c-muted);
    font-size: 0.86rem;
  }

  .site-header .social-links {
    gap: 0.8rem;
  }

  .site-header .social-link {
    width: 42px;
    height: 42px;
  }

  .site-header .social-link svg {
    width: 19px;
    height: 19px;
  }

  .offer-extra {
    grid-template-columns: 1fr;
  }

  .offer-extra__content {
    max-width: none;
  }

  .offer-extra__media {
    justify-self: center;
    width: min(100%, 460px);
  }

  .offer-gallery-head {
    align-items: start;
    gap: 1.1rem;
  }

  .offer-gallery-controls {
    justify-content: flex-start;
  }

  .single-story .masonry-gallery--artistic {
    column-count: 2;
  }

  .site-footer__top,
  .site-footer__column,
  .site-footer__column--brand {
    align-items: center;
    text-align: center;
  }

  .site-footer__contact {
    width: min(100%, 420px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --layout-gutter: clamp(1.25rem, 7vw, 1.75rem);
    --section-space: clamp(2.6rem, 10vw, 3.8rem);
  }

  .offer-gallery-section {
    overflow: hidden;
  }

  .offer-gallery-head {
    grid-template-columns: 1fr;
  }

  .offer-gallery-slider {
    margin-inline: calc(var(--layout-gutter) / -2);
  }

  .offer-gallery-slider__track {
    gap: 0.85rem;
    padding-inline: calc(var(--layout-gutter) / 2);
  }

  .offer-gallery-slide,
  .offer-gallery-slide:nth-child(2n) {
    flex-basis: min(82vw, 430px);
  }

  .offer-gallery-progress {
    width: min(100%, 320px);
  }

  .offer-extra__content h2 {
    font-size: clamp(2.1rem, 13vw, 3.4rem);
  }

  .offer-extra__media--circle {
    width: min(82vw, 360px);
  }

  .single-story .masonry-gallery--artistic {
    column-count: 1;
  }

  .site-footer {
    padding-block: 3rem 1.3rem;
  }

  .site-footer__brand {
    margin-inline: auto;
  }

  .site-footer__legal,
  .site-footer__credit,
  .site-footer__copy,
  .social-links--footer {
    justify-content: center;
    text-align: center;
  }
}

/* v1.1.22: gallery scope, cleaner lightbox controls and mobile/footer corrections */
.offer-gallery-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, #f6efe7 100%) !important;
}

.offer-gallery-slider,
.offer-gallery-slider__track,
.offer-gallery-slide {
  background: transparent !important;
}

.offer-gallery-slider__track {
  padding: 0 !important;
}

.offer-gallery-slide {
  cursor: zoom-in;
}

.czu-lightbox {
  padding: clamp(1rem, 3vw, 2.4rem);
  background: rgba(22, 19, 17, 0.88);
}

.czu-lightbox img {
  max-width: min(92vw, 1280px);
  max-height: 88svh;
}

.czu-lightbox .czu-lightbox__close,
.czu-lightbox .czu-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: rgba(26, 22, 19, 0.48);
  color: var(--c-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.czu-lightbox .czu-lightbox__close {
  top: clamp(0.8rem, 2vw, 1.3rem);
  right: clamp(0.8rem, 2vw, 1.3rem);
  bottom: auto;
  left: auto;
  z-index: 3;
}

.czu-lightbox .czu-lightbox__nav {
  top: 50%;
  bottom: auto;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  z-index: 2;
}

.czu-lightbox .czu-lightbox__nav--prev {
  right: auto;
  left: clamp(0.8rem, 2.2vw, 2rem);
}

.czu-lightbox .czu-lightbox__nav--next {
  right: clamp(0.8rem, 2.2vw, 2rem);
  left: auto;
}

.offer-extra-section {
  background: var(--c-bg);
}

.offer-extra.container {
  width: min(calc(100% - (var(--layout-gutter) * 2)), var(--container)) !important;
  max-width: 1240px;
  margin-inline: auto;
}

.offer-extra {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.offer-extra__content {
  max-width: 640px;
}

.offer-extra__content h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: none;
}

.offer-extra__points {
  gap: 0.7rem;
  margin-block: clamp(1.2rem, 2.5vw, 1.8rem);
}

.offer-extra__points li {
  padding-left: 1.15rem;
  line-height: 1.65;
}

.offer-extra__media {
  width: min(100%, 480px);
  justify-self: end;
}

.site-footer .contact-methods--footer {
  display: grid;
  width: min(100%, 390px);
  margin-inline: auto;
}

.site-footer .contact-methods--footer .contact-method {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  padding-block: 0.85rem;
  text-align: left;
}

.site-footer .contact-methods--footer .contact-method__icon {
  flex-basis: auto;
  width: 38px;
  height: 38px;
}

.site-footer .contact-methods--footer .contact-method__body {
  min-width: 0;
}

.site-footer .contact-methods--footer .contact-method__value {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .offer-extra {
    grid-template-columns: 1fr;
  }

  .offer-extra__content,
  .offer-extra__content h2 {
    max-width: none;
  }

  .offer-extra__media {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .offer-gallery-slider {
    margin-inline: 0;
  }

  .offer-gallery-slider__track {
    padding: 0 !important;
  }

  .czu-lightbox {
    padding: 1rem;
  }

  .czu-lightbox .czu-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .offer-extra.container {
    width: min(calc(100% - (var(--layout-gutter) * 2)), var(--container)) !important;
  }

  .offer-extra__content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .site-footer__column--contact {
    width: 100%;
    align-items: center;
  }

  .site-footer .contact-methods--footer {
    width: min(100%, 360px);
  }
}

/* v1.1.23: tighter minimal heroes, softer buttons, mobile offer menu and gallery gutters */
.page-hero--minimal {
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(1.8rem, 3.2vw, 2.6rem)) !important;
  padding-bottom: clamp(1.8rem, 3.2vw, 2.6rem) !important;
}

.page-hero--minimal h1 {
  margin-block: 0;
}

.btn,
button.btn {
  border-radius: 999px !important;
}

.slider-btn {
  border-radius: 999px !important;
}

.offer-gallery-slide {
  cursor: default;
}

.offer-gallery-slide img {
  -webkit-user-drag: none;
  user-select: none;
}

.single-story .masonry-gallery--artistic {
  --story-gallery-gap: clamp(6px, 0.7vw, 10px);
  display: block !important;
  column-count: 3 !important;
  column-gap: var(--story-gallery-gap) !important;
  row-gap: var(--story-gallery-gap) !important;
}

.single-story .masonry-gallery--artistic .gallery-item,
.single-story .masonry-gallery--artistic .gallery-item.is-landscape,
.single-story .masonry-gallery--artistic .gallery-item.is-portrait,
.single-story .masonry-gallery--artistic .gallery-item.is-square,
.single-story .masonry-gallery--artistic .gallery-item.tile--wide,
.single-story .masonry-gallery--artistic .gallery-item.tile--tall,
.single-story .masonry-gallery--artistic .gallery-item.tile--large {
  display: inline-block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 var(--story-gallery-gap) !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  grid-column: auto !important;
  grid-row: auto !important;
}

.single-story .masonry-gallery--artistic .gallery-item img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: initial !important;
}

@media (max-width: 920px) {
  .primary-nav .menu-item-has-children > a {
    position: relative;
    padding-inline: 2.4rem;
  }

  .primary-nav .menu-item-has-children > a::before {
    content: "" !important;
    position: absolute;
    top: 50%;
    right: clamp(0.9rem, 6vw, 1.6rem);
    order: initial;
    width: 0.48rem;
    height: 0.48rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    color: var(--c-accent-dark);
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.24s ease, color 0.24s ease;
  }

  .primary-nav .menu-item-has-children.is-submenu-open > a::before {
    content: "" !important;
    transform: translateY(-38%) rotate(225deg);
  }

  .primary-nav .sub-menu {
    width: min(100%, 360px);
    padding-inline: 0.25rem;
  }

  .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    padding-block: 0.35rem 0.85rem;
  }

  .primary-nav .sub-menu a {
    min-height: 40px;
    padding-inline: 0.7rem;
    font-size: clamp(0.68rem, 3vw, 0.82rem);
    line-height: 1.35;
    letter-spacing: 0.12em;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .single-story .masonry-gallery--artistic {
    column-count: 2 !important;
  }
}

@media (max-width: 680px) {
  .page-hero--minimal {
    padding-top: calc(var(--header-height) + 1.6rem) !important;
    padding-bottom: 1.7rem !important;
  }

  .single-story .masonry-gallery--artistic {
    column-count: 1 !important;
  }
}

/* v1.1.24: transparent story header and true equal-gap story mosaic */
body.czu-header-blur.single-historia .site-header:not(.is-scrolled) {
  background: transparent;
  color: var(--c-white);
  border-bottom: 0;
  box-shadow: none;
}

body.czu-header-blur.single-historia .site-header:not(.is-scrolled)::after {
  opacity: 0.08;
}

body.czu-header-transparent.single-historia .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.22), rgba(20, 17, 15, 0));
  color: var(--c-white);
  border-bottom: 0;
  box-shadow: none;
}

.single-historia .site-header:not(.is-scrolled) .site-logo--default {
  opacity: 0;
}

.single-historia .site-header:not(.is-scrolled) .site-logo--hero {
  opacity: 1;
}

.single-historia .site-header:not(.is-scrolled) .social-links--header .social-link,
.single-historia .site-header:not(.is-scrolled) .nav-toggle {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 921px) {
  .single-story .masonry-gallery--artistic {
    --story-gallery-gap: clamp(6px, 0.55vw, 9px);
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: clamp(7px, 0.72vw, 12px) !important;
    grid-auto-flow: dense !important;
    gap: var(--story-gallery-gap) !important;
    padding: 0 !important;
    background: var(--c-bg);
    column-count: initial !important;
    column-gap: var(--story-gallery-gap) !important;
    row-gap: var(--story-gallery-gap) !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item,
  .single-story .masonry-gallery--artistic .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic .gallery-item.is-square,
  .single-story .masonry-gallery--artistic .gallery-item.tile--wide,
  .single-story .masonry-gallery--artistic .gallery-item.tile--tall,
  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-height: 0;
    margin: 0 !important;
    overflow: hidden;
    break-inside: auto !important;
    -webkit-column-break-inside: auto !important;
    grid-column: span 4 !important;
    grid-row: span 36 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-landscape {
    grid-column: span 4 !important;
    grid-row: span 27 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-portrait {
    grid-column: span 4 !important;
    grid-row: span 50 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-square {
    grid-column: span 4 !important;
    grid-row: span 38 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--wide {
    grid-column: span 8 !important;
    grid-row: span 31 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--tall {
    grid-column: span 4 !important;
    grid-row: span 56 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    grid-column: span 4 !important;
    grid-row: span 44 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }

  .single-story .masonry-gallery--artistic.is-js-masonry {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: row !important;
    align-items: start !important;
  }

  .single-story .masonry-gallery--artistic.is-js-masonry .masonry-gallery__column {
    display: grid;
    gap: var(--story-gallery-gap);
    align-content: start;
  }

  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.is-square,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.tile--wide,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.tile--tall,
  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item.tile--large {
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .single-story .masonry-gallery--artistic.is-js-masonry .gallery-item img {
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 920px) {
  .single-historia .site-header:not(.is-scrolled) .site-logo--default,
  .single-historia .site-header:not(.is-scrolled) .site-logo--hero {
    opacity: 1;
  }

  .single-story .masonry-gallery--artistic {
    --story-gallery-gap: clamp(6px, 1.6vw, 9px);
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--story-gallery-gap) !important;
    column-count: initial !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item,
  .single-story .masonry-gallery--artistic .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic .gallery-item.is-square,
  .single-story .masonry-gallery--artistic .gallery-item.tile--wide,
  .single-story .masonry-gallery--artistic .gallery-item.tile--tall,
  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item img {
    width: 100%;
    height: auto !important;
    object-fit: initial !important;
  }
}

@media (max-width: 560px) {
  .single-story .masonry-gallery--artistic {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.25: keep desktop dropdown transform out of the mobile menu */
@media (max-width: 920px) {
  .primary-nav .menu-item-has-children > .sub-menu,
  .primary-nav .menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu-item-has-children:focus-within > .sub-menu,
  .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    width: min(100%, 360px) !important;
    max-width: calc(100vw - 3rem);
    margin-inline: auto !important;
    transform: none !important;
  }

  .primary-nav .menu-item-has-children:not(.is-submenu-open) > .sub-menu {
    max-height: 0 !important;
    padding-block: 0 !important;
  }

  .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
    max-height: 520px !important;
  }
}

/* v1.1.26: single story header uses the same visible hero-header behavior as offers */
.single-historia .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  border-color: transparent;
  box-shadow: none;
  color: var(--c-white);
}

.single-historia .site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.9);
  color: var(--c-text);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(35, 29, 24, 0.045);
}

body.czu-header-blur.single-historia .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.15), rgba(31, 27, 24, 0.035));
  color: var(--c-white);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

body.czu-header-blur.single-historia .site-header:not(.is-scrolled)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 22px;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(180deg, rgba(31, 27, 24, 0.035), rgba(31, 27, 24, 0));
}

body.czu-header-transparent.single-historia .site-header:not(.is-scrolled) {
  background: transparent;
  color: var(--c-white);
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.single-historia .site-header:not(.is-scrolled) .site-logo--default {
  display: none !important;
  opacity: 1;
}

.single-historia .site-header:not(.is-scrolled) .site-logo--hero {
  display: block !important;
  opacity: 1;
}

.single-historia .site-header.is-scrolled .site-logo--default,
.single-historia .site-header.is-scrolled .site-logo--hero {
  display: none !important;
  opacity: 1;
}

.single-historia .site-header.is-scrolled .site-logo--sticky {
  display: block !important;
  opacity: 1;
}

.single-historia .site-header:not(.is-scrolled) .social-links--header .social-link,
.single-historia .site-header:not(.is-scrolled) .nav-toggle {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.single-historia .site-header:not(.is-scrolled) .social-links--header .social-link:hover,
.single-historia .site-header:not(.is-scrolled) .nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}

/* v1.1.32: cleaner mobile menu and classic single-story galleries on mobile */
@media (max-width: 920px) {
  .primary-nav li,
  .primary-nav .menu-item,
  .primary-nav .sub-menu,
  .primary-nav .sub-menu li,
  .primary-nav a,
  .primary-nav .sub-menu a {
    border: 0 !important;
    box-shadow: none !important;
  }

  .primary-nav .sub-menu {
    width: min(100%, 340px) !important;
    padding: 0.35rem 0 0.15rem !important;
    background: transparent !important;
  }

  .primary-nav .sub-menu a {
    justify-content: center;
    padding: 0.42rem 0 !important;
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center;
  }

  .single-story .masonry-gallery,
  .single-story .masonry-gallery--compact,
  .single-story .masonry-gallery--balanced,
  .single-story .masonry-gallery--artistic {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    grid-auto-rows: auto !important;
    gap: clamp(0.75rem, 3vw, 1rem) !important;
    column-count: initial !important;
    column-gap: clamp(0.75rem, 3vw, 1rem) !important;
    row-gap: clamp(0.75rem, 3vw, 1rem) !important;
  }

  .single-story .masonry-gallery .gallery-item,
  .single-story .masonry-gallery .gallery-item.is-landscape,
  .single-story .masonry-gallery .gallery-item.is-portrait,
  .single-story .masonry-gallery .gallery-item.is-square,
  .single-story .masonry-gallery .gallery-item.tile--wide,
  .single-story .masonry-gallery .gallery-item.tile--tall,
  .single-story .masonry-gallery .gallery-item.tile--large {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: auto !important;
    overflow: hidden;
  }

  .single-story .masonry-gallery .gallery-item img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* v1.1.33: white mobile overlay branding, tighter hero title rhythm and package point highlights */
.hero .hero__content h1,
.hero--home .hero__content h1,
.offer-hero .hero__content h1 {
  margin-top: clamp(0.35rem, 0.8vw, 0.7rem);
  margin-bottom: clamp(0.55rem, 1.1vw, 0.95rem);
}

.package-card li.is-featured {
  color: var(--c-accent-dark);
  font-weight: 600;
}

.offer-extra__points li.is-featured {
  color: var(--c-accent-dark);
  font-weight: 600;
}

.packages-grid--compact .package-card,
.single-offer .packages-grid--compact .package-card {
  padding: clamp(2rem, 3.4vw, 2.8rem) clamp(1.45rem, 3vw, 2.25rem) !important;
}

@media (max-width: 920px) {
  body.nav-open .site-header {
    background: rgba(251, 250, 247, 0.96) !important;
    color: var(--c-text) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  body.nav-open .site-header .site-logo--default {
    display: block !important;
    opacity: 1 !important;
  }

  body.nav-open .site-header .site-logo--hero,
  body.nav-open .site-header .site-logo--sticky {
    display: none !important;
    opacity: 0 !important;
  }

  body.nav-open .site-header .nav-toggle {
    color: var(--c-text) !important;
    border-color: rgba(134, 94, 73, 0.24) !important;
  }
}

/* v1.1.35: tighter contact headings and smarter email fitting */
.contact-card h2,
.form-card h2 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  text-transform: var(--heading-text-transform);
  margin-top: clamp(0.3rem, 0.8vw, 0.55rem);
  margin-bottom: clamp(0.75rem, 1.6vw, 1.15rem);
}

.contact-card__text,
.form-card__intro {
  margin-top: 0;
}

.contact-method__value,
.site-footer .contact-methods--footer .contact-method__value {
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.contact-method--email .contact-method__value,
.site-footer .contact-method--email .contact-method__value {
  white-space: nowrap;
  font-size: clamp(0.86rem, 1.25vw, 1.06rem);
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  .contact-method,
  .site-footer .contact-methods--footer .contact-method {
    gap: 0.7rem;
  }

  .contact-method--email .contact-method__value,
  .site-footer .contact-method--email .contact-method__value {
    font-size: clamp(0.78rem, 1.45vw, 0.95rem);
  }
}

@media (max-width: 640px) {
  .contact-card h2,
  .form-card h2 {
    margin-bottom: 0.75rem;
  }

  .contact-method--email .contact-method__value,
  .site-footer .contact-method--email .contact-method__value {
    font-size: clamp(0.72rem, 3vw, 0.9rem);
  }
}

/* v1.1.36: global typography controls, image object position and equal offer gallery slides */
:root {
  --font-heading: "Cormorant SC", Georgia, "Times New Roman", serif;
  --font-heading-weight: 100;
  --font-body-weight: 400;
}

body {
  font-weight: var(--font-body-weight);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.story-card__title,
.offer-card__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight) !important;
  font-synthesis: none;
  text-transform: var(--heading-text-transform);
}

.page-hero h1 {
  font-family: var(--font-h1) !important;
  font-weight: var(--font-h1-weight) !important;
  text-transform: var(--h1-text-transform) !important;
}

.section-heading h2,
.offer-gallery-head h2,
.contact-card h2,
.form-card h2,
.about-page h2 {
  font-family: var(--font-h2) !important;
  font-weight: var(--font-h2-weight) !important;
  text-transform: var(--h2-text-transform) !important;
}

h3,
.package-card h3 {
  font-family: var(--font-h3) !important;
  font-weight: var(--font-h3-weight) !important;
  text-transform: var(--h3-text-transform) !important;
}

.about-page h1 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
  text-transform: var(--h1-text-transform);
}

.image-position--center img {
  object-position: center center;
}

.image-position--top img {
  object-position: center top;
}

.image-position--bottom img {
  object-position: center bottom;
}

.image-position--left img {
  object-position: left center;
}

.image-position--right img {
  object-position: right center;
}

.image-position--top-left img {
  object-position: left top;
}

.image-position--top-right img {
  object-position: right top;
}

.image-position--bottom-left img {
  object-position: left bottom;
}

.image-position--bottom-right img {
  object-position: right bottom;
}

.offer-gallery-slide,
.offer-gallery-slide:nth-child(2n) {
  flex: 0 0 min(46vw, 520px) !important;
  width: min(46vw, 520px) !important;
}

.offer-gallery-slide img,
.offer-gallery-slide:nth-child(3n+2) img {
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  object-fit: cover !important;
}

@media (max-width: 780px) {
  .offer-gallery-slide,
  .offer-gallery-slide:nth-child(2n) {
    flex-basis: min(82vw, 420px) !important;
    width: min(82vw, 420px) !important;
  }
}

/* v1.1.37: calmer heading font and reliable story gallery modes */
:root {
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-heading-weight: 300;
}

@media (min-width: 921px) {
  .single-story .masonry-gallery--balanced {
    --story-gallery-gap: clamp(0.45rem, 0.8vw, 0.75rem);
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr !important;
    grid-auto-flow: row !important;
    gap: var(--story-gallery-gap) !important;
    row-gap: var(--story-gallery-gap) !important;
    column-gap: var(--story-gallery-gap) !important;
    column-count: initial !important;
  }

  .single-story .masonry-gallery--balanced .gallery-item,
  .single-story .masonry-gallery--balanced .gallery-item.is-landscape,
  .single-story .masonry-gallery--balanced .gallery-item.is-portrait,
  .single-story .masonry-gallery--balanced .gallery-item.is-square,
  .single-story .masonry-gallery--balanced .gallery-item.tile--wide,
  .single-story .masonry-gallery--balanced .gallery-item.tile--tall,
  .single-story .masonry-gallery--balanced .gallery-item.tile--large {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
  }

  .single-story .masonry-gallery--balanced .gallery-item img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }

  .single-story .masonry-gallery--artistic {
    --story-gallery-gap: clamp(0.45rem, 0.8vw, 0.75rem);
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: clamp(0.45rem, 0.72vw, 0.7rem) !important;
    grid-auto-flow: dense !important;
    gap: var(--story-gallery-gap) !important;
    row-gap: var(--story-gallery-gap) !important;
    column-gap: var(--story-gallery-gap) !important;
    column-count: initial !important;
    padding: 0 !important;
    background: transparent;
  }

  .single-story .masonry-gallery--artistic .gallery-item,
  .single-story .masonry-gallery--artistic .gallery-item.is-landscape,
  .single-story .masonry-gallery--artistic .gallery-item.is-portrait,
  .single-story .masonry-gallery--artistic .gallery-item.is-square,
  .single-story .masonry-gallery--artistic .gallery-item.tile--wide,
  .single-story .masonry-gallery--artistic .gallery-item.tile--tall,
  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    grid-column: span 4 !important;
    grid-row: span 34 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-landscape {
    grid-column: span 6 !important;
    grid-row: span 28 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-portrait {
    grid-column: span 4 !important;
    grid-row: span 48 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.is-square {
    grid-column: span 4 !important;
    grid-row: span 36 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--wide {
    grid-column: span 8 !important;
    grid-row: span 30 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--tall {
    grid-column: span 4 !important;
    grid-row: span 56 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item.tile--large {
    grid-column: span 6 !important;
    grid-row: span 44 !important;
  }

  .single-story .masonry-gallery--artistic .gallery-item img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }
}

.site-footer--compact .site-footer__top {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer--compact .site-footer__column--brand {
  align-items: center;
  max-width: min(100%, 760px);
  margin-inline: auto;
}

.site-footer--compact .site-footer__brand {
  margin-inline: auto;
}

.site-footer--compact .site-footer__legal {
  justify-content: center;
}

.site-footer--compact .site-footer__credit {
  justify-content: center;
  text-align: center;
}

.site-footer--compact .site-footer__copy {
  text-align: center;
}

/* v1.1.49: simpler editorial contact form style */
.contact-page {
  background: var(--c-bg);
}

.contact-page::after {
  display: none;
}

.contact-section__header {
  margin-bottom: clamp(2.4rem, 5vw, 5rem);
  text-align: center;
}

.contact-section__header .eyebrow {
  margin-bottom: 0.85rem;
}

.contact-section__header h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-family: var(--font-h2);
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  font-weight: var(--font-h2-weight);
  line-height: 0.96;
  text-transform: var(--h2-text-transform);
}

.contact-section__text {
  max-width: 720px;
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--c-muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.contact-page .contact-layout {
  width: min(calc(100% - var(--layout-gutter)), 1240px);
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-page .contact-card,
.contact-page .form-card {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .form-card > .eyebrow,
.contact-page .form-card > h2,
.contact-page .form-card__intro {
  display: none;
}

.contact-page .contact-methods--contact {
  display: grid;
  gap: clamp(3rem, 5vw, 4.8rem);
  margin-top: 0;
}

.contact-page .contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
  padding: 0;
  border: 0;
  color: var(--c-text);
  text-align: center;
}

.contact-page .contact-method__body {
  display: contents;
}

.contact-page .contact-method__label {
  order: 1;
  color: var(--c-text);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.contact-page .contact-method__icon {
  order: 2;
  flex: none;
  width: clamp(3.2rem, 5vw, 4.4rem);
  height: clamp(3.2rem, 5vw, 4.4rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-accent);
}

.contact-page .contact-method__icon svg,
.contact-page .contact-method__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-page .contact-method__value {
  order: 3;
  color: var(--c-accent-dark);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

.contact-page .contact-method--email .contact-method__value {
  max-width: 100%;
  white-space: normal;
}

.contact-page .social-links--contact {
  justify-content: center;
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
  margin-top: clamp(3.2rem, 6vw, 5.5rem);
}

.contact-page .social-links--contact .social-link {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-accent-dark);
  box-shadow: none;
  font-size: 0;
  letter-spacing: 0;
}

.contact-page .social-links--contact .social-link svg {
  width: clamp(2.2rem, 3.8vw, 3.2rem);
  height: clamp(2.2rem, 3.8vw, 3.2rem);
}

.contact-page .social-links--contact .social-link:hover,
.contact-page .social-links--contact .social-link:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--c-text);
}

.contact-page .czu-contact-form {
  gap: clamp(1.35rem, 2.2vw, 2.1rem);
}

.contact-page .form-grid,
.contact-page .form-grid--2 {
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 2.2vw, 2.1rem);
}

.contact-page .form-field {
  gap: 0.45rem;
  color: var(--c-text);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.contact-page input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]),
.contact-page textarea,
.contact-page select {
  min-height: clamp(3.8rem, 5.2vw, 4.7rem);
  border: 1px solid rgba(141, 113, 88, 0.68);
  border-radius: 0;
  background: transparent;
  padding: clamp(0.95rem, 1.6vw, 1.25rem) clamp(1.05rem, 2vw, 1.45rem);
  color: var(--c-text);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.35;
  box-shadow: none;
}

.contact-page textarea {
  min-height: clamp(12rem, 20vw, 18rem);
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: color-mix(in srgb, var(--c-accent-dark) 72%, var(--c-bg));
  opacity: 0.9;
}

.contact-page input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]):focus,
.contact-page textarea:focus,
.contact-page select:focus {
  border-color: var(--c-accent-dark);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(141, 113, 88, 0.08);
}

.contact-page .form-consent {
  max-width: 720px;
  color: var(--c-muted);
  font-size: 0.9rem;
}

.contact-page .czu-contact-form .btn {
  justify-self: center;
  min-width: min(100%, 280px);
  border-color: var(--c-accent);
  border-radius: 0;
  background: var(--c-accent);
  color: var(--c-white);
}

.contact-page .czu-contact-form .btn:hover,
.contact-page .czu-contact-form .btn:focus-visible {
  border-color: var(--c-accent-dark);
  background: var(--c-accent-dark);
  color: var(--c-white);
}

@media (max-width: 920px) {
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: clamp(2.4rem, 7vw, 4rem);
  }

  .contact-page .contact-methods--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .contact-page .social-links--contact {
    margin-top: 2.5rem;
  }
}

@media (max-width: 640px) {
  .contact-section__header {
    margin-bottom: 2rem;
  }

  .contact-section__header h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .contact-page .contact-methods--contact {
    grid-template-columns: 1fr;
    gap: 2.15rem;
  }

  .contact-page .contact-method__label {
    font-size: 1.35rem;
  }

  .contact-page .contact-method__value {
    font-size: 1.08rem;
  }

.contact-page .czu-contact-form .btn {
    width: 100%;
  }
}

/* v1.1.50: smoother global reveal motion, including heroes and mobile */
.czu-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(3px);
  will-change: opacity, transform, filter;
}

.czu-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero__content.czu-reveal,
.page-hero__content.czu-reveal,
.page-hero--minimal > .container.czu-reveal,
.contact-section__header.czu-reveal {
  transform: translate3d(0, 42px, 0);
  transition-duration: 1.18s;
}

.hero__content.czu-reveal.is-visible,
.page-hero__content.czu-reveal.is-visible,
.page-hero--minimal > .container.czu-reveal.is-visible,
.contact-section__header.czu-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.contact-method.czu-reveal,
.about-page__text.czu-reveal,
.offer-extra__content.czu-reveal {
  transform: translate3d(-24px, 18px, 0);
}

.form-field.czu-reveal,
.form-consent.czu-reveal,
.about-page__media.czu-reveal,
.offer-extra__media.czu-reveal {
  transform: translate3d(24px, 18px, 0);
}

.story-card.czu-reveal,
.offer-card.czu-reveal,
.package-card.czu-reveal,
.feature-card.czu-reveal,
.process-step.czu-reveal,
.faq-item.czu-reveal,
.gallery-item.czu-reveal,
.offer-gallery-slide.czu-reveal,
.reveal-card.czu-reveal {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.contact-method.czu-reveal.is-visible,
.about-page__text.czu-reveal.is-visible,
.offer-extra__content.czu-reveal.is-visible,
.form-field.czu-reveal.is-visible,
.form-consent.czu-reveal.is-visible,
.about-page__media.czu-reveal.is-visible,
.offer-extra__media.czu-reveal.is-visible,
.story-card.czu-reveal.is-visible,
.offer-card.czu-reveal.is-visible,
.package-card.czu-reveal.is-visible,
.feature-card.czu-reveal.is-visible,
.process-step.czu-reveal.is-visible,
.faq-item.czu-reveal.is-visible,
.gallery-item.czu-reveal.is-visible,
.offer-gallery-slide.czu-reveal.is-visible,
.reveal-card.czu-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 680px) {
  .czu-reveal,
  .hero__content.czu-reveal,
  .page-hero__content.czu-reveal,
  .page-hero--minimal > .container.czu-reveal,
  .contact-section__header.czu-reveal,
  .contact-method.czu-reveal,
  .about-page__text.czu-reveal,
  .offer-extra__content.czu-reveal,
  .form-field.czu-reveal,
  .form-consent.czu-reveal,
  .about-page__media.czu-reveal,
  .offer-extra__media.czu-reveal {
    transform: translate3d(0, 24px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .czu-reveal,
  .hero__content.czu-reveal,
  .page-hero__content.czu-reveal,
  .page-hero--minimal > .container.czu-reveal,
  .contact-section__header.czu-reveal {
    opacity: 1;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* v1.1.51: slightly larger editorial image blocks */
@media (min-width: 921px) {
  .intro-split > .container.grid--2 {
    grid-template-columns: minmax(390px, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(3rem, 6.8vw, 7.5rem);
  }

  .about-page > .container.grid--2 {
    grid-template-columns: minmax(0, 0.88fr) minmax(410px, 1.12fr);
    gap: clamp(3rem, 7vw, 8rem);
  }

  .intro-split__media,
  .about-page__media {
    width: min(100%, 680px);
    justify-self: center;
  }

  .intro-split__media.image-shape--soft,
  .intro-split__media.image-shape--square,
  .about-page__media.image-shape--soft,
  .about-page__media.image-shape--square {
    min-height: clamp(520px, 43vw, 760px);
  }

  .intro-split__media.image-shape--circle,
  .about-page__media.image-shape--circle {
    width: min(100%, 620px);
  }

  .offer-extra {
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.92fr);
  }

  .offer-extra__media {
    width: min(100%, 620px);
  }

  .offer-extra__media--circle {
    width: min(100%, 590px);
  }

  .offer-extra__media--soft,
  .offer-extra__media--square {
    min-height: clamp(480px, 38vw, 680px);
  }
}

@media (max-width: 920px) {
  .intro-split__media,
  .about-page__media,
  .offer-extra__media {
    width: min(100%, 620px);
    max-width: none;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .intro-split__media,
  .about-page__media,
  .offer-extra__media {
    width: 100%;
  }
}

/* v1.1.52: restore refined contact cards and subtle icons */
.contact-section__header {
  margin-bottom: clamp(1.8rem, 3.6vw, 3.2rem);
}

.contact-section__header h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: 1.02;
}

.contact-section__text {
  max-width: 650px;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.contact-page .contact-layout {
  width: min(calc(100% - var(--layout-gutter)), 1240px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.6rem, 4vw, 3.8rem);
  align-items: stretch;
}

.contact-page .contact-card,
.contact-page .form-card {
  height: 100%;
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
  border: 1px solid rgba(139, 110, 86, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(48, 38, 30, 0.055);
}

.contact-page .form-card > .eyebrow,
.contact-page .form-card > h2,
.contact-page .form-card__intro {
  display: block;
}

.contact-page .form-card > h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.contact-page .form-card__intro {
  max-width: 620px;
  margin-bottom: clamp(1.2rem, 2.4vw, 1.9rem);
}

.contact-page .contact-methods--contact {
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.contact-page .contact-method {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(139, 110, 86, 0.16);
  color: var(--c-text);
  text-align: left;
}

.contact-page .contact-method:hover,
.contact-page .contact-method:focus-visible {
  color: var(--c-accent-dark);
  border-color: rgba(139, 110, 86, 0.32);
}

.contact-page .contact-method__body {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.contact-page .contact-method__label {
  order: initial;
  color: var(--c-accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-page .contact-method__icon {
  order: initial;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(139, 110, 86, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--c-accent-dark);
}

.contact-page .contact-method__icon svg {
  width: 20px;
  height: 20px;
}

.contact-page .contact-method__icon img {
  width: 22px;
  height: 22px;
}

/* v1.1.55: refined icons and configurable motion */
.contact-page .contact-method__label,
.contact-page .social-links--contact::before {
  font-family: var(--font-h2) !important;
  font-weight: var(--font-h2-weight);
}

.contact-method__icon svg,
.contact-method__icon svg * {
  fill: none;
  stroke: currentColor;
}

.contact-methods--icons-border .contact-method__icon {
  border: 1px solid rgba(139, 110, 86, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.contact-methods--icons-bare .contact-method__icon {
  flex-basis: auto;
  width: 34px;
  height: 34px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.contact-page .contact-methods--icons-bare .contact-method__icon {
  width: 38px;
  height: 38px;
}

.site-footer .contact-methods--icons-bare .contact-method {
  grid-template-columns: 32px minmax(0, 1fr);
}

.site-footer .contact-methods--icons-bare .contact-method__icon {
  width: 30px;
  height: 30px;
}

.contact-methods--icons-bare .contact-method__icon svg {
  width: 100%;
  height: 100%;
}

.contact-methods--icons-border .contact-method__icon svg {
  width: 20px;
  height: 20px;
}

.czu-reveal {
  transform: translate3d(0, var(--reveal-distance), 0);
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(var(--reveal-blur));
}

@keyframes czuPageSectionEnter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body:not(.home):not(.czu-animations-off) .site-main > .page-hero,
body:not(.home):not(.czu-animations-off) .site-main > .section,
body:not(.home):not(.czu-animations-off) .site-main > .single-offer > .hero,
body:not(.home):not(.czu-animations-off) .site-main > .single-offer > .section,
body:not(.home):not(.czu-animations-off) .site-main > .single-story > .page-hero,
body:not(.home):not(.czu-animations-off) .site-main > .single-story > .section {
  animation: czuPageSectionEnter var(--reveal-hero-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform;
}

body:not(.home):not(.czu-animations-off) .site-main > .section,
body:not(.home):not(.czu-animations-off) .site-main > .single-offer > .section,
body:not(.home):not(.czu-animations-off) .site-main > .single-story > .section {
  animation-delay: 140ms;
}

.hero__content.czu-reveal,
.page-hero__content.czu-reveal,
.page-hero--minimal > .container.czu-reveal {
  filter: none;
  transform: none;
  transition-duration: var(--reveal-hero-duration);
}

.site-main > .page-hero.czu-reveal,
.single-offer > .hero.czu-reveal,
.single-story > .page-hero.czu-reveal {
  filter: none;
  transform: translate3d(0, calc(var(--reveal-hero-distance) * 0.45), 0);
  transition-duration: var(--reveal-hero-duration);
}

.contact-section__header.czu-reveal {
  transform: translate3d(0, var(--reveal-hero-distance), 0);
  transition-duration: var(--reveal-hero-duration);
}

.hero .eyebrow.czu-reveal,
.page-hero .eyebrow.czu-reveal {
  transform: translate3d(0, calc(var(--reveal-hero-distance) * 0.45), 0);
  transition-duration: var(--reveal-hero-duration);
}

.hero h1.czu-reveal,
.page-hero h1.czu-reveal {
  transform: translate3d(0, calc(var(--reveal-hero-distance) * 0.72), 0);
  transition-duration: var(--reveal-hero-duration);
}

.hero__subtitle.czu-reveal,
.hero__actions.czu-reveal,
.page-hero p:not(.eyebrow).czu-reveal,
.filter-pills.czu-reveal,
.empty-state.czu-reveal,
.pagination-wrap.czu-reveal {
  transform: translate3d(0, calc(var(--reveal-distance) * 0.75), 0);
}

.site-main > .section.czu-reveal,
.single-offer > .section.czu-reveal,
.single-story > .section.czu-reveal,
.contact-section.czu-reveal,
.intro-split.czu-reveal,
.stories-preview.czu-reveal,
.offers-preview.czu-reveal {
  filter: none;
  transform: translate3d(0, calc(var(--reveal-distance) * 0.95), 0);
  transition-duration: var(--reveal-hero-duration);
}

.contact-method.czu-reveal,
.about-page__text.czu-reveal,
.offer-extra__content.czu-reveal {
  transform: translate3d(calc(var(--reveal-side-distance) * -1), var(--reveal-side-y), 0);
}

.form-field.czu-reveal,
.form-consent.czu-reveal,
.about-page__media.czu-reveal,
.offer-extra__media.czu-reveal {
  transform: translate3d(var(--reveal-side-distance), var(--reveal-side-y), 0);
}

.story-card.czu-reveal,
.offer-card.czu-reveal,
.package-card.czu-reveal,
.feature-card.czu-reveal,
.process-step.czu-reveal,
.faq-item.czu-reveal,
.gallery-item.czu-reveal,
.offer-gallery-slide.czu-reveal,
.reveal-card.czu-reveal {
  transform: translate3d(0, var(--reveal-card-distance), 0) scale(0.985);
}

.hero__content.czu-reveal.is-visible,
.site-main > .page-hero.czu-reveal.is-visible,
.single-offer > .hero.czu-reveal.is-visible,
.single-story > .page-hero.czu-reveal.is-visible,
.page-hero__content.czu-reveal.is-visible,
.page-hero--minimal > .container.czu-reveal.is-visible,
.hero .eyebrow.czu-reveal.is-visible,
.hero h1.czu-reveal.is-visible,
.hero__subtitle.czu-reveal.is-visible,
.hero__actions.czu-reveal.is-visible,
.page-hero .eyebrow.czu-reveal.is-visible,
.page-hero h1.czu-reveal.is-visible,
.page-hero p:not(.eyebrow).czu-reveal.is-visible,
.filter-pills.czu-reveal.is-visible,
.empty-state.czu-reveal.is-visible,
.pagination-wrap.czu-reveal.is-visible,
.site-main > .section.czu-reveal.is-visible,
.single-offer > .section.czu-reveal.is-visible,
.single-story > .section.czu-reveal.is-visible,
.contact-section.czu-reveal.is-visible,
.intro-split.czu-reveal.is-visible,
.stories-preview.czu-reveal.is-visible,
.offers-preview.czu-reveal.is-visible,
.contact-section__header.czu-reveal.is-visible,
.contact-method.czu-reveal.is-visible,
.about-page__text.czu-reveal.is-visible,
.offer-extra__content.czu-reveal.is-visible,
.form-field.czu-reveal.is-visible,
.form-consent.czu-reveal.is-visible,
.about-page__media.czu-reveal.is-visible,
.offer-extra__media.czu-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.story-card.czu-reveal.is-visible,
.offer-card.czu-reveal.is-visible,
.package-card.czu-reveal.is-visible,
.feature-card.czu-reveal.is-visible,
.process-step.czu-reveal.is-visible,
.faq-item.czu-reveal.is-visible,
.gallery-item.czu-reveal.is-visible,
.offer-gallery-slide.czu-reveal.is-visible,
.reveal-card.czu-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes czuHeroImageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(1.018);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes czuHeroOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body:not(.czu-animations-off) .hero__image,
body:not(.czu-animations-off) .page-hero__image {
  animation: czuHeroImageIn var(--reveal-hero-duration) cubic-bezier(0.2, 0.72, 0.18, 1) both;
  backface-visibility: hidden;
  filter: none !important;
  transform-origin: center;
  will-change: opacity, transform;
}

body:not(.czu-animations-off) .hero__overlay,
body:not(.czu-animations-off) .page-hero__overlay {
  animation: czuHeroOverlayIn var(--reveal-duration) ease-out both;
}

body.czu-animations-off .czu-reveal,
body.czu-animations-off .hero__image,
body.czu-animations-off .page-hero__image,
body.czu-animations-off .hero__overlay,
body.czu-animations-off .page-hero__overlay {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  transition: none !important;
}

@media (max-width: 680px) {
  .czu-reveal,
  .hero__content.czu-reveal,
  .site-main > .page-hero.czu-reveal,
  .single-offer > .hero.czu-reveal,
  .single-story > .page-hero.czu-reveal,
  .page-hero__content.czu-reveal,
  .page-hero--minimal > .container.czu-reveal,
  .hero .eyebrow.czu-reveal,
  .hero h1.czu-reveal,
  .hero__subtitle.czu-reveal,
  .hero__actions.czu-reveal,
  .page-hero .eyebrow.czu-reveal,
  .page-hero h1.czu-reveal,
  .page-hero p:not(.eyebrow).czu-reveal,
  .filter-pills.czu-reveal,
  .empty-state.czu-reveal,
  .pagination-wrap.czu-reveal,
  .site-main > .section.czu-reveal,
  .single-offer > .section.czu-reveal,
  .single-story > .section.czu-reveal,
  .contact-section.czu-reveal,
  .intro-split.czu-reveal,
  .stories-preview.czu-reveal,
  .offers-preview.czu-reveal,
  .contact-section__header.czu-reveal,
  .contact-method.czu-reveal,
  .about-page__text.czu-reveal,
  .offer-extra__content.czu-reveal,
  .form-field.czu-reveal,
  .form-consent.czu-reveal,
  .about-page__media.czu-reveal,
  .offer-extra__media.czu-reveal {
    transform: translate3d(0, var(--reveal-mobile-distance), 0);
  }

  .hero__content.czu-reveal,
  .site-main > .page-hero.czu-reveal,
  .single-offer > .hero.czu-reveal,
  .single-story > .page-hero.czu-reveal,
  .page-hero__content.czu-reveal,
  .page-hero--minimal > .container.czu-reveal {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .czu-reveal,
  .hero__image,
  .page-hero__image,
  .hero__overlay,
  .page-hero__overlay,
  body:not(.home) .site-main > .page-hero,
  body:not(.home) .site-main > .section,
  body:not(.home) .site-main > .single-offer > .hero,
  body:not(.home) .site-main > .single-offer > .section,
  body:not(.home) .site-main > .single-story > .page-hero,
  body:not(.home) .site-main > .single-story > .section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* v1.1.56: configurable contact form fields and calmer contact headings */
.contact-page .contact-method__label,
.contact-page .social-links--contact::before {
  font-size: clamp(0.98rem, 1.28vw, 1.28rem);
  line-height: 1.08;
}

.contact-page .form-card > h2 {
  text-align: center;
}

.contact-page .form-fields {
  display: grid;
  gap: 1rem;
}

.contact-page .czu-contact-form--layout-single .form-fields {
  grid-template-columns: 1fr;
}

.contact-page .czu-contact-form--layout-two .form-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .form-field--full,
.contact-page .form-field--other {
  grid-column: 1 / -1;
}

.contact-page .czu-contact-form .btn.btn--outline {
  justify-self: center;
  border-color: var(--c-text);
  background: transparent;
  color: var(--c-text);
}

.contact-page .czu-contact-form--button-left .btn.btn--outline {
  justify-self: start;
}

.contact-page .czu-contact-form--button-center .btn.btn--outline {
  justify-self: center;
}

.contact-page .czu-contact-form--button-right .btn.btn--outline {
  justify-self: end;
}

.contact-page .czu-contact-form .btn.btn--outline:hover,
.contact-page .czu-contact-form .btn.btn--outline:focus-visible {
  border-color: var(--c-text);
  background: var(--c-text);
  color: var(--c-white);
}

@media (max-width: 680px) {
  .contact-page .czu-contact-form--layout-two .form-fields {
    grid-template-columns: 1fr;
  }

  .contact-page .czu-contact-form .btn.btn--outline {
    justify-self: stretch;
  }
}

.contact-page .contact-method__value {
  order: initial;
  color: currentColor;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.35;
}

.contact-page .contact-method--email .contact-method__value {
  white-space: nowrap;
}

.contact-page .social-links--contact {
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-page .social-links--contact .social-link {
  width: auto;
  min-height: 44px;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(139, 110, 86, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
  color: var(--c-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page .social-links--contact .social-link svg {
  width: 18px;
  height: 18px;
}

.contact-page .social-links--contact .social-link:hover,
.contact-page .social-links--contact .social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 110, 86, 0.32);
  background: rgba(183, 121, 95, 0.09);
  color: var(--c-accent-dark);
}

.contact-page .czu-contact-form {
  gap: 1rem;
}

.contact-page .form-grid,
.contact-page .form-grid--2 {
  gap: 1rem;
}

.contact-page .form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .form-field {
  color: var(--c-muted);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
}

.contact-page input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]),
.contact-page textarea,
.contact-page select {
  min-height: 3.45rem;
  border: 1px solid rgba(139, 110, 86, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem 1rem;
  color: var(--c-text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-page textarea {
  min-height: 10.5rem;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: color-mix(in srgb, var(--c-muted) 78%, var(--c-bg));
}

.contact-page input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=hidden]):focus,
.contact-page textarea:focus,
.contact-page select:focus {
  border-color: var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(182, 154, 125, 0.12);
}

.contact-page .form-consent {
  max-width: none;
  font-size: 0.88rem;
}

.contact-page .czu-contact-form .btn {
  justify-self: start;
  min-width: min(100%, 240px);
  border-radius: var(--radius-lg);
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

.contact-page .czu-contact-form .btn:hover,
.contact-page .czu-contact-form .btn:focus-visible {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
}

@media (max-width: 920px) {
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-card,
  .contact-page .form-card {
    height: auto;
  }

  .contact-page .contact-methods--contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-section__header h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .contact-page .contact-card,
  .contact-page .form-card {
    padding: 1.35rem;
  }

  .contact-page .form-grid--2 {
    grid-template-columns: 1fr;
  }

  .contact-page .social-links--contact {
    justify-content: center;
  }

  .contact-page .czu-contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }
}

/* v1.1.53: old-site rhythm for contact details and global section header toggle */
.contact-page .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-page .contact-methods--contact {
  width: min(100%, 420px);
  gap: clamp(2.2rem, 4.5vw, 4rem);
  margin-inline: auto;
}

.contact-page .contact-method {
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  padding: 0;
  border-bottom: 0;
  text-align: center;
}

.contact-page .contact-method__body {
  display: contents;
}

.contact-page .contact-method__label {
  order: 1;
  color: var(--c-text);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-page .contact-method__icon {
  order: 2;
  flex: none;
  width: clamp(48px, 4.6vw, 62px);
  height: clamp(48px, 4.6vw, 62px);
}

.contact-page .contact-method__icon svg {
  width: clamp(22px, 2vw, 28px);
  height: clamp(22px, 2vw, 28px);
}

.contact-page .contact-method__value {
  order: 3;
  color: var(--c-accent-dark);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.contact-page .contact-method--email .contact-method__value {
  white-space: normal;
}

.contact-page .social-links--contact {
  width: min(100%, 420px);
  justify-content: center;
  gap: 0.8rem;
  margin-inline: auto;
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
}

.contact-page .social-links--contact::before {
  content: "Social media";
  flex-basis: 100%;
  margin-bottom: 0.35rem;
  color: var(--c-text);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.contact-page .social-links--contact .social-link {
  justify-content: center;
}

@media (max-width: 680px) {
  .contact-page .contact-card {
    min-height: auto;
  }
}

/* v1.1.54: restore original subtle contact icon treatment */
.contact-page .contact-method__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(139, 110, 86, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--c-accent-dark);
}

.contact-page .contact-method__icon svg {
  width: 20px;
  height: 20px;
}

.contact-page .contact-method__icon img {
  width: 22px;
  height: 22px;
}
