:root {
  --color-bg: #fdfaf6;
  --color-bg-alt: #f5efe6;
  --color-bg-card: #ffffff;
  --color-primary: #5c8b6a;
  --color-primary-dk: #3e6349;
  --color-primary-lt: #7aab8a;
  --color-accent-gold: #c9a96e;
  --color-accent-rose: #d48a7a;
  --color-text: #2c2c2c;
  --color-text-muted: #7a7a7a;
  --color-border: #e8ddd4;
  --color-shadow: rgba(44, 44, 44, 0.08);
  --color-overlay: rgba(28, 36, 32, 0.55);
  --shadow-sm: 0 1px 4px rgba(44, 44, 44, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 44, 44, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 44, 44, 0.12);
  --shadow-xl: 0 16px 48px rgba(44, 44, 44, 0.16);
  --header-h: 60px;
}
@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
  }
}
[data-theme="dark"] {
  --color-bg: #1c2420;
  --color-bg-alt: #252e29;
  --color-bg-card: #2e3b34;
  --color-primary: #7db98f;
  --color-primary-dk: #5c8b6a;
  --color-primary-lt: #7db98f;
  --color-accent-gold: #d4b47a;
  --color-accent-rose: #e09d8d;
  --color-text: #ebe6df;
  --color-text-muted: #9a9590;
  --color-border: #3a4a40;
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-overlay: rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.45);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 1rem;
}
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl {
  margin: 0;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
a:hover {
  color: var(--color-primary-dk);
}
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  clip: auto;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 6rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent-gold);
  border: none;
  margin: 1rem auto 0;
  border-radius: 9999px;
}
.deco-flower {
  position: fixed;
  pointer-events: none;
  color: var(--color-primary);
  z-index: 0;
}
.deco-flower--bottom-right {
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2.75rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}
p {
  color: var(--color-text);
  line-height: 1.8;
}
p + p {
  margin-top: 1rem;
}
.text-muted {
  color: var(--color-text-muted);
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--color-primary);
}
.eyebrow {
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.75rem;
  }
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-top: 1rem;
  line-height: 1.8;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal--delay-5 {
  transition-delay: 0.5s;
}
.reveal--delay-6 {
  transition-delay: 0.6s;
}
.reveal--left {
  transform: translateX(-24px);
}
.reveal--left.is-visible {
  transform: none;
}
.reveal--right {
  transform: translateX(24px);
}
.reveal--right.is-visible {
  transform: none;
}
.reveal--fade {
  transform: none;
}
.reveal--fade.is-visible {
  transform: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(2deg);
  }
  66% {
    transform: translateY(4px) rotate(-1deg);
  }
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}
.float-anim--slow {
  animation-duration: 9s;
}
.float-anim--offset {
  animation-delay: -3s;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.page-transition {
  animation: pageIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--fade {
    opacity: 1;
    transform: none;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--color-bg) 95%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-primary);
  flex-shrink: 0;
}
.site-logo:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-logo .logo-icon svg {
  color: var(--color-primary);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-logo:hover .logo-icon svg {
  transform: rotate(15deg) scale(1.05);
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-logo .logo-text-top {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.site-logo .logo-text-bottom {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
@media (max-width: 1023px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }
  .site-nav.is-open {
    transform: none;
  }
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }
}
.nav-link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 9999px;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}
@media (max-width: 1023px) {
  .nav-link {
    font-size: 1.5rem;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  color: var(--color-text-muted);
  transition: color 0.15s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.theme-toggle:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}
.theme-toggle .icon-moon {
  display: none;
}
.theme-toggle .icon-sun {
  display: block;
}
[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}
.nav-toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--color-text);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.hamburger {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger::before {
  top: -7px;
}
.hamburger::after {
  top: 7px;
}
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}
body {
  padding-top: var(--header-h);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.15s cubic-bezier(0.22, 1, 0.36, 1), transform 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:active {
  transform: scale(0.98);
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(92, 139, 106, 0.3);
}
.btn--primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  box-shadow: 0 4px 16px rgba(92, 139, 106, 0.4);
  color: #fff;
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
  padding-inline: 1rem;
}
.btn--ghost:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}
.btn--lg {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}
.btn--sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}
.btn--full {
  width: 100%;
}
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-overlay) 0%, rgba(28, 36, 32, 0.3) 60%, transparent 100%);
}
.hero.is-loaded .hero__bg {
  transform: scale(1);
}
.hero__deco {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  color: #fff;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__deco {
    right: 5%;
    bottom: 5%;
    opacity: 0.08;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .hero__content {
    padding-block: 6rem;
  }
}
.hero__eyebrow {
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero__heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.hero__subheading {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.25rem;
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@media (min-width: 1024px) {
  .hero__subheading {
    font-size: 1.25rem;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}
.hero__btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}
.hero__scroll svg {
  animation: bounceDown 2s ease-in-out infinite;
}
.hero--gradient .hero__bg {
  background: linear-gradient(135deg, #3e6349 0%, #5c8b6a 40%, #7aab8a 100%);
}
.hero--gradient .hero__bg::after {
  display: none;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card.is-visible {
  opacity: 1;
  transform: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-lt);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-primary);
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: #fff;
}
.service-card__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.service-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-preview-grid {
    gap: 1.25rem;
  }
}
.gallery-preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-alt);
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-preview-card.is-visible {
  opacity: 1;
  transform: none;
}
.gallery-preview-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-preview-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(28, 36, 32, 0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-preview-card__name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.gallery-preview-card__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-preview-card:hover .gallery-preview-card__img {
  transform: scale(1.06);
}
.gallery-preview-card:hover .gallery-preview-card__overlay {
  background: linear-gradient(to top, rgba(28, 36, 32, 0.85) 0%, rgba(28, 36, 32, 0.1) 60%);
}
.gallery-preview-card:focus-within {
  outline: 2px solid var(--color-primary);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.badge--green {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.badge--gold {
  background: color-mix(in srgb, var(--color-accent-gold) 15%, transparent);
  color: var(--color-accent-gold);
  border: 1px solid color-mix(in srgb, var(--color-accent-gold) 30%, transparent);
}
.urgency-banner {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.urgency-banner.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 768px) {
  .urgency-banner {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}
.urgency-banner__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.urgency-banner__heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.urgency-banner__text {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: 1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.filter-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary-lt);
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.filter-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(92, 139, 106, 0.3);
}
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .gallery-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-categories {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  cursor: pointer;
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card.is-visible {
  opacity: 1;
  transform: none;
}
.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(28, 36, 32, 0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
}
.category-card__name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.category-card__empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  background: var(--color-bg-alt);
}
.category-card:hover .category-card__img {
  transform: scale(1.07);
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(28, 36, 32, 0.9) 0%, rgba(28, 36, 32, 0.1) 65%);
}
.category-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.photo-grid {
  columns: 2;
  column-gap: 0.75rem;
}
@media (min-width: 768px) {
  .photo-grid {
    columns: 3;
    column-gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .photo-grid {
    columns: 4;
  }
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
@media (min-width: 768px) {
  .photo-item {
    margin-bottom: 1rem;
  }
}
.photo-item__img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 8px;
}
.photo-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0);
  border-radius: 8px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-item__zoom-icon {
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-item:hover .photo-item__img {
  transform: scale(1.03);
}
.photo-item:hover .photo-item__overlay {
  background: rgba(28, 36, 32, 0.3);
}
.photo-item:hover .photo-item__zoom-icon {
  opacity: 1;
  transform: scale(1);
}
.photo-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.gallery-empty {
  text-align: center;
  padding: 5rem 1.5rem;
  color: var(--color-text-muted);
}
.gallery-empty .gallery-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.gallery-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.gallery-breadcrumb a {
  color: var(--color-text-muted);
}
.gallery-breadcrumb a:hover {
  color: var(--color-primary);
}
.gallery-breadcrumb a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.gallery-breadcrumb .sep {
  opacity: 0.4;
}
.gallery-breadcrumb .current {
  color: var(--color-text);
  font-weight: 500;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__close {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox__close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.lightbox__prev,
.lightbox__next {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.lightbox__prev {
  left: 1rem;
}
.lightbox__next {
  right: 1rem;
}
.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 80px);
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s cubic-bezier(0.22, 1, 0.36, 1), transform 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox__img.is-loading {
  opacity: 0;
  transform: scale(0.96);
}
.lightbox__video {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 8px;
}
.lightbox__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lightbox__loader {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-info.is-visible {
  opacity: 1;
  transform: none;
}
.contact-block__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}
.contact-block__value {
  font-size: 1.125rem;
  color: var(--color-text);
  font-style: normal;
}
.contact-block__value a {
  color: var(--color-text);
  text-decoration: none;
}
.contact-block__value a:hover {
  color: var(--color-primary);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}
.hours-table tr:last-child {
  border: none;
}
.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.hours-table td:first-child {
  color: var(--color-text-muted);
  width: 55%;
}
.hours-table td:last-child {
  font-weight: 500;
  text-align: right;
}
.hours-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.contact-cards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-map.is-visible {
  opacity: 1;
  transform: none;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}
@media (min-width: 1024px) {
  .contact-map iframe {
    height: 380px;
  }
}
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-form.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1024px) {
  .contact-form {
    padding: 2.5rem;
  }
}
.contact-form__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.12);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.field-error {
  font-size: 0.75rem;
  color: #d94f4f;
  margin-top: 0.25rem;
  display: none;
}
.form-field.has-error .field-error {
  display: block;
}
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}
.form-message.is-success {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary-dk);
  border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
  display: block;
}
.form-message.is-error {
  background: rgba(217, 79, 79, 0.1);
  color: #c0392b;
  border: 1px solid rgba(217, 79, 79, 0.25);
  display: block;
}
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.footer-brand .site-logo--footer {
  margin-bottom: 1rem;
}
.footer-brand .logo-text-bottom {
  font-size: 1.125rem;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-top: 0.75rem;
}
.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact address p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-contact address a {
  color: var(--color-text-muted);
}
.footer-contact address a:hover {
  color: var(--color-primary);
}
.footer-accepts-cards {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-list .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.hours-list .hours-row dt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.hours-list .hours-row dd {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  margin-left: -0.75rem;
}
.social-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.social-link:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}
.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.footer-link:hover {
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 1.25rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}
.certificates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .certificates-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.certificate-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.certificate-card.is-visible {
  opacity: 1;
  transform: none;
}
.certificate-card__img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.certificate-card:hover .certificate-card__img {
  transform: scale(1.02);
}
.certificate-card__caption {
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}
.about-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.about-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-text.is-visible {
  opacity: 1;
  transform: none;
}
.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.about-text .about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-image.is-visible {
  opacity: 1;
  transform: none;
}
.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-accent-gold);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
}
.page-hero {
  background: var(--color-bg-alt);
  padding-block: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-hero {
    padding-block: 5rem 4rem;
  }
}
.page-hero .page-hero__deco {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  color: var(--color-primary);
  opacity: 0.05;
  pointer-events: none;
}
