:root {
  --color-background: #f5f0ea;
  --color-surface: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #6f655d;

  --color-primary: #5a1e2d;
  --color-primary-hover: #6f2738;
  --color-accent: #c9a46a;

  --color-border: #e7e1d9;

  --container-width: 1280px;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container-width));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 220px;
  height: auto;
  display: block;
}

.main-nav {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: 36px;

  color: var(--color-primary);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.7;
}

.main-nav a.active {
  opacity: 1;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--color-primary);
}

.main-nav a:not(.active) {
  opacity: 0.6;
}

.main-nav a:hover {
  opacity: 1;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--color-primary);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switch a {
  opacity: 0.45;
}

.language-switch a.active {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.pricing-page .site-header:not(.scrolled) .main-nav,
.pricing-page .site-header:not(.scrolled) .language-switch {
  color: #ffffff;
}

.pricing-page .site-header:not(.scrolled) .main-nav a.active::after {
  background: #ffffff;
}

.pricing-page .site-header:not(.scrolled) .menu-toggle span {
  background: #ffffff;
}

/* =========================================
   SCROLLED HEADER
========================================= */

.site-header {
  transition:
    padding 0.3s ease,
    transform 0.3s ease;
}

.header-inner {
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    padding 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.logo img {
  transition:
    width 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
}

.site-header.scrolled .header-inner {
  background: rgba(255,255,255,0.62);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 20px;

  padding: 14px 28px;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.12),
    0 12px 30px rgba(0,0,0,0.12);

  border: 1px solid rgba(90,30,45,0.06);
}

.site-header.scrolled .logo img {
  width: 110px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-short {
  min-height: 75vh;
}

.hero-short .hero-content {
  min-height: 75vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.hero.overlay-light .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(245,240,234,0.78) 0%,
      rgba(245,240,234,0.48) 36%,
      rgba(245,240,234,0.10) 100%
    );
}

.hero.overlay-dark .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(30,18,16,0.62) 0%,
      rgba(30,18,16,0.30) 42%,
      rgba(30,18,16,0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding-top: 220px;

  color: var(--color-primary);
}

.hero h1 {
  max-width: 720px;

  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero h1::after {
  content: "";

  display: block;

  width: 110px;
  height: 1px;

  margin-top: 28px;

  background: rgba(90, 30, 45, 0.45);
}

/* NOVY BOX PRES CELOU LEVOU CAST */

.hero-copy-box {
  width: fit-content;
  max-width: 65vw;

  margin-top: 32px;
  margin-left: calc((100vw - min(100% - 48px, 1280px)) / -2);

  background: rgba(0, 0, 0, 0.45);

  padding: 2.2em 2em 2.2em calc((100vw - min(100% - 48px, 1280px)) / 2);

  backdrop-filter: blur(2px);

  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.hero-copy-inner {
  padding-left: 0;
}

.hero-text {
  max-width: 520px;

  color: #ffffff;

  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 40px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 28px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(200,200,200,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

/* =========================================
   KEY BENEFITS
========================================= */

.key-benefits-section {
  padding: 25px 0 70px;
  background: #ffffff;
}

.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.key-benefit {
  text-align: center;
  padding: 20px;
}

.key-benefit-icon {
  margin-bottom: 34px;
}

.key-benefit-icon img {
  width: 246px;
  height: 246px;
  display: block;
  margin: 0 auto;
}



.key-benefit strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  line-height: 0.95;
}

.key-benefit p {
  max-width: 320px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

.benefits-divider {
  max-width: 760px;
  margin: 12px auto 16px;
}

.benefits-divider img {
  display: block;
  width: 100%;
  height: auto;
}

.secondary-benefits-section {
  padding: 0 0 90px;
  background: #ffffff;
}

.project-intro-block {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.project-intro-title {
  margin: 10px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.secondary-benefits-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.project-intro-block h2 {
  margin: 10px 0 20px;
}

.project-intro-block p:last-child {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.9;
}

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

.secondary-benefits-grid article {
  padding: 12px 32px;
  background: transparent;
  border: 0;
}

.secondary-benefits-grid article:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.secondary-benefits-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
}

.secondary-benefits-grid span {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   INTRO SECTION
========================================= */

.intro-section {
  padding: 140px 0;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 18px;

  color: var(--color-accent);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-content h2 {
  max-width: 520px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.intro-content p {
  max-width: 620px;

  margin-top: 32px;

  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.text-link {
  display: inline-block;

  margin-top: 40px;

  color: var(--color-primary);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  opacity: 0.7;
}

.intro-benefits {
  display: grid;
  gap: 24px;
}

.benefit-card {
  padding: 36px;

  background: #faf8f5;

  border: 1px solid var(--color-border);

  transition: transform 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card span {
  display: block;

  margin-bottom: 18px;

  color: var(--color-accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  margin-bottom: 14px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.benefit-card p {
  color: var(--color-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   HOMES SECTION
========================================= */

.homes-section {
  padding: 140px 0;
  background: #4b1b28;
}

.section-header-light {
  max-width: 760px;
  margin-bottom: 80px;
}

.section-header-light .section-kicker {
  color: rgba(255,255,255,0.65);
}

.section-header-light h2 {
  color: #ffffff;

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.section-header-light > p:not(.section-kicker) {
  max-width: 620px;

  margin-top: 24px;

  color: rgba(255,255,255,0.75);

  font-size: 18px;
  line-height: 1.8;
}

/* FULL WIDTH HOMES */

.homes-anchor-kicker {
  margin-bottom: 14px;
  scroll-margin-top: 120px;
}

.homes-grid-full {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

  width: 100%;
}

.home-card-full {
  position: relative;

  display: block;

  min-height: 700px;

  overflow: hidden;
}

.home-card-full .home-card-image {
  position: absolute;
  inset: 0;

  aspect-ratio: auto;
}

.home-card-full .home-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card-img {
  position: absolute;
  inset: 0;
  transition: opacity .6s ease, transform .8s ease;
}

.home-card-img-hover {
  opacity: 0;
}

.home-card:hover .home-card-img-primary {
  opacity: 0;
  transform: scale(1.05);
}

.home-card:hover .home-card-img-hover {
  opacity: 1;
  transform: scale(1.05);
}

.home-card-overlay {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 60px 40px;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.20) 30%,
      rgba(0,0,0,0.72) 100%
    );
}

.home-card-overlay .home-status {
  display: inline-block;

  margin-bottom: 18px;

  color: rgba(255,255,255,0.75);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-card-overlay h3 {
  color: #ffffff;

  font-family: var(--font-heading);
  font-size: clamp(34px, 2vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.home-card-overlay .home-link {
  display: inline-block;

  margin-top: 22px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-card-overlay .home-link::after {
  content: " →";
}

/* PRODANO */

.sold-home {
  margin-top: 80px;

  padding-top: 50px;

  border-top: 1px solid rgba(255,255,255,0.15);

  text-align: center;
}

.sold-home-label {
  display: inline-block;

  margin-bottom: 14px;

  color: rgba(255,255,255,0.45);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sold-home h3 {
  color: rgba(255,255,255,0.90);

  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
}

.sold-home p {
  margin-top: 10px;

  color: rgba(255,255,255,0.60);

  font-size: 15px;
}

/* =========================================
   LOCATION SECTION
========================================= */

.location-hero-section {
  position: relative;
  min-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.location-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,18,.72) 0%, rgba(18,18,18,.45) 35%, rgba(18,18,18,.15) 100%);
}

.location-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.section-kicker-light {
  color: rgba(255,255,255,.8);
}

.hero .location-page-hero-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: .95;
  max-width: 520px;
}

.location-hero-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(58px,6vw,88px);
  line-height: .95;
  margin: 10px 0 28px;
}

.location-hero-copy-box {
  max-width: 620px;
  padding: 34px 42px;
  background: rgba(20,20,20,.42);
  backdrop-filter: blur(8px);
  border-radius: 0 24px 24px 0;
  color: #fff;
}

.location-hero-copy-box p {
  margin: 0;
  line-height: 1.9;
}

.location-hero-highlights {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 34px 0 30px;
}

.location-hero-highlights span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 32px;
  padding: 0 22px;
}

.location-hero-highlights span:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.35);
}

.location-hero-highlights span:first-child {
  padding-left: 0;
}

.location-section {
  padding: 140px 0;
  background: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.location-content h2 {
  margin-top: 10px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.location-content p {
  max-width: 520px;

  margin-top: 30px;

  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.location-features {
  display: flex;
  gap: 50px;

  margin-top: 45px;
}

.location-feature strong {
  display: block;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
}

.location-feature span {
  color: var(--color-muted);

  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-image {
  overflow: hidden;

  border-radius: 24px;
}

.location-image img {
  width: 100%;
  display: block;

  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
  padding: 140px 0;
  background: #f5f0ea;
}

.gallery-grid {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  grid-template-rows:
    320px
    320px;

  gap: 12px;

  margin-top: 70px;
}

.gallery-item {
  overflow: hidden;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-large {
  grid-row: span 2;
}

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

.gallery-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-footer {
  text-align: center;
  margin-top: 60px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
  padding: 140px 0 0 0;
  background: #ffffff;
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;

  text-align: center;
}

.contact-box h2 {
  margin-top: 12px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.contact-text {
  max-width: 620px;

  margin: 30px auto 0;

  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;

  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-link {
  color: var(--color-primary);

  font-size: 22px;
  font-weight: 600;
}

.agent-card {

  margin-top: 60px;

  display: grid;

  grid-template-columns: 360px 1fr;

  gap: 60px;

  align-items: end;

  text-align: left;

  padding: 50px 50px 0;

}

.agent-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
  align-self: end;

  line-height: 0;
  
}

.agent-photo img {

  width: auto;

  height: 520px;

  max-width: 100%;

  object-fit: contain;

  display: block;

}

.agent-content {

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  padding-bottom: 80px;

}

.agent-content h3 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.agent-position {
  margin-top: 10px;

  color: var(--color-accent);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-text {
  margin-top: 30px;

  max-width: 520px;

  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-top: 30px;
  margin-bottom: 35px;
}

.agent-contact a {
  color: var(--color-primary);

  font-size: 20px;
  font-weight: 600;
}

/* =========================================
   CLOSING STATEMENT
========================================= */

.closing-statement {
  padding: 140px 0;

  background: #5a1e2d;

  text-align: center;

  overflow: hidden;
}

.closing-kicker {
  color: rgba(255,255,255,0.55);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.closing-statement h2 {
  margin-top: 24px;

  color: #ffffff;

  font-family: var(--font-heading);
  font-size: clamp(64px, 4vw, 140px);
  font-weight: 100;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 50px 0;
  background: #f5f0ea;

  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 180px;
}

.footer-nav {
  display: flex;
  gap: 30px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  color: var(--color-muted);
  font-size: 14px;
}


/* =========================================
   LOCATION PAGE
========================================= */

.page-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(245,240,234,0.82) 0%,
      rgba(245,240,234,0.58) 42%,
      rgba(245,240,234,0.12) 100%
    );
}

.page-hero-content {
  position: relative;
  z-index: 3;

  min-height: 78vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 90px;
}

.page-hero-content h1 {
  max-width: 760px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-hero-content > p:not(.section-kicker) {
  max-width: 620px;

  margin-top: 30px;

  color: rgba(31,31,31,0.78);

  font-size: 20px;
  line-height: 1.8;
}

.location-overview-section {
  padding: 140px 0;
  background: #ffffff;
}

.location-overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.location-overview-grid h2 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.location-overview-text p {
  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.location-overview-text p + p {
  margin-top: 24px;
}

.location-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 90px;
}

.location-benefit {
  padding: 12px 32px;
  background: transparent;
}

.location-benefit:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.location-benefit span {
  display: block;

  margin-bottom: 18px;

  color: var(--color-accent);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.location-benefit h3 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.location-benefit p {
  margin-top: 18px;

  color: var(--color-muted);

  font-size: 15px;
  line-height: 1.8;
}

.location-map-section {
  padding: 140px 0 0;
  background: #f5f0ea;
}

.location-map-layout {
  display:grid;
  grid-template-columns: minmax(0,2fr) minmax(320px,1fr);
  gap:40px;
  align-items:stretch;
}

.location-map {
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  filter: sepia(.06) saturate(1.25) contrast(1.32) brightness(.86);
}

.location-poi-list {
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-right:16px;
}

.location-poi-feature,
.location-poi-group article {
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid var(--color-border);
}

.location-poi-feature strong {
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 600;
}

.location-poi-marker {
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--color-primary);
  box-shadow:0 0 0 4px rgba(108,35,43,.18);
  flex:0 0 auto;
}

.location-poi-group {
  border-bottom:1px solid var(--color-border);
  padding-bottom:8px;
}

.location-poi-group summary {
  cursor:pointer;
  list-style:none;
  font-family:var(--font-heading);
  font-size:22px;
  padding:4px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.location-poi-group summary::after {
  content:'⌄';
  color:var(--color-primary);
  font-size:18px;
  transition:transform .25s ease;
}

.location-poi-group[open] summary::after {
  transform:rotate(180deg);
}

.location-poi-group summary::-webkit-details-marker {
  display:none;
}

.vinice-marker div {
  width:18px;
  height:18px;
  border-radius:50%;
  background:#6c232b;
  border:3px solid #fff;
  box-shadow:0 0 0 4px rgba(108,35,43,.18);
}

.location-map {
  width: 100%;
  height: 620px;

  margin-top: 70px;

  background: #e7e1d9;
}

.location-map iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;

  filter: saturate(0.85) contrast(0.95);
}

.daily-life-section {
  padding: 140px 0;
  background: #ffffff;
}

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

  margin-top: 70px;
}

.daily-card {
  padding: 12px 32px;
  background: transparent;
  border: 0;
}

.daily-card:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.daily-card h3 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.daily-card p {
  margin-top: 18px;

  color: var(--color-muted);

  font-size: 15px;
  line-height: 1.8;
}

.places-section {
  padding: 140px 0;
  background: #f5f0ea;
}

.places-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.places-content h2 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.places-content p {
  max-width: 520px;

  margin-top: 30px;

  color: var(--color-muted);

  font-size: 18px;
  line-height: 1.9;
}

.places-list {
  display: grid;
  gap: 18px;
}

.places-list article {
  padding: 30px;

  background: #ffffff;

  border: 1px solid var(--color-border);
}

.places-list span {
  display: block;

  margin-bottom: 10px;

  color: var(--color-accent);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.places-list h3 {
  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.places-list p {
  margin-top: 8px;

  color: var(--color-muted);

  font-size: 15px;
  line-height: 1.8;
}

.trips-section {
  padding: 140px 0;
  background: #4b1b28;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;

  margin-top: 70px;
}

.trip-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.trip-card:hover .trip-card-image img {
  transform: scale(1.04);
}

.trip-card-content {
  padding: 24px 28px 28px;
}

.trip-card {
  min-height: 260px;
  padding: 48px;
  background: transparent;
  border: 0;
}

.trip-card:nth-child(1),
.trip-card:nth-child(2),
.trip-card:nth-child(4),
.trip-card:nth-child(5) {
  border-right: 1px solid rgba(255,255,255,0.14);
}

.trip-card:nth-child(-n+3) {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.trip-card h3 {
  color: #ffffff;

  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.trip-card p {
  margin-top: 18px;

  color: rgba(255,255,255,0.68);

  font-size: 15px;
  line-height: 1.8;
}

.location-cta-section {
  padding: 160px 0;

  background: #ffffff;

  text-align: center;
}

.location-cta-box h2 {
  max-width: 900px;

  margin: 0 auto 50px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* =========================================
   GALLERY PAGE
========================================= */

.gallery-nav {
  margin-top: 25px;

  position: sticky;

  top: 125px; /* cca 1em pod hlavním navbar */

  z-index: 900;

  background: transparent;

  padding-top: 0;
  padding-bottom: 0;

}

.gallery-nav-inner {

  width: fit-content;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 32px;

  padding: 24px 38px;

  background: rgba(255,255,255,0.62);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 20px;

  border: 1px solid rgba(90,30,45,0.06);

  box-shadow:
    0 2px 8px rgba(0,0,0,0.09),
    0 12px 30px rgba(0,0,0,0.09);

}

.gallery-nav-inner a {

  position: relative;

  padding: 8px 14px;

  color: var(--color-primary);

  z-index: 1;

  transition: color .35s ease;

  font-size: 13px;

font-weight: 600;

letter-spacing: 0.08em;

text-transform: uppercase;

}

.gallery-nav-inner a::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 999px;

  background: var(--color-primary);

  opacity: 0;

  transition: opacity .35s ease;

  z-index: -1;

}

.gallery-nav-inner a:hover {

  opacity: .6;

}

.gallery-nav-inner a.active {

  color: #fff;

}

.gallery-nav-inner a.active::before {

  opacity: 1;

}


.gallery-page-section {

  padding: 40px 0;

}

.gallery-page-section:nth-child(even) {

  background: #ffffff;

}

.gallery-page-section:nth-child(odd) {

  background: #f8f4ef;

}

.gallery-section-title {

  margin-top: 12px;
  margin-bottom: 60px;

  color: var(--color-primary);

  font-family: var(--font-heading);

  font-size: clamp(48px,4vw,72px);
  font-weight: 500;

  line-height: 1;

}

/* =========================================
   EXTERIERY
========================================= */

.gallery-feature-grid {

  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  grid-template-rows:
    340px
    340px;

  gap: 12px;

  margin-bottom: 70px;

}

.gallery-feature-grid a:nth-child(1) {

  grid-row: span 2;

}

.gallery-feature-grid a:nth-child(4) {

  grid-column: 2 / 4;

}

.gallery-feature-grid img {

  width: 100%;
  height: 100%;

  object-fit: cover;

}

/* INTERIERY - EDITORIAL PATTERN */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}

.gallery-masonry a {
  display: block;
  overflow: hidden;
}

/* 1 velká vlevo */
.gallery-masonry a:nth-child(9n+1) {
  grid-column: 1 / 7;
  grid-row: span 4;
}

/* 2–5 vpravo */
.gallery-masonry a:nth-child(9n+2) {
  grid-column: 7 / 10;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+3) {
  grid-column: 10 / 13;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+4) {
  grid-column: 7 / 10;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+5) {
  grid-column: 10 / 13;
  grid-row: span 2;
}

/* 6–9 pod tím */
.gallery-masonry a:nth-child(9n+6) {
  grid-column: 1 / 7;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+7) {
  grid-column: 7 / 13;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+8) {
  grid-column: 1 / 7;
  grid-row: span 2;
}

.gallery-masonry a:nth-child(9n+9) {
  grid-column: 7 / 13;
  grid-row: span 2;
}

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

/* =========================================
   HOVER
========================================= */

.gallery-feature-grid a,
.gallery-masonry a {

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition:
    transform .3s ease,
    box-shadow .3s ease;

}

.gallery-feature-grid a:hover,
.gallery-masonry a:hover {

  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12);

}

.gallery-feature-grid img,
.gallery-masonry img {

  transition:
    transform .7s ease;

}

.gallery-feature-grid a:hover img,
.gallery-masonry a:hover img {

  transform: scale(1.05);

}


/* LOCATION GALLERY - 6 IMAGES */

.gallery-location-grid {

  display: grid;

  grid-template-columns: repeat(12, 1fr);

  grid-auto-rows: 180px;

  gap: 12px;

}

.gallery-location-grid a:nth-child(1) {

  grid-column: 1 / 7;

  grid-row: span 3;

}

.gallery-location-grid a:nth-child(2) {

  grid-column: 7 / 13;

  grid-row: span 2;

}

.gallery-location-grid a:nth-child(3) {

  grid-column: 7 / 10;

  grid-row: span 1;

}

.gallery-location-grid a:nth-child(4) {

  grid-column: 10 / 13;

  grid-row: span 1;

}

.gallery-location-grid a:nth-child(5) {

  grid-column: 1 / 7;

  grid-row: span 2;

}

.gallery-location-grid a:nth-child(6) {

  grid-column: 7 / 13;

  grid-row: span 2;

}

/* =========================================
   HOUSE DETAIL
========================================= */

.house-summary-section {
  padding: 70px 0;
  background: #ffffff;
}

.house-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  
  border-left: 1px solid var(--color-border);
}

.house-summary-grid article {
  padding: 32px 24px;
  border-right: 1px solid var(--color-border);
  
}

.house-summary-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.house-summary-grid strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.house-intro-section,
.floorplans-section,
.areas-section,
.project-position-section {
  padding: 70px 0;
  background: #ffffff;
}

.house-intro-grid,
.areas-grid,
.project-position-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.house-intro-grid h2,
.floorplans-section h2,
.project-position-grid h2 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.house-intro-text p,
.project-position-grid p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.9;
}

.house-intro-text p + p {
  margin-top: 24px;
}

.house-gallery-section {
  padding: 140px 0;
  background: #f5f0ea;
}

.house-section-title {
  margin-top: 12px;
  margin-bottom: 60px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.floorplans-section {
  background: #ffffff;
}

.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 70px;
}

.floorplan-card {
  display: block;
  padding: 28px;
  background: #faf8f5;
  border: 1px solid var(--color-border);
}

.floorplan-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floorplan-card img {
  width: 100%;
  height: auto;
}

.floorplans-actions {
  margin-top: 50px;
  text-align: center;
}

.areas-section {
  background: #f5f0ea;
}

.areas-list {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.area-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.area-row span {
  color: var(--color-muted);
  font-size: 16px;
}

.area-row strong {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}


/* DETAILNÍ STANDARDY */


.standards-section {
  padding: 100px 0;
  background: var(--color-primary);
}

.standards-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
}

.standard-detail-card {
  padding: 48px;
  background: transparent;
  border: 0;
}

.standard-detail-card:nth-child(1),
.standard-detail-card:nth-child(2),
.standard-detail-card:nth-child(4),
.standard-detail-card:nth-child(5) {
  border-right: 1px solid rgba(255,255,255,0.14);
}

.standard-detail-card:nth-child(-n+3) {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.standard-detail-card span {
  display: block;
  margin-bottom: 18px;

  color: rgba(255,255,255,0.45);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.standard-detail-card h3 {
  color: #ffffff;

  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.standard-detail-card ul {
  margin-top: 24px;
  padding-left: 18px;
}

.standard-detail-card li {
  margin-bottom: 12px;

  color: rgba(255,255,255,0.72);

  font-size: 15px;
  line-height: 1.7;
}





.project-position-section {
  background: #ffffff;
}

.project-position-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.project-house {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #faf8f5;
  border: 1px solid var(--color-border);
}

.project-house span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.project-house small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-house.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.project-house.active span,
.project-house.active small {
  color: #ffffff;
}

.project-house.sold {
  opacity: 0.55;
}

/* =========================================
   HOUSE POSITION + SPECS
========================================= */

.house-position-section {
  background: #ffffff;
}

.house-position-hero {
  width: 100%;
  overflow: hidden;
}

.house-position-hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.house-position-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;

  padding: 110px 0;
}

.house-position-image a {
  display: block;
  overflow: hidden;
}

.house-position-image img {
  width: 100%;
  display: block;
}

.house-specs h2 {
  margin-top: 12px;
  margin-bottom: 45px;

  color: var(--color-primary);

  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.house-specs-list {
  border-top: 1px solid var(--color-border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;

  padding: 22px 0;

  border-bottom: 1px solid var(--color-border);
}

.spec-row span {
  color: var(--color-muted);
  font-size: 16px;
}

.spec-row strong {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: right;
}

/* =========================================
   right-hero-text-page
========================================= */

.right-hero-text-page .hero-content {
  align-items: flex-end;
}

.right-hero-text-page .hero-content h1 {
  text-align: right;
}

.right-hero-text-page .hero h1::after {
  margin-left: auto;
}

.right-hero-text-page .hero-copy-box {

  margin-left: auto;
  margin-right: calc((100vw - min(100% - 48px, 1280px)) / -2);

  max-width: 65vw;

  padding:
    2.2em
    calc((100vw - min(100% - 48px, 1280px)) / 2)
    2.2em
    2em;

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.right-hero-text-page .hero-text {
  text-align: right;
}

.right-hero-text-page .hero-actions {
  justify-content: flex-end;
}


/* =========================================
   PRICING PAGE
========================================= */

.pricing-section {
  padding: 110px 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}


.pricing-card {
  padding: 0;
  overflow: hidden;
  background: #faf8f5;
  border: 1px solid var(--color-border);
}

.pricing-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-image-label {
  position: absolute;
  left: 28px;
  bottom: 28px;

  color: #ffffff;

  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.pricing-status-badge {
  position: absolute;
  top: 22px;
  right: 22px;

  padding: 9px 16px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
}

/* VOLNÝ */

.pricing-status-badge.available {
  background: rgba(44, 78, 62, 0.95);
  color: #ffffff;
}

/* REZERVOVÁNO */

.pricing-status-badge.reserved {
  background: rgba(245, 158, 11, 0.92);
  color: #ffffff;
}

/* PRODÁNO */

.pricing-status-badge.sold {
  background: rgba(220, 38, 38, 0.92);
  color: #ffffff;
}

.pricing-card-header,
.pricing-price,
.pricing-specs,
.pricing-card .btn {
  margin-left: 38px;
  margin-right: 38px;
}

.pricing-card .btn {
  margin-bottom: 38px;
}

.pricing-card-header {
  margin-top: 34px;
}

.pricing-card.featured {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.pricing-card-header h3 {
  margin-top: 14px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.pricing-price {
  margin-top: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-price span,
.pricing-specs span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-price strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.pricing-specs {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  margin-bottom: 36px;
}

.pricing-specs strong {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}

/* PURCHASE */

.purchase-section {
  padding: 110px 0;
  background: #f5f0ea;
}

.purchase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.purchase-grid h2 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.purchase-steps {
  display: grid;
  gap: 18px;
}

.purchase-steps article {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.purchase-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.purchase-steps h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.purchase-steps p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}










/* MOBILE */

@media (max-width: 992px) {

  .main-nav,
  .language-switch {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-left: auto;

    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle {
    position: relative;
  }

  .menu-toggle span {
    width: 32px;
    height: 2px;
    background: var(--color-primary);
  }

  .menu-toggle::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
  }

  .logo img {
    width: 180px;
  }

  .location-grid {
  gap: 50px;
}

.gallery-feature-grid {

  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;

}

.gallery-feature-grid a:nth-child(1) {

  grid-column: span 2;
  grid-row: auto;

}

.gallery-feature-grid a {

  height: 320px;

}

.gallery-masonry {

  grid-template-columns:
    repeat(2, 1fr);

}

.gallery-masonry a {

  grid-column: auto !important;
  height: 320px !important;

}

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

@media (max-width: 768px) {

  .container {
    width: min(100% - 32px, var(--container-width));
  }

  .site-header {
    padding: 18px 0;
  }

  .logo img {
    width: 160px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 90px;
  }

  .hero-copy-box {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: -16px;
  }

  .btn-secondary {
    background: rgba(255,255,255,0.10);
  }

  .key-benefit-icon {
    margin-bottom: 14px;
  }

  .project-intro-block {
    margin-top: -8px;
  }

  .section-header-light,
  .section-header,
  .project-intro-block {
    text-align: center;
  }

  .location-hero-copy-box {
    max-width: 100%;
  }

  .location-hero-highlights {
    margin: 20px 0 24px;
  }

  .location-hero-highlights span {
    font-size: 18px;
    padding: 0 10px;
    text-align: center;
  }

  .gallery-section .section-header {
    text-align: center;
  }

  .gallery-item {
    height: 180px;
  }

  .gallery-section {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .contact-section {
    padding-top: 40px;
  }

  .agent-card {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    margin-top: 0;
  }

  .agent-content {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .agent-photo {
    order: 2;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid rgba(113, 44, 58, 0.45);
    max-width: 180px;
  }

  .agent-photo img {
    display: block;
    margin: 0;
  }

  .hero-copy-inner {
    padding-left: 32px;
    padding-right: 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
  }

  .homes-grid-full .home-card-full {
    min-height: 340px;
  }

  .btn {
    width: 100%;

  }

  .location-grid {
  grid-template-columns: 1fr;
  gap: 50px;
}

.location-features {
  flex-wrap: wrap;
  gap: 30px;
}

.location-content h2 {
  font-size: 42px;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-large,
.gallery-wide,
.gallery-tall {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item {
  height: 180px;
}

.contact-details {
  flex-direction: column;
  gap: 16px;
}

.footer-inner {
  flex-direction: column;
  text-align: center;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.agent-card {
  grid-template-columns: 1fr;

  gap: 35px;

  padding: 35px;

  text-align: center;
}

.agent-photo {
  max-width: 240px;
  margin: 0 auto;
  line-height: 0;
}

.agent-photo img {
  display: block;
}

.agent-text {
  margin-left: auto;
  margin-right: auto;
}

.agent-contact {
  align-items: center;
}

.closing-statement {
  padding: 100px 0;
}

.closing-statement h2 {
  font-size: clamp(48px, 14vw, 72px);
}

.page-hero,
.page-hero-content {
  min-height: 70vh;
}

.page-hero-content h1 {
  font-size: clamp(48px, 14vw, 72px);
}

.page-hero-content > p:not(.section-kicker) {
  font-size: 17px;
}

.location-overview-grid,
.places-grid {
  grid-template-columns: 1fr;
  gap: 50px;
}

.key-benefits-grid,
.secondary-benefits-grid,
.secondary-benefits-grid-four,
.homes-grid-full,
.location-benefits-grid,
.daily-grid,
.trips-grid,
.pricing-grid,
.floorplans-grid,
.purchase-grid,
.house-summary-grid {
  grid-template-columns: 1fr;
}

.key-benefits-grid,
.secondary-benefits-grid,
.homes-grid-full,
.location-benefits-grid,
.daily-grid,
.trips-grid,
.pricing-grid,
.floorplans-grid {
  gap: 0;
}

.location-map {
  height: 420px;
}

.daily-life-section,
.places-section,
.trips-section,
.location-overview-section,
.location-map-section {
  padding: 90px 0;
}

.location-cta-section {
  padding: 110px 0;
}

.location-cta-box h2 {
  font-size: clamp(44px, 13vw, 68px);
}

.gallery-nav {

  top: 65px;

}

.gallery-nav-inner {

  gap: 16px;

}

.gallery-nav-inner a {

  font-size: 11px;

}

.gallery-page-section {

  padding: 90px 0;

}

.gallery-feature-grid {

  grid-template-columns: 1fr;

}

.gallery-feature-grid a {

  height: 260px;

}

.gallery-masonry {

  grid-template-columns: 1fr;

}

.gallery-masonry a {

  height: 260px !important;

}

.house-position-hero img {
  height: 55vh;
}

.house-position-grid {
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 80px 0;
}

.standards-detail-grid {
  grid-template-columns: 1fr;
}

.standard-detail-card {
  padding: 30px;
  border-right: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.page-hero-copy-box,
.hero-short .hero-copy-box {
  width: calc(100vw - 32px);
  max-width: calc(100vw - 32px);
}

.page-hero-actions {
  flex-direction: column;
}

.page-hero-actions .btn {
  width: 100%;
}

.house-benefits-grid,
.house-features-grid,
.house-intro-grid,
.house-overview-grid {
  grid-template-columns: 1fr;
}

.house-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.house-gallery-grid a,
.house-gallery-grid img {
  height: 180px;
}

.house-position-image img,
.siteplan-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-short .hero-copy-box {
  width: calc(100vw - 32px);
  max-width: calc(100vw - 32px);
  margin-left: -16px;
}

.hero-short .hero-copy-inner {
  padding: 24px 32px;
}

.hero-short .hero-actions {
  width: 100%;
  flex-direction: column;
}

.hero-short .hero-actions .btn {
  width: 100%;
}

.house-summary-grid {
  text-align: center;
}

.house-summary-grid article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.house-intro-grid {
  grid-template-columns: 1fr;
}

.gallery-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-feature-grid a {
  height: 180px;
  margin: 0;
}

.gallery-feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}

@media (max-width:768px){
.hero-short .hero-copy-box{width:100vw;margin-left:calc(50% - 50vw);max-width:none;}
.hero-short .hero-copy-inner{text-align:left;}
.house-summary-grid article{text-align:center;border-bottom:1px solid rgba(255,255,255,.12)!important;}
.house-intro-section{padding-bottom:40px;}
.house-gallery-section{padding-top:20px;padding-bottom:30px;}
.gallery-feature-grid{display:flex!important;flex-direction:column!important;gap:5px!important;}
.gallery-feature-grid a{height:180px!important;margin:0!important;display:block;}
#pudorysy,.floorplans-section{padding-top:30px!important;}
.house-position-grid img,.house-position-image img{max-width:100%;height:auto!important;object-fit:contain!important;}
}


.btn-outline-pdf{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 padding:12px 22px;
 border:1px solid rgba(113,44,58,.35);
 color:var(--color-primary);
 background:transparent;
 width:auto !important;
 min-width:240px;
}

.btn-outline-pdf:hover{
 background:rgba(113,44,58,.06);
}
