:root {
  --foreground: #57534e;
  --surface: rgba(255, 255, 255, 0.78);
  --line-soft: rgba(254, 240, 138, 0.85);
  --shadow-card: 0 22px 50px rgba(214, 183, 71, 0.12);
  --shadow-hero: 0 24px 60px rgba(214, 183, 71, 0.16);
  --shadow-sun: 0 6px 18px rgba(234, 179, 8, 0.35);
  --max-content: 64rem;
  --max-header: 72rem;
  --radius-xl: 2rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, #fde68a 0%, #fef3c7 100%);
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(253, 224, 71, 0.7);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
}

.header-inner,
.main-content,
.legal-main {
  max-width: var(--max-header);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.brand-kicker {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(161, 98, 7, 0.8);
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.125rem;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pill-link,
.menu-button {
  border: 1px solid rgba(253, 224, 71, 0.8);
  background: rgba(254, 249, 195, 0.8);
  color: #57534e;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.pill-link:hover,
.pill-link:focus-visible,
.menu-button:hover,
.menu-button:focus-visible,
.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(252, 211, 77, 1);
  background: rgba(254, 240, 138, 0.9);
}

.menu-button {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  margin-top: 1rem;
  gap: 0.5rem;
}

.nav-mobile.is-open {
  display: grid;
}

.nav-mobile .pill-link {
  justify-content: flex-start;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
}

.hero {
  padding: 4rem 1rem 3.5rem;
}

.hero-card,
.section-card,
.footer-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.hero-card {
  max-width: var(--max-content);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(253, 224, 71, 0.8);
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-hero);
}

.hero-kicker {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.34em;
  color: rgba(161, 98, 7, 0.8);
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero-intro {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.hero-rule {
  width: 8rem;
  height: 1px;
  margin: 2rem auto 0;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
}

.hero-image-frame {
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(254, 240, 138, 0.8);
  border-radius: var(--radius-lg);
  background: #fefce8;
  box-shadow: inset 0 2px 8px rgba(120, 113, 108, 0.08);
}

.hero-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.stack {
  display: grid;
  gap: 1rem;
}

.main-content {
  max-width: var(--max-content);
}

.section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-card {
  width: 100%;
  border: 1px solid rgba(253, 224, 71, 0.8);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.section-card[id] {
  scroll-margin-top: 7rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading::before,
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
}

.section-heading::before {
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.7), transparent);
}

.section-heading::after {
  background: linear-gradient(270deg, rgba(253, 224, 71, 0.7), transparent);
}

.section-heading h2 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a16207;
}

.section-content,
.legal-content {
  display: grid;
  gap: 1rem;
  line-height: 1.5rem;
  white-space: pre-line;
}

.section-content p,
.legal-content p {
  margin: 0;
}

.info-list,
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li,
.timeline-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-list strong,
.timeline-list strong {
  font-weight: 600;
}

.sun-decoration {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  color: #facc15;
  filter: drop-shadow(var(--shadow-sun));
}

.hero + .sun-decoration {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.gallery-copy,
.pricing-copy {
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-button {
  display: block;
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: transparent;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(87, 83, 78, 0.2);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(87, 83, 78, 0.24);
}

.gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 300ms ease;
}

.gallery-button:hover .gallery-thumb,
.gallery-button:focus-visible .gallery-thumb {
  transform: scale(1.05);
}

.about-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-card,
.pricing-mobile-card,
.pricing-table-card {
  border: 1px solid rgba(254, 240, 138, 1);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.contact-card {
  background: rgba(254, 249, 195, 0.7);
}

.profile-image {
  display: block;
  flex-shrink: 0;
  width: 180px;
  height: auto;
  border: 1px solid rgba(254, 240, 138, 1);
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(87, 83, 78, 0.22);
}

.pricing-shell,
.pricing-mobile,
.contact-grid,
.legal-content {
  display: grid;
  gap: 1rem;
}

.pricing-mobile {
  gap: 0.75rem;
}

.pricing-mobile-card,
.pricing-table-card {
  background: rgba(255, 255, 255, 0.85);
}

.pricing-mobile-card {
  padding: 1rem;
}

.pricing-mobile-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-mobile-card dl {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.pricing-mobile-card .row,
.pricing-mobile-card .row,
.contact-list .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-mobile-card dt,
.pricing-table thead {
  color: #78716c;
}

.pricing-mobile-card dt {
  max-width: 10rem;
}

.pricing-mobile-card dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
}

.pricing-table-wrapper {
  display: none;
  overflow-x: auto;
}

.pricing-table-card {
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.pricing-table thead {
  background: rgba(245, 245, 244, 0.8);
}

.pricing-table th,
.pricing-table td {
  padding: 0.75rem 1rem;
}

.pricing-table th {
  font-weight: 600;
}

.pricing-table tbody tr {
  border-top: 1px solid rgba(254, 249, 195, 0.9);
}

.pricing-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.98);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(245, 245, 244, 0.4);
}

.contact-card {
  padding: 1.25rem;
}

.contact-kicker {
  margin: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(161, 98, 7, 0.8);
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.contact-list .row {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.contact-note {
  margin: 0;
  line-height: 1.65rem;
}

.map-frame {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 320px;
  border: 1px solid rgba(254, 240, 138, 1);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: rgba(254, 249, 195, 0.7);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.9rem;
  width: 100%;
  padding: 1.25rem;
  background: rgba(254, 249, 195, 0.7);
}

.map-consent-title,
.map-consent-copy {
  margin: 0;
}

.map-consent-title {
  margin: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(161, 98, 7, 0.8);
}

.map-consent-copy {
  max-width: 34ch;
  line-height: 1.6;
}

.map-consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 224, 71, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  padding: 0rem 0.5rem 1rem 0.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.map-consent-button:hover,
.map-consent-button:focus-visible {
  border-color: rgba(252, 211, 77, 1);
  background: rgba(254, 240, 138, 0.9);
  transform: translateY(-1px);
}

.site-footer {
  padding: 1.5rem 1rem 2.5rem;
}

.footer-card {
  max-width: var(--max-content);
  margin: 0 auto;
  border: 1px solid rgba(253, 224, 71, 0.7);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-card p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}

.text-link {
  color: #a16207;
  text-decoration: underline;
  text-decoration-color: #fde047;
  text-underline-offset: 0.15em;
}

.legal-main {
  max-width: var(--max-content);
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.legal-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content p + p {
  margin-top: 0.5rem;
}

.back-link {
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(28, 25, 23, 0.8);
  backdrop-filter: blur(4px);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 64rem;
  max-height: calc(100vh - 2rem);
  padding-top: 3.5rem;
}

.modal-image {
  width: 100%;
  max-height: calc(100vh - 5.5rem);
  height: auto;
  border: 1px solid rgba(254, 240, 138, 0.4);
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.modal-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-nav:hover,
.modal-nav:focus-visible {
  background: rgba(254, 240, 138, 0.95);
}

.modal-nav-prev {
  left: 0.75rem;
}

.modal-nav-next {
  right: 0.75rem;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  color: #57534e;
  cursor: pointer;
}

.italic {
  font-style: italic;
}

@media (max-width: 640px) {
  .modal-panel {
    padding-top: 3rem;
  }

  .modal-image {
    max-height: calc(100vh - 5rem);
  }

  .modal-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.75rem;
  }

  .modal-nav-prev {
    left: 0.4rem;
  }

  .modal-nav-next {
    right: 0.4rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }

  .hero-card {
    padding: 3rem 3.5rem;
  }

  .hero-image {
    height: 360px;
  }

  .section-card {
    padding: 2.25rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .info-list li,
  .timeline-list li {
    flex-direction: row;
    gap: 0;
  }

  .info-list strong,
  .timeline-list strong {
    width: 15rem;
    flex-shrink: 0;
  }

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

  .about-layout {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .profile-image {
    width: 200px;
  }

  .pricing-mobile {
    display: none;
  }

  .pricing-table-wrapper {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .map-frame {
    margin-top: 0.75rem;
  }

}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}
