* {
  box-sizing: border-box;
}

:root {
  --bg: #fbf6ed;
  --bg-soft: #fffaf2;
  --text: #263228;
  --muted: #66715f;
  --green: #49764b;
  --green-dark: #2f5732;
  --cream: #f4e4c8;
  --brown: #8b5f32;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(47, 87, 50, 0.14);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 246, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(73, 118, 75, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", Georgia, serif;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: 78vh;
  padding: clamp(48px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(244, 228, 200, 0.9), transparent 38%),
    linear-gradient(135deg, #fbf6ed 0%, #f3ead7 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--brown);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Noto Serif Georgian", "Noto Sans Georgian", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(73, 118, 75, 0.24);
}

.button.secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid rgba(73, 118, 75, 0.18);
}

.button.full {
  width: 100%;
  margin-top: 10px;
}

.hero-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(73, 118, 75, 0.12);
}

.hero-card.photo-carousel {
  background: var(--white);
}

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

.photo-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 430px;
  background: var(--white);
}

.carousel-track {
  width: 100%;
  height: 100%;
  background: var(--white);
}

.carousel-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.carousel-image.active {
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover {
  background: var(--white);
}

.carousel-button.prev {
  left: 16px;
}

.carousel-button.next {
  right: 16px;
}

.hero-illustration {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.hero-illustration span {
  display: grid;
  place-items: center;
  min-height: 112px;
  border-radius: 24px;
  background: var(--white);
  font-size: 3rem;
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--bg-soft);
}

.intro p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.contact-card,
.notice,
.visit-box {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(73, 118, 75, 0.1);
}

.info-card {
  padding: 26px;
}

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

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  background: linear-gradient(135deg, #eef5e9 0%, #fbf6ed 100%);
}

.visit-box,
.notice,
.contact-card {
  padding: clamp(26px, 4vw, 40px);
}

.visit-box p {
  color: var(--muted);
}

.visit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.visit-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-soft);
}

.notice {
  align-self: start;
  background: var(--green-dark);
  color: var(--white);
}

.notice p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-section p {
  color: var(--muted);
}

.contact-card p {
  margin: 0 0 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(73, 118, 75, 0.12);
}

.site-footer a {
  font-weight: 800;
  color: var(--green-dark);
}

@media (max-width: 920px) {
  .hero,
  .intro,
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

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

  .site-footer {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(.about-content {
  color: var(--muted);
  font-size: 1.05rem;
}

}
}
