:root {
  --parchment: #F5F0E6;
  --parchment-deep: #EDE6D8;
  --parchment-light: #FAF7F0;
  --green: #2F5E3F;
  --green-light: #3E7A52;
  --green-glow: rgba(47,94,63,0.06);
  --red: #8B3A3A;
  --red-light: #A04848;
  --red-glow: rgba(139,58,58,0.06);
  --gold: #C09A3A;
  --gold-light: #D4AE4E;
  --gold-muted: #A0884A;
  --gold-glow: rgba(192,154,58,0.1);
  --ink: #1C1410;
  --ink-soft: #3D2E24;
  --ink-dim: #6B5E4F;
  --ink-faint: #9A8D7E;
  --ink-ghost: #BFB3A4;
  --cream: #FDFBF6;
  --r: 4px;
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Libre Baskerville', Baskerville, Georgia, serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.75;
  font-size: 15px;
  overflow-x: clip;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s, background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(242,235,217,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184,134,11,0.12);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--parchment-light);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

.nav.scrolled .nav-logo {
  color: var(--ink);
}

.nav-logo span {
  color: var(--gold-light);
  transition: color 0.4s;
}

.nav.scrolled .nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment-light);
  background: #1E3A2A;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid rgba(184,134,11,0.2);
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.82;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--parchment-light);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.nav.scrolled .hamburger span {
  background: var(--ink-soft);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav.menu-open {
    background: rgba(30,58,42,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
  }

  .nav.menu-open .nav-logo {
    color: var(--parchment-light);
  }

  .nav.menu-open .nav-logo span {
    color: var(--gold-light);
  }

  .nav.menu-open .hamburger span {
    background: var(--parchment-light);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30,58,42,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(184,134,11,0.15);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(184,134,11,0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 15px;
    color: rgba(242,235,217,0.7);
    background: transparent;
    border: none;
    border-radius: 0;
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold-light);
    background: rgba(184,134,11,0.06);
    border: none;
    box-shadow: none;
    transform: none;
  }

  .nav.scrolled.menu-open {
    background: rgba(30,58,42,0.97);
  }

  .nav.scrolled .nav-links {
    background: rgba(30,58,42,0.97);
  }

  .nav.scrolled .nav-links a {
    color: rgba(242,235,217,0.7);
    background: transparent;
    border: none;
  }

  .nav.scrolled .nav-links a:hover,
  .nav.scrolled .nav-links a.active {
    color: var(--gold-light);
    background: rgba(184,134,11,0.06);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(2px) saturate(0.85) brightness(1);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.15); filter: blur(3px) saturate(0.8) brightness(0.95); }
  to { transform: scale(1.08); filter: blur(2px) saturate(0.85) brightness(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(18,12,8,0.15) 0%, rgba(18,12,8,0.3) 100%),
    linear-gradient(180deg,
      rgba(18,12,8,0.1) 0%,
      rgba(18,12,8,0.1) 30%,
      rgba(18,12,8,0.2) 55%,
      rgba(18,12,8,0.45) 80%,
      rgba(18,12,8,0.6) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  max-width: 720px;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-ornament span:first-child,
.hero-ornament span:last-child {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.5));
}

.hero-ornament span:last-child {
  background: linear-gradient(90deg, rgba(184,134,11,0.5), transparent);
}

.hero-ornament span:nth-child(2) {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(184,134,11,0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-label {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero h1 {
  font-size: clamp(40px, 10vw, 120px);
  font-weight: 300;
  color: var(--parchment-light);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(242,235,217,0.7);
  max-width: 460px;
  margin: 0 auto 36px;
  font-style: italic;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s 1.1s forwards;
}

.btn--gold {
  background: var(--gold);
  color: #1A120E;
  box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}

.btn--gold:hover {
  box-shadow: 0 8px 32px rgba(184,134,11,0.35);
  color: #1A120E;
  background: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: rgba(242,235,217,0.8);
  border: 1px solid rgba(184,134,11,0.3);
}

.btn--ghost:hover {
  border-color: rgba(184,134,11,0.6);
  color: var(--parchment-light);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 1.3s forwards;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.hero-badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191,179,164,0.5);
}

.hero-badge-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(184,134,11,0.3), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 50%;
  color: rgba(191,179,164,0.5);
  opacity: 0;
  animation: fadeUp 0.6s 1.6s forwards;
  transition: border-color 0.3s, color 0.3s;
}

.hero-scroll:hover {
  border-color: rgba(184,134,11,0.5);
  color: var(--gold-light);
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  animation: gently 2.8s ease-in-out infinite;
}

@keyframes gently {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.divider {
  max-width: 260px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider svg {
  width: 100%;
  height: 12px;
  stroke: var(--gold-muted);
  opacity: 0.4;
}

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.33,.0,.2,1), transform 0.8s cubic-bezier(.33,.0,.2,1);
}

.rv.v {
  opacity: 1;
  transform: none;
}

.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }

.sec {
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
  font-weight: 300;
}

.sec-head h2 em {
  font-style: italic;
  color: var(--green);
}

.sec-head p {
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 440px;
  margin: 0 auto;
  font-style: italic;
}

.about-bg {
  background: var(--parchment-deep);
  position: relative;
}

.about-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.12) 50%, transparent 90%);
}

.about-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.12) 50%, transparent 90%);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 2px 8px rgba(28,20,16,0.06),
    0 12px 40px rgba(28,20,16,0.12);
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,134,11,0.08);
  border-radius: var(--r);
  z-index: 2;
  pointer-events: none;
}

.about-img img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(.33,.0,.2,1);
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 24px;
  font-weight: 300;
}

.about-text h2 em {
  font-style: italic;
  color: var(--green);
}

.about-text p {
  color: var(--ink-dim);
  margin-bottom: 18px;
  font-size: 15px;
}

.about-highlight {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--gold-glow);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
}

.about-highlight strong {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
}

.about-highlight span {
  font-size: 14px;
  color: var(--ink-dim);
  font-style: italic;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-dim);
}

.feat-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img {
    max-width: 600px;
    margin: 0 auto;
  }
}

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

.cat-card {
  background: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.1);
  position: relative;
  transition: transform 0.5s cubic-bezier(.33,.0,.2,1), box-shadow 0.5s;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 2;
}

.cat-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.cat-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.cat-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(28,20,16,0.06),
    0 16px 48px rgba(28,20,16,0.1);
}

.cat-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 260px;
  overflow: hidden;
}

.cat-imgs.single {
  grid-template-columns: 1fr;
}

.cat-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.33,.0,.2,1);
}

.cat-card:hover .cat-imgs img {
  transform: scale(1.05);
}

.cat-body {
  padding: 24px 28px 28px;
  position: relative;
}

.cat-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.15), transparent);
}

.cat-body h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 400;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  padding: 5px 14px;
  border-radius: 2px;
  border: 1px solid rgba(47,94,63,0.08);
}

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

  .cat-imgs {
    height: 220px;
  }
}

.gal-bg {
  background: var(--parchment-deep);
  position: relative;
}

.gal-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.12) 50%, transparent 90%);
}

.gal-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.12) 50%, transparent 90%);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gal-grid > :nth-child(1) {
  grid-row: span 2;
}

.gal-grid > :nth-child(4) {
  grid-column: span 2;
}

.gal-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(184,134,11,0.1);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.gal-item:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow:
    0 4px 12px rgba(28,20,16,0.08),
    0 8px 32px rgba(28,20,16,0.12);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.33,.0,.2,1);
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,94,63,0.55) 0%, rgba(28,20,16,0.5) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gal-item:hover::after {
  opacity: 1;
}

.gal-item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}

.gal-item:hover svg {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gal-grid > :nth-child(1) {
    grid-row: span 1;
  }

  .gal-grid > :nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gal-grid {
    grid-auto-rows: 160px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18,14,10,0.97);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.lightbox.on {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--r);
  box-shadow: 0 0 100px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(.33,.0,.2,1);
}

.lightbox.on .lightbox-img {
  transform: scale(1);
}

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,134,11,0.12);
  background: rgba(242,235,217,0.04);
  border-radius: 50%;
  color: rgba(191,179,164,0.7);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.lb-btn:hover {
  background: rgba(242,235,217,0.08);
  border-color: rgba(184,134,11,0.3);
  color: var(--parchment);
}

.lb-x {
  top: 20px;
  right: 20px;
  font-size: 28px;
}

.lb-p {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-n {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-c {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 14px;
  color: rgba(191,179,164,0.5);
  letter-spacing: 0.2em;
}

.cta {
  background: linear-gradient(160deg, var(--green) 0%, #1E3A2A 60%, #162E22 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.25), transparent);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.15), transparent);
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cta-ornament span:first-child,
.cta-ornament span:last-child {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.4));
}

.cta-ornament span:last-child {
  background: linear-gradient(90deg, rgba(184,134,11,0.4), transparent);
}

.cta-ornament span:nth-child(2) {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(184,134,11,0.4);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--parchment-light);
  margin-bottom: 16px;
  font-weight: 300;
}

.cta p {
  font-size: 15px;
  color: rgba(242,235,217,0.7);
  margin-bottom: 36px;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r);
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  text-decoration: none;
}

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

.btn--light {
  background: var(--parchment-light);
  color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--light:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--green);
}

.btn--outline {
  background: transparent;
  color: rgba(242,235,217,0.85);
  border: 1px solid rgba(184,134,11,0.3);
}

.btn--outline:hover {
  border-color: rgba(184,134,11,0.6);
  color: var(--parchment-light);
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1px 0.65fr;
  gap: 44px;
  align-items: start;
}

.k-form h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 10px;
  font-weight: 300;
}

.k-form h3 em {
  font-style: italic;
  color: var(--green);
}

.k-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(184,134,11,0.2) 20%, rgba(184,134,11,0.2) 80%, transparent);
}

.k-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.k-block {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(184,134,11,0.08);
}

.k-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.k-block h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 400;
}

.kontakt-map {
  margin-top: 36px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.1);
  box-shadow: 0 2px 8px rgba(28,20,16,0.04), 0 8px 24px rgba(28,20,16,0.06);
}

.kontakt-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours tr {
  border-bottom: 1px solid rgba(184,134,11,0.06);
}

.hours tr:last-child {
  border-bottom: none;
}

.hours td {
  padding: 12px 0;
  font-size: 14px;
}

.hours td:first-child {
  color: var(--ink-dim);
}

.hours td:last-child {
  text-align: right;
  color: var(--ink-faint);
}

.hours .open td:last-child {
  color: var(--green);
  font-weight: 700;
}

.hours .today td {
  color: var(--red);
}

.hours .today td:last-child {
  color: var(--red);
  font-weight: 700;
}

.hours .today.open td:last-child {
  color: var(--green);
}

.c-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.c-row:last-of-type {
  margin-bottom: 0;
}

.c-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.c-icon svg {
  stroke: var(--gold);
}

.c-row .lbl {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  font-weight: 700;
  margin-bottom: 4px;
}

.c-row .val {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.c-row .val a {
  color: var(--green);
}

.c-row .val a:hover {
  color: var(--gold);
}

.form-intro {
  font-size: 14px;
  color: var(--ink-dim);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}

.form-group .optional {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-faint);
  font-size: 11px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Libre Baskerville', Baskerville, Georgia, serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--parchment-light);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--r);
  padding: 14px 18px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-ghost);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow), 0 2px 8px rgba(184,134,11,0.08);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 16px 30px;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.btn--submit svg {
  stroke: currentColor;
  flex-shrink: 0;
}

#contact-form .g-recaptcha {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .k-divider {
    width: auto;
    height: 1px;
    align-self: auto;
    background: linear-gradient(90deg, transparent, rgba(184,134,11,0.2), transparent);
    margin: 36px 0;
  }

  .kontakt-map iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer {
  background: linear-gradient(180deg, #1E3A2A 0%, #162E22 100%);
  color: var(--ink-ghost);
  padding: 56px 24px 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.2), transparent);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer h4 {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  color: var(--gold);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer p,
.footer a {
  font-size: 13px;
  color: var(--ink-ghost);
  line-height: 1.9;
}

.footer a:hover {
  color: var(--gold);
}

.footer-logo {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  color: rgba(250,247,240,0.6);
  text-align: center;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 11px;
  color: rgba(191,179,164,0.35);
  margin-top: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(184,134,11,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(191,179,164,0.3);
}

.footer-hours {
  margin-top: 8px;
  font-style: italic;
}

.footer-contact {
  text-align: right;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-inner > div:first-child {
    order: 2;
  }

  .footer-logo {
    order: 1;
  }

  .footer-contact {
    order: 3;
    text-align: center;
  }
}

.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 50%;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s, border-color 0.25s, color 0.25s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(28,20,16,0.08);
}

.to-top.v {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.to-top:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 20px 70px;
  }

  .hero-badges {
    gap: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    max-width: 100%;
  }

  section, section > div, section > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }

  .sec {
    padding: 56px 20px;
  }

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

.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, #1E3A2A 0%, var(--green) 50%, #1E3A2A 100%);
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(184,134,11,0.06) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 300;
  color: var(--parchment-light);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero .hero-sub {
  animation: none;
  opacity: 1;
}

.page-hero .hero-ornament {
  animation: none;
  opacity: 1;
}

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

.sale-card {
  background: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.1);
  transition: transform 0.5s cubic-bezier(.33,.0,.2,1), box-shadow 0.5s;
}

.sale-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(28,20,16,0.06),
    0 16px 48px rgba(28,20,16,0.1);
}

.sale-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.33,.0,.2,1);
}

.sale-card:hover > img {
  transform: scale(1.05);
}

.sale-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 400;
  padding: 24px 28px 0;
}

.sale-card__sub {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 28px;
  margin-bottom: 8px;
}

.sale-card > p:last-child {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
  padding: 0 28px 28px;
}