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

:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-mid: #1a2d4a;
  --gold: #c8a45a;
  --gold-light: #d4b76e;
  --gold-pale: #f0e2be;
  --cream: #faf6ee;
  --cream-dark: #f0e8d8;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #3a4f6a;
  --text-light: #6b7f96;
  --text-on-dark: #e8e0d0;
  --text-on-dark-muted: #a09880;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 164, 90, 0.15);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  border: 1.5px solid var(--gold);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(200, 164, 90, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
}

.hero-content {
  padding-right: var(--space-lg);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

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

.hero-dek {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 164, 90, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(200, 164, 90, 0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  top: -20px;
  right: -15px;
  width: 90px;
  height: 90px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.hero-stamp span {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}

/* HERO DIVIDER */
.hero-divider {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(200, 164, 90, 0.2);
}

.divider-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* SECTION COMMON */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}

.section-headline em {
  font-style: italic;
  color: var(--gold);
}

/* ABOUT */
.about {
  background: var(--cream);
  padding: var(--space-3xl) var(--space-lg);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  padding: var(--space-md) 0;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

.about-text p:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.sig-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
}

.sig-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* MENU */
.menu {
  background: var(--navy);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.menu-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.menu-category {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(200, 164, 90, 0.08);
  transition: border-color var(--transition);
}

.menu-category:hover {
  border-color: rgba(200, 164, 90, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(200, 164, 90, 0.12);
}

.category-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.category-subtitle {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.menu-items li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
}

.item-desc {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  margin-top: var(--space-xl);
  font-style: italic;
}

/* GALLERY */
.gallery {
  background: var(--cream);
  padding: var(--space-3xl) var(--space-lg);
}

.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.15);
}

.gallery-item--large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 5;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* VISIT */
.visit {
  background: var(--navy);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

.visit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.visit-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.visit-content {
  padding: var(--space-md) 0;
}

.visit-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.visit-content .section-headline {
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.detail-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 1rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.detail-value a {
  color: var(--text-on-dark);
  transition: color var(--transition);
}

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

.visit-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  height: 600px;
}

.visit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT */
.contact {
  background: var(--cream);
  padding: var(--space-3xl) var(--space-lg);
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(200, 164, 90, 0.08);
  border: 1px solid rgba(200, 164, 90, 0.2);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-md);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.05);
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-link {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.info-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.info-address {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.info-card--note {
  background: var(--navy);
}

.info-card--note h4 {
  color: var(--gold);
}

.info-card--note p {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid rgba(200, 164, 90, 0.1);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(200, 164, 90, 0.08);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

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

.nav-overlay .nav-links {
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.nav-overlay .nav-links a {
  font-size: 1.25rem;
  color: var(--text-on-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-dek {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-wrap {
    max-height: 400px;
  }

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

  .gallery-item--large {
    grid-column: span 12;
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 7;
  }

  .visit-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .visit-visual {
    height: 400px;
    order: -1;
  }

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

@media (max-width: 768px) {
  .header-inner {
    padding: var(--space-sm) var(--space-md);
  }

  .logo-wordmark {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links:not(.nav-overlay .nav-links) {
    display: none;
  }

  .hero {
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
    min-height: auto;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-img-accent {
    width: 120px;
    height: 120px;
    bottom: -15px;
    left: -10px;
  }

  .hero-stamp {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
  }

  .hero-stamp span {
    font-size: 0.4rem;
  }

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

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

  .gallery-item--large {
    grid-column: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 280px;
  }

  .hero-img-accent {
    width: 90px;
    height: 90px;
    bottom: -10px;
    left: -5px;
  }

  .hero-stamp {
    width: 55px;
    height: 55px;
  }

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

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .visit-visual {
    height: 280px;
  }
}
