/* ============================================================
   Adriatic Relax · Villa Zibi — site styles
   Mediterranean editorial: cream paper · deep ink · adriatic
   ============================================================ */

:root {
  /* surfaces */
  --paper:        #F2EBDD;
  --paper-warm:   #F8F2E5;
  --paper-soft:   #ECE3D1;
  --stone:        #DCD0BA;
  --ink:          #1E1914;
  --ink-deep:     #0F0C09;
  --ink-soft:     #5C5345;
  --ink-mute:     #8C8275;
  --rule:         rgba(30, 25, 20, 0.14);
  --rule-strong:  rgba(30, 25, 20, 0.32);

  /* accents */
  --sea:          #2C5C72;
  --sea-deep:     #1E435A;
  --sea-pale:     #C9D6DB;
  --terracotta:   #B26442;
  --terracotta-pale: #E8C9B6;
  --olive:        #6C7448;

  /* type */
  --font-display: "Source Sans 3", "Segoe UI", sans-serif;
  --font-body:    "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono:    "Source Sans 3", "Segoe UI", sans-serif;

  /* sizes */
  --container:    1240px;
  --gutter:       max(20px, 4vw);
  --pad-page:     clamp(64px, 9vw, 140px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--terracotta); color: var(--paper-warm); }

/* ============================================================
   Typography
   ============================================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-deep);
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-deep);
}
.h1 em { font-style: italic; color: var(--ink-soft); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink-deep);
}
.h2 em { font-style: italic; }

.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  margin: 0;
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

.body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.body p + p { margin-top: 1em; }
.body p:first-child { margin-top: 0; }
.body p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--pad-page) 0;
  position: relative;
}

.section--tight { padding: clamp(48px, 6vw, 96px) 0; }
.section--micro { padding: clamp(24px, 3.5vw, 40px) 0; }

.section--paper-warm { background: var(--paper-warm); }
.section--soft       { background: var(--paper-soft); }
.section--ink        { background: var(--ink-deep); color: var(--paper-warm); }
.section--ink .eyebrow { color: var(--terracotta-pale); }
.section--ink .body,
.section--ink .lede { color: rgba(248, 242, 229, 0.7); }
.section--ink .display,
.section--ink .h1,
.section--ink .h2,
.section--ink .h3 { color: var(--paper-warm); }

/* Adriatic blue feature section */
.section--sea {
  background: var(--sea-deep);
  color: var(--paper-warm);
}
.section--sea .eyebrow { color: var(--terracotta-pale); }
.section--sea .body,
.section--sea .lede,
.section--sea .feature__body { color: rgba(248, 242, 229, 0.78); }
.section--sea .display,
.section--sea .h1, .section--sea .h2, .section--sea .h3,
.section--sea .feature__title,
.section--sea .apt-card__title { color: var(--paper-warm); }
.section--sea .h1 em, .section--sea .h2 em { color: rgba(248,242,229,0.55); }
.section--sea .feature { border-top-color: rgba(248,242,229,0.32); }
.section--sea .feature__num { color: var(--terracotta-pale); }
.section--sea .apt-card__meta { color: rgba(248,242,229,0.62); }
.section--sea .apt-card__copy { color: rgba(248,242,229,0.78); }
.section--sea .btn--ghost {
  color: var(--paper-warm);
  border-color: var(--paper-warm);
}
.section--sea .btn--ghost:hover { background: var(--paper-warm); color: var(--sea-deep); }
.section--sea .btn--link { color: var(--paper-warm); border-color: var(--paper-warm); }
.section--sea .btn--link:hover { color: var(--terracotta-pale); border-color: var(--terracotta-pale); }

/* Olive feature section */
.section--olive {
  background: var(--olive);
  color: var(--paper-warm);
}
.section--olive .eyebrow { color: var(--terracotta-pale); }
.section--olive .body,
.section--olive .lede,
.section--olive .feature__body { color: rgba(248, 242, 229, 0.82); }
.section--olive .display,
.section--olive .h1, .section--olive .h2, .section--olive .h3,
.section--olive .feature__title { color: var(--paper-warm); }
.section--olive .h1 em, .section--olive .h2 em { color: rgba(248,242,229,0.55); }
.section--olive .feature { border-top-color: rgba(248,242,229,0.32); }
.section--olive .feature__num { color: var(--terracotta-pale); }
.section--olive .btn--ghost {
  color: var(--paper-warm);
  border-color: var(--paper-warm);
}
.section--olive .btn--ghost:hover { background: var(--paper-warm); color: var(--olive); }
.section--olive .btn--link { color: var(--paper-warm); border-color: var(--paper-warm); }
.section--olive .btn--link:hover { color: var(--terracotta-pale); border-color: var(--terracotta-pale); }

/* Terracotta band */
.section--terracotta {
  background: var(--terracotta);
  color: var(--paper-warm);
}
.section--terracotta .eyebrow { color: rgba(248,242,229,0.7); }
.section--terracotta .eyebrow::before { background: rgba(248,242,229,0.7); }
.section--terracotta .body,
.section--terracotta .lede { color: rgba(248, 242, 229, 0.88); }
.section--terracotta .display,
.section--terracotta .h1, .section--terracotta .h2 { color: var(--paper-warm); }
.section--terracotta .h1 em, .section--terracotta .h2 em { color: rgba(248,242,229,0.62); }
.section--terracotta .btn {
  background: var(--paper-warm);
  color: var(--terracotta);
  border-color: var(--paper-warm);
}
.section--terracotta .btn:hover { background: var(--ink-deep); color: var(--paper-warm); border-color: var(--ink-deep); }
.section--terracotta .btn--ghost {
  background: transparent;
  color: var(--paper-warm);
  border-color: var(--paper-warm);
}
.section--terracotta .btn--ghost:hover { background: var(--paper-warm); color: var(--terracotta); }

.rule { height: 1px; background: var(--rule); }

/* ============================================================
   Header / navigation
   ============================================================ */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-deep);
}

.brand__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink-deep);
}

.brand__arch {
  width: 100%;
  height: 100%;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

.site-foot .brand { color: var(--paper-warm); }
.site-foot .brand__mark { color: var(--paper-warm); }
.site-foot .brand__sub { color: rgba(248, 242, 229, 0.55); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition: color 0.15s;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--ink-deep); }
.nav a[aria-current="page"] {
  color: var(--ink-deep);
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--ink-deep);
}

/* externí web plaveb v menu */
.nav__external {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding-left: 24px !important;
  margin-left: 4px;
  border-left: 1px solid var(--rule-strong);
  color: var(--sea-deep);
}
.nav__external:hover { color: var(--sea); }
.nav__external-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.35;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.lang button {
  background: none;
  border: none;
  padding: 4px 2px;
  color: inherit;
  letter-spacing: inherit;
  font: inherit;
  cursor: pointer;
}
.lang button[aria-pressed="true"],
.lang__btn[aria-current="true"] {
  color: var(--ink-deep);
  border-bottom: 1px solid var(--ink-deep);
}
.lang span { opacity: 0.4; }
.lang__btn {
  background: none;
  border: none;
  padding: 4px 2px;
  color: inherit;
  letter-spacing: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.lang__btn:hover { color: var(--ink-deep); }

/* mobile nav */
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 20px;
    background: color-mix(in oklab, var(--paper) 96%, transparent);
    border-bottom: 1px solid var(--rule);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .site-head { position: sticky; }
  .site-head__row { position: relative; flex-wrap: wrap; }
  .site-head--open .nav { display: flex; }
  .site-head--open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
  }
  .site-head--open .nav a:last-child { border-bottom: none; }
  .site-head--open .nav__external {
    padding-left: 0 !important;
    margin-left: 0;
    border-left: none;
    margin-top: 8px;
    padding-top: 16px !important;
    border-top: 1px dashed var(--rule-strong);
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--ink-deep);
  }
  .brand__sub { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--ink-deep);
  background: var(--ink-deep);
  color: var(--paper-warm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--sea-deep); border-color: var(--sea-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink-deep);
}
.btn--ghost:hover { background: var(--ink-deep); color: var(--paper-warm); }

.btn--terra {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--terra:hover { background: #9d5234; border-color: #9d5234; }

.btn--link {
  background: none;
  border: none;
  padding: 0;
  color: var(--ink-deep);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-deep);
  border-radius: 0;
  letter-spacing: 0.01em;
}
.btn--link:hover { transform: none; background: none; border-color: var(--terracotta); color: var(--terracotta); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Photo treatment
   ============================================================ */

.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper-soft);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-soft);
}

.photo-frame--full { width: 100%; height: 100%; }

.cap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* placeholder when no real photo provided */
.photo-sketch {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(30,25,20,.05) 14px 15px),
    var(--paper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.photo-sketch--sea {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(44,92,114,.18) 14px 15px),
    var(--sea-pale);
}
.photo-sketch--olive {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(108,116,72,.18) 14px 15px),
    #DDDFC1;
}
.photo-sketch__inner {
  border: 1px dashed currentColor;
  padding: 18px 22px;
  border-radius: 2px;
  max-width: 70%;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) 0 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero__copy {
  padding-bottom: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink-deep);
}
.hero__title em {
  font-style: italic;
  color: var(--ink-soft);
}

.hero__lede {
  margin-top: 28px;
  max-width: 52ch;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-soft);
  justify-self: center;
  width: min(100%, 440px);
  align-self: center;
}

.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__photo-meta {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-deep);
}

/* hero strip below */
.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(48px, 6vw, 80px);
}
.hero__strip--5 {
  grid-template-columns: repeat(5, 1fr);
}
.hero__strip > div {
  padding: 22px 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__strip > div:last-child { border-right: none; }
.hero__strip .kicker { color: var(--sea); }
.hero__strip .value {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--ink-deep);
}
.hero__strip .value__note {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-top: 6px;
  color: var(--ink-soft);
}
.hero__strip--compact > div {
  padding: 12px 14px;
  gap: 4px;
}
.hero__strip--compact .value {
  font-size: 20px;
  line-height: 1.15;
}
.hero__strip--compact .kicker {
  font-size: 10px;
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo {
    aspect-ratio: 4/3;
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__strip--5 { grid-template-columns: repeat(2, 1fr); }
  .hero__strip > div:nth-child(2n) { border-right: none; }
  .hero__strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================
   Section header (eyebrow + h2)
   ============================================================ */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head__left .eyebrow { margin-bottom: 18px; display: inline-block; }
.sec-head__right { max-width: 56ch; }

@media (max-width: 860px) {
  .sec-head { grid-template-columns: 1fr; }
}

/* ============================================================
   Apartman cards (homepage overview)
   ============================================================ */

.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
}
@media (max-width: 860px) { .apt-grid { grid-template-columns: 1fr; } }

.apt-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.apt-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.apt-card__photo img {
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.apt-card:hover .apt-card__photo img { transform: scale(1.04); }

.apt-card__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-warm);
  background: var(--terracotta);
  padding: 6px 10px;
}

.apt-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink-deep);
  font-weight: 500;
  position: relative;
  padding-right: 1.6em;
}
.apt-card__title em { font-style: italic; color: var(--ink-soft); font-weight: 400; }
.apt-card__title .arrow {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  line-height: inherit;
}

.apt-card__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.apt-card__copy {
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   Feature grid (proč Kaštela / amenities)
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--ink-deep);
}
.feature__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
}
.feature__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink-deep);
  font-weight: 500;
}
.feature__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.sec-head--compact {
  grid-template-columns: 1fr;
  margin-bottom: clamp(24px, 3vw, 36px);
  gap: clamp(12px, 1.5vw, 18px);
  align-items: start;
}
.sec-head--compact .sec-head__left .eyebrow { margin-bottom: 0; }
.sec-head--compact .sec-head__right { max-width: 62ch; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px) clamp(20px, 2.5vw, 32px);
}
.who-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.who-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink-deep);
  font-weight: 500;
}
.who-item__body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

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

/* ============================================================
   Photo collage / mosaic
   ============================================================ */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
}

.mosaic > * { overflow: hidden; }

.m-a { grid-column: span 7; grid-row: span 4; }
.m-b { grid-column: span 5; grid-row: span 2; }
.m-c { grid-column: span 5; grid-row: span 2; }
.m-d { grid-column: span 4; grid-row: span 3; }
.m-e { grid-column: span 4; grid-row: span 3; }
.m-f { grid-column: span 4; grid-row: span 3; }

@media (max-width: 860px) {
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 70px; }
  .m-a { grid-column: span 6; grid-row: span 4; }
  .m-b, .m-c { grid-column: span 6; grid-row: span 3; }
  .m-d, .m-e, .m-f { grid-column: span 3; grid-row: span 3; }
}

/* ============================================================
   Host block
   ============================================================ */

.host {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.host__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.host__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-deep);
  margin-top: 24px;
}
@media (max-width: 860px) { .host { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  text-align: center;
  padding: clamp(72px, 9vw, 140px) 0;
}
.cta-band .h1 {
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}
.cta-band .lede { margin: 22px auto 0; max-width: 48ch; }
.cta-band__actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */

.site-foot {
  background: var(--ink-deep);
  color: var(--paper-warm);
  padding: clamp(56px, 7vw, 96px) 0 28px;
}
.site-foot .container { color: inherit; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 242, 229, 0.18);
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 242, 229, 0.55);
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  color: rgba(248, 242, 229, 0.85);
  font-size: 14.5px;
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--paper-warm); }

.foot-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  color: rgba(248, 242, 229, 0.92);
  margin-top: 8px;
  max-width: 18ch;
}

.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 229, 0.45);
}
.foot-meta a {
  color: inherit;
  text-transform: none;
  letter-spacing: 0.04em;
}
.foot-meta a:hover { color: rgba(248, 242, 229, 0.85); }

@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Page hero (sub-pages)
   ============================================================ */

.page-hero {
  padding: clamp(80px, 10vw, 160px) 0 clamp(48px, 6vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.page-hero__eyebrow {
  margin-bottom: 28px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(50px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink-deep);
  max-width: 14ch;
}
.page-hero__title em { font-style: italic; color: var(--ink-soft); }
.page-hero__lede {
  margin-top: 32px;
  max-width: 54ch;
}

/* ============================================================
   Apartman detail page bits
   ============================================================ */

.apt-meta-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
  padding: 20px 0;
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.apt-meta-row .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.apt-meta-row .stat .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.apt-meta-row .stat .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-deep);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
@media (max-width: 860px) { .amenities { grid-template-columns: 1fr 1fr; } }
.amenities li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink-deep);
}
.amenities li:first-child,
.amenities li:nth-child(2),
.amenities li:nth-child(3) { border-top: none; }
.amenities li::before {
  content: "+";
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
}

/* gallery for apt page */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.gallery .photo-frame { aspect-ratio: 4/3; }
.gallery .photo-frame.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery--portrait {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 14px);
}
.gallery--portrait .photo-frame {
  aspect-ratio: 3 / 4;
}
@media (min-width: 861px) {
  .gallery--portrait { grid-template-columns: repeat(3, 1fr); }
}
.photo-frame--hero {
  aspect-ratio: 3 / 4;
}
.gallery--7 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery--7 .photo-frame:nth-child(7) {
  grid-column: 2;
}
@media (max-width: 860px) {
  .gallery--portrait.gallery--7 .photo-frame:nth-child(7) {
    grid-column: auto;
  }
}
@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .photo-frame.tall { grid-row: auto; }
  .gallery--7 .photo-frame:nth-child(7) { grid-column: auto; }
}

/* ============================================================
   Kontakt
   ============================================================ */

.section--kontakt > .container > .page-hero__title {
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: 16ch;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 860px) { .kontakt-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper-warm);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rule);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.form-row label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 0 10px;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink-deep);
  transition: border-color 0.15s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.5;
  border-left: 3px solid var(--rule-strong);
}
.form-status--sending { color: var(--ink-mute); border-color: var(--sea); }
.form-status--success { color: var(--olive); border-color: var(--olive); background: rgba(90, 107, 74, 0.08); }
.form-status--error { color: #9d3b2a; border-color: var(--terracotta); background: rgba(181, 98, 62, 0.08); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.info-list { display: flex; flex-direction: column; gap: 24px; }
.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.info-row:last-child { border-bottom: 1px solid var(--rule); }
.info-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}
.info-row .value {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink-deep);
}
.info-row .value small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* FAQ */
.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-deep);
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--terracotta);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .body { margin-top: 14px; }

/* ============================================================
   Utility
   ============================================================ */

.stack-sm > * + * { margin-top: 12px; }
.stack    > * + * { margin-top: 24px; }
.stack-lg > * + * { margin-top: 40px; }

.span-2 { grid-column: span 2; }

.muted { color: var(--ink-mute); }
.ital  { font-style: italic; }

/* reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* lang overlay (simple modal-less swap; demonstration only) */
.lang-flag {
  background: var(--terracotta);
  color: var(--paper-warm);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  display: inline-block;
}

/* ============================================================
   RESPONSIVE LAYOUT CLASSES
   Replaces inline grid styles for mobile/tablet support
   ============================================================ */

.grid-hero-2col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.grid-hero-2col--wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: end;
}

.grid-villa-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.grid-villa-photos__main,
.grid-villa-photos__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 0;
}

.grid-villa-photos__main .photo-frame,
.grid-villa-photos__side .photo-frame {
  min-height: 0;
}

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.grid-2col-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.grid-cross-sell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.grid-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

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

.grid-trips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 14px);
}

.trip-card {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink-deep);
}
.trip-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .7, .3, 1);
}
.trip-card:hover .trip-card__img { transform: scale(1.05); }
.trip-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 22, 19, 0.95) 0%,
    rgba(24, 22, 19, 0.68) 45%,
    rgba(24, 22, 19, 0.18) 100%
  );
}
.trip-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 16px 20px;
}
.trip-card__kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-pale);
}
.trip-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--paper-warm);
  font-weight: 500;
  margin-top: 8px;
}
.trip-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(248, 242, 229, 0.78);
  margin-top: 8px;
}

/* ============================================================
   TABLET RESPONSIVE (max-width: 860px)
   ============================================================ */

@media (max-width: 860px) {
  .grid-hero-2col,
  .grid-hero-2col--wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-villa-photos {
    grid-template-columns: 1fr;
  }

  .grid-villa-photos__main,
  .grid-villa-photos__side {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .grid-2col-equal,
  .grid-2col-center {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-cross-sell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-intro,
  .sec-head.grid-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .trip-card { min-height: 260px; }

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

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

/* ============================================================
   PHONE RESPONSIVE (max-width: 540px)
   ============================================================ */

@media (max-width: 540px) {
  :root {
    --gutter: 18px;
    --pad-page: clamp(40px, 8vw, 64px);
  }

  .hero__title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .page-hero__title {
    font-size: clamp(36px, 9vw, 50px);
  }

  .h1 {
    font-size: clamp(30px, 7.5vw, 40px);
  }

  .h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .lede {
    font-size: clamp(17px, 4.5vw, 20px);
  }

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

  .hero__strip > div {
    padding: 16px 14px;
  }

  .hero__strip--compact > div {
    padding: 12px 12px;
  }

  .hero__strip .value {
    font-size: 20px;
  }

  .hero__strip--compact .value {
    font-size: 17px;
  }

  .grid-4col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .grid-villa-photos__main,
  .grid-villa-photos__side {
    grid-template-columns: 1fr;
  }

  .grid-trips {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trip-card { min-height: 240px; }

  .trip-card__title { font-size: 20px; }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .foot-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic > * {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 4/3;
  }

  .gallery:not(.gallery--portrait) {
    grid-template-columns: 1fr;
  }

  .gallery:not(.gallery--portrait) .photo-frame.tall {
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .gallery--portrait {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery--portrait .photo-frame {
    aspect-ratio: 3 / 4;
  }

  .apt-grid {
    gap: 40px;
  }

  .feature-grid {
    gap: 28px;
  }

  .feature {
    padding-top: 20px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13.5px;
  }

  .site-head__row {
    padding: 14px 0;
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__mark {
    width: 32px;
  }

  .sec-head {
    gap: 20px;
  }

  .host {
    gap: 28px;
  }

  .host__photo {
    aspect-ratio: 1/1;
    max-height: 320px;
  }

  .kontakt-grid {
    gap: 40px;
  }

  .info-row {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .info-row .value {
    font-size: 18px;
  }

  .apt-meta-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .cta-band {
    padding: clamp(48px, 8vw, 80px) 0;
  }

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

  .cta-band__actions .btn {
    text-align: center;
    justify-content: center;
  }

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

  .amenities li:nth-child(2),
  .amenities li:nth-child(3) {
    border-top: 1px solid var(--rule);
  }

  .photo-frame[style*="aspect-ratio:16/7"] {
    aspect-ratio: 16/9 !important;
  }

  .photo-frame[style*="aspect-ratio:21/9"] {
    aspect-ratio: 16/9 !important;
  }

  .nav-toggle {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero__photo {
    aspect-ratio: 3/4;
    max-height: 420px;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero__lede {
    margin-top: 20px;
  }

  .hero__cta {
    margin-top: 24px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
  }
}
