:root {
  --cream:       #F8F5F0;
  --cream-dark:  #EFE9E0;
  --terracotta:  #B5714A;
  --terra-light: #D4956E;
  --charcoal:    #1E1C1A;
  --warm-gray:   #6B6560;
  --white:       #FFFFFF;
  --border:      rgba(30,28,26,0.10);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --section-gap: 6rem;
  --container:   1200px;
  --radius:      4px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: var(--section-gap) 0; }
.bg-cream { background: var(--cream-dark); }
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 520px;
  line-height: 1.75;
  margin: 0 auto;
}
.body-text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,113,74,0.28);
}
.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-full { width: 100%; text-align: center; }
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(248,245,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.75; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s;
}
.logo-sub {
  font-size: 0.60rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.4s;
}
.navbar.scrolled .logo-main { color: var(--charcoal); }
.navbar.scrolled .logo-sub  { color: var(--warm-gray); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link { color: var(--warm-gray); }
.navbar.scrolled .nav-link:hover { color: var(--charcoal); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  color: var(--white) !important;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--charcoal) !important;
  border-color: var(--white);
}
.navbar.scrolled .nav-cta {
  border-color: var(--charcoal);
  color: var(--charcoal) !important;
}
.navbar.scrolled .nav-cta:hover {
  background: var(--charcoal);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }
.hero {
  position: relative;
  height: 82svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: contents;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,16,0.30) 0%,
    rgba(20,18,16,0.55) 50%,
    rgba(20,18,16,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}
.hero-tag {
  font-size: 0.70rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}
.hero-sub {
  font-size: 0.80rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.8rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .btn { margin-top: 0.75rem; }
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(181,113,74,0.35);
}
.badge-year {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.badge-label {
  font-size: 0.60rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.penzion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.penzion-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,28,26,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.penzion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30,28,26,0.12);
}
.card-img-wrap {
  height: 240px;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.penzion-card:hover .card-img { transform: scale(1.04); }
.card-body {
  padding: 1.75rem;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.card-text {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.75;
}
.keramika-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.keramika-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cer-img-main {
  grid-column: 1 / -1;
  height: 300px;
  border-radius: 2px;
  overflow: hidden;
}
.cer-img-secondary {
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
}
.keramika-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.keramika-images div:hover img { transform: scale(1.03); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.5s var(--ease), filter 0.3s;
}
.gallery-item:hover { transform: scale(1.02); filter: brightness(1.05); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 150px; }
}
.feature-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  padding-left: 1.25rem;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
}
.price-section {
  margin: 4rem auto 0;
  max-width: 640px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem 2rem;
}
.price-header { text-align: center; margin-bottom: 1.5rem; }
.price-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 0.3rem;
}
.price-list { display: flex; flex-direction: column; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
}
.price-list li:last-child { border-bottom: none; }
.price-item { color: var(--charcoal); font-size: 1rem; flex: 1; min-width: 0; }
.price-val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .price-section { padding: 1.6rem 1.1rem; margin-top: 3rem; }
  .price-header { margin-bottom: 1rem; }
  .price-title { font-size: 1.5rem; }
  .price-list li { gap: 0.6rem; padding: 0.55rem 0; align-items: baseline; }
  .price-item { font-size: 0.9rem; line-height: 1.35; }
  .price-val { font-size: 1.05rem; }
}
.strip {
  background: var(--charcoal);
  padding: 3rem 0;
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
}
.strip-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--white);
  font-size: 1rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--warm-gray);
}
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(30,28,26,0.07);
}
.map-section {
  background: var(--white);
}
.map-header {
  max-width: 640px;
  margin-bottom: 2rem;
}
.map-wrap {
  position: relative;
}
.location-map {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,28,26,0.08);
  z-index: 1;
}
.map-nav-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(30,28,26,0.25);
  transition: opacity 0.2s var(--ease);
}
.map-nav-link:hover { opacity: 0.7; }
.map-marker { background: transparent; border: none; }
.map-marker-pin {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 3px solid var(--cream);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(30,28,26,0.25);
}
.location-map .leaflet-popup-content-wrapper {
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--warm-gray);
}
.location-map .leaflet-popup-content strong {
  color: var(--charcoal);
  font-weight: 500;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107,101,96,0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,113,74,0.12);
}
.form-success {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}
.form-success.visible { display: block; }
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-size: 0.60rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 0.5rem;
}
.footer-links h4 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links li,
.footer-links a {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateX(32px);
}
.reveal-right.visible {
  transform: translateX(0);
}
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.22s; }
.reveal:nth-child(4) { transition-delay: 0.32s; }
.hero-content .reveal:nth-child(1) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.65s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.85s; }
.hero-content .reveal:nth-child(4) { transition-delay: 1.05s; }
.weather-widget {
  position: absolute;
  top: 5.5rem;
  right: 2rem;
  z-index: 10;
  background: rgba(20,18,16,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 180px;
  color: var(--white);
}
.weather-loading {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.weather-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.weather-data {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.weather-data.hidden { display: none; }
.weather-icon { font-size: 2rem; line-height: 1; }
.weather-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.weather-temp {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.weather-desc {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: capitalize;
}
.weather-extra {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 0.75rem;
}
.weather-extra span:first-child {
  font-size: 0.95rem;
  font-weight: 500;
}
.weather-extra-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.weather-location {
  margin-top: 0.6rem;
  font-size: 0.60rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  text-align: center;
}
.activity-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.activity-strip::-webkit-scrollbar { display: none; }
.activity-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.activity-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.75rem;
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: background 0.25s var(--ease), color 0.25s;
  position: relative;
}
.activity-item:last-child { border-right: none; }
.activity-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.activity-item:hover::after { width: 60%; }
.activity-item:hover { background: var(--cream); }
.activity-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.activity-item:hover .activity-icon { transform: scale(1.15) translateY(-2px); }
.activity-item span {
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.25s;
}
.activity-item:hover span { color: var(--terracotta); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(30,28,26,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30,28,26,0.10);
}
.svc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.svc-icon-wrap svg {
  width: 24px; height: 24px;
  color: var(--white);
}
.svc-terra   { background: var(--terracotta); }
.svc-sage    { background: #7A9E7E; }
.svc-warm    { background: #C4945A; }
.svc-green   { background: #4A7C59; }
.svc-blue    { background: #5A7FA0; }
.svc-rose    { background: #A05A6A; }
.svc-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
}
.svc-text {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
  flex: 1;
}
.svc-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-top: 0.5rem;
  transition: letter-spacing 0.3s var(--ease);
  display: inline-block;
}
.svc-link:hover { letter-spacing: 0.14em; }
.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.card-btn {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: letter-spacing 0.3s var(--ease);
}
.card-btn:hover { letter-spacing: 0.16em; }
.weather-section { background: var(--cream); }
.weather-detail-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.weather-card {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 6rem;
}
.wc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.wc-header .section-label { color: var(--terra-light); margin: 0; }
.wc-location {
  font-size: 0.70rem;
  opacity: 0.5;
}
.wc-temp-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.wc-big-icon { font-size: 3.5rem; line-height: 1; }
.wc-big-temp {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}
.wc-desc {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
.wc-details {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.wc-detail-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.wc-detail-item + .wc-detail-item {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 1rem;
}
.wc-detail-icon { font-size: 1.1rem; }
.wc-detail-item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wc-detail-item span { font-weight: 500; }
.wc-detail-item small {
  font-size: 0.60rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
  text-transform: uppercase;
}
.wc-forecast {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wc-forecast-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.wc-forecast-day .day-name { opacity: 0.6; width: 70px; }
.wc-forecast-day .day-icon { font-size: 1.1rem; }
.wc-forecast-day .day-range {
  display: flex;
  gap: 0.5rem;
}
.day-max { font-weight: 500; }
.day-min { opacity: 0.5; }
.activity-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.act-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(30,28,26,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.act-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30,28,26,0.09);
}
.act-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.act-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.act-card p {
  font-size: 0.87rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
@media (max-width: 900px) {
  :root { --section-gap: 4rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100svh;
    width: min(320px, 90vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 2rem;
    transition: right 0.4s var(--ease);
    box-shadow: -4px 0 24px rgba(30,28,26,0.12);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--warm-gray) !important; font-size: 0.85rem; }
  .nav-cta { border-color: var(--charcoal) !important; color: var(--charcoal) !important; }
  .nav-toggle { display: flex; z-index: 101; }
  .about-grid,
  .keramika-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .penzion-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .weather-detail-grid { grid-template-columns: 1fr; }
  .weather-card { position: static; }
  .about-img { height: 320px; }
  .about-badge { left: 1rem; bottom: -1rem; }
  .keramika-images { grid-template-columns: 1fr 1fr; }
  .keramika-images .cer-img-main { height: 240px; }
  .keramika-images .cer-img-secondary { height: auto; aspect-ratio: 1 / 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .strip-inner { gap: 0; }
  .strip-divider { display: none; }
  .strip-item { min-width: 45%; }
  .weather-widget { display: none; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(280px, 85vw); text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .location-map { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .penzion-grid { grid-template-columns: 1fr; }
  .activity-cards-grid { grid-template-columns: 1fr; }
  .wc-details { flex-direction: column; gap: 0.75rem; }
  .wc-detail-item + .wc-detail-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.75rem; }
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(30, 28, 26, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.slider-control:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.slider-control.prev {
  left: 2rem;
}
.slider-control.next {
  right: 2rem;
}
.slider-control svg {
  width: 24px;
  height: 24px;
}
.slider-control:active {
  transform: translateY(-50%) scale(0.95);
}
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.25);
}
@media (max-width: 768px) {
  .slider-control {
    width: 42px;
    height: 42px;
  }
  .slider-control.prev { left: 1rem; }
  .slider-control.next { right: 1rem; }
  .slider-dots { bottom: 1.5rem; }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,26,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.activity-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  display: block;
}
.weather-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  display: inline-block;
  vertical-align: middle;
}
.loc-pin {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
  margin-top: -2px;
}
.wc-location svg.loc-pin {
  stroke: var(--terra-light);
}
.wc-big-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  display: block;
}
.wc-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  display: block;
}
.wc-forecast-day .day-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  display: inline-block;
  vertical-align: middle;
}
.act-emoji svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 1.5;
  display: block;
}
.video-tour {
  text-align: center;
}
.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(30,28,26,0.12);
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
}
.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 18, 16, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.show {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}
.lightbox.show .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--terracotta);
}
@media (max-width: 600px) {
  .lightbox-close {
    top: 0.5rem;
    right: 0.9rem;
    font-size: 2.8rem;
    line-height: 1;
    padding: 0.2rem 0.7rem;
    z-index: 1001;
  }
}
.penzion-card .card-img {
  cursor: pointer;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 0.2rem 0.3rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.4s, background 0.4s;
  list-style: none;
}
.navbar.scrolled .lang-switcher {
  border-color: rgba(30,28,26,0.18);
  background: rgba(30,28,26,0.05);
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: none;
  border-radius: 14px;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  line-height: 1;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.14);
}
.lang-btn.active {
  background: var(--terracotta);
  color: var(--white) !important;
  box-shadow: 0 2px 8px rgba(181,113,74,0.40);
}
.navbar.scrolled .lang-btn {
  color: var(--warm-gray);
}
.navbar.scrolled .lang-btn:hover {
  color: var(--charcoal);
  background: rgba(30,28,26,0.08);
}
.navbar.scrolled .lang-btn.active {
  background: var(--terracotta);
  color: var(--white) !important;
}


@media (max-width: 900px) {
  .lang-switcher {
    border-color: rgba(30,28,26,0.18);
    background: rgba(30,28,26,0.05);
    align-self: flex-start;
    margin-top: 0.5rem;
  }
  .lang-btn {
    color: var(--warm-gray);
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
  }
  .lang-btn:hover {
    color: var(--charcoal);
    background: rgba(30,28,26,0.06);
  }
}


