/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum-deep: #2D1B33;
  --plum: #5B2C6F;
  --plum-mid: #7D3C98;
  --plum-light: #A569BD;
  --plum-pale: #D7BDE2;
  --amber: #F39C12;
  --amber-light: #F5B041;
  --amber-glow: #FDEBD0;
  --amber-dark: #D68910;
  --cream: #FDF6E3;
  --cream-dark: #F9F0D8;
  --white: #FFFFFF;
  --dark: #1A1020;
  --text: #2C1E35;
  --text-light: #6B5B73;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(45, 27, 51, 0.12);
  --shadow-lg: 0 12px 48px rgba(45, 27, 51, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

/* ===== SECTION TITLES ===== */
.section-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.section-tag--light {
  color: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--plum-deep);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-subtitle--light {
  color: var(--plum-pale);
}

.text-gradient {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

.btn--amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243, 156, 18, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--plum-deep);
  border-color: var(--white);
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(45, 27, 51, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--plum-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: var(--transition);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--amber);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 40%, var(--plum-mid) 70%, #8E44AD 100%);
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.hero__shape--circle1 {
  width: 600px;
  height: 600px;
  background: var(--amber);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--circle2 {
  width: 300px;
  height: 300px;
  background: var(--amber-light);
  bottom: -80px;
  left: -60px;
  animation: float 6s ease-in-out infinite reverse;
}

.hero__shape--rect1 {
  width: 200px;
  height: 200px;
  background: var(--plum-light);
  top: 20%;
  left: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation: spin 20s linear infinite;
  opacity: 0.08;
}

.hero__shape--rect2 {
  width: 120px;
  height: 120px;
  background: var(--amber);
  bottom: 25%;
  right: 8%;
  border-radius: var(--radius);
  transform: rotate(20deg);
  animation: spin 15s linear infinite reverse;
  opacity: 0.1;
}

.hero__shape--tri {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid var(--amber-light);
  top: 15%;
  right: 15%;
  opacity: 0.07;
  animation: float 10s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero__title-accent {
  color: var(--amber);
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--amber);
  opacity: 0.4;
  border-radius: 4px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== FEATURES BAR ===== */
.features {
  background: var(--white);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.features__item:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.features__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.features__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum-deep);
  margin-bottom: 0.2rem;
}

.features__item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--amber);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  border-radius: var(--radius);
  z-index: 2;
  opacity: 0.9;
}

.about__image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 700px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__text {
  max-width: 520px;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__text p strong {
  color: var(--plum);
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--plum-pale);
}

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--amber);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ===== MENU ===== */
.menu {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.menu__bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.05;
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.menu__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu__tab {
  padding: 0.7rem 1.8rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.menu__tab:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.menu__tab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.menu__panels {
  position: relative;
}

.menu__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu__panel.active {
  display: block;
}

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

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.menu__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.menu__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.menu__card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.menu__card-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.menu__card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(243, 156, 18, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}

.menu__note {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 2.5rem;
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  margin-top: 3rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 27, 51, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.gallery__item--tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 500px;
}

.gallery__item:not(.gallery__item--tall) {
  min-height: 230px;
}

.gallery__item--wide {
  grid-column: span 7;
}

/* ===== VISIT ===== */
.visit {
  padding: 8rem 2rem;
  background: var(--white);
}

.visit__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.visit__detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.visit__detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.visit__detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum-deep);
  margin-bottom: 0.3rem;
}

.visit__detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.visit__detail a {
  color: var(--plum);
  transition: var(--transition);
}

.visit__detail a:hover {
  color: var(--amber);
}

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 450px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-mid) 100%);
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.06;
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.contact__container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__content {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__subtitle {
  color: var(--plum-pale);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum-pale);
}

.contact__field input,
.contact__field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.12);
}

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

.contact__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeIn 0.5s ease;
}

.contact__success.show {
  display: block;
}

.contact__success-icon {
  width: 72px;
  height: 72px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.contact__success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact__success p {
  color: var(--plum-pale);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 5rem 2rem 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links strong,
.footer__contact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--amber);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__container {
    gap: 3rem;
  }

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

  .gallery__item--tall {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 350px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item:not(.gallery__item--tall) {
    min-height: 200px;
  }

  .visit__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero__shape--circle1 {
    width: 350px;
    height: 350px;
  }

  .hero__shape--circle2 {
    width: 180px;
    height: 180px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .features__item {
    padding: 1rem;
  }

  .about {
    padding: 5rem 1.5rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap img {
    height: 450px;
  }

  .about__stats {
    gap: 1.5rem;
  }

  .menu {
    padding: 5rem 1.5rem;
  }

  .menu__tabs {
    gap: 0.4rem;
  }

  .menu__tab {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
  }

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

  .gallery {
    padding: 5rem 1.5rem;
  }

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

  .gallery__item--tall,
  .gallery__item--wide {
    grid-column: span 1;
    min-height: 250px;
  }

  .gallery__item:not(.gallery__item--tall) {
    min-height: 200px;
  }

  .visit {
    padding: 5rem 1.5rem;
  }

  .visit__map {
    min-height: 300px;
  }

  .contact {
    padding: 5rem 1.5rem;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.8rem;
  }

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

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

  .about__image-deco {
    display: none;
  }

  .about__image-accent {
    width: 80px;
    height: 80px;
  }

  .about__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
