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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845F;
  --sand: #F5E6D3;
  --sand-light: #FBF5ED;
  --sand-dark: #E8D5C0;
  --charcoal: #1E1A17;
  --charcoal-light: #3D352F;
  --cream: #FFF9F4;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

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

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(192, 96, 58, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--charcoal);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: var(--sand);
  color: var(--charcoal);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
}

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
  z-index: 1001;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nav-overlay-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 8px 24px;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}

.nav-overlay-link:hover {
  background: var(--sand);
  color: var(--terracotta);
}

.nav-overlay-cta {
  margin-top: 8px;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape--circle1 {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--sand);
  top: -60px;
  right: -80px;
  opacity: 0.7;
}

.hero-shape--circle2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.08;
  bottom: 120px;
  left: -40px;
}

.hero-shape--rect1 {
  width: 120px;
  height: 120px;
  background: var(--terracotta-light);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  top: 200px;
  left: 60px;
  transform: rotate(15deg);
}

.hero-shape--rect2 {
  width: 80px;
  height: 200px;
  background: var(--sand-dark);
  opacity: 0.5;
  border-radius: var(--radius-md);
  bottom: 80px;
  right: 60px;
  transform: rotate(-10deg);
}

.hero-shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid var(--terracotta);
  opacity: 0.08;
  top: 160px;
  right: 200px;
  transform: rotate(20deg);
}

.hero-shape--dot {
  width: 16px;
  height: 16px;
  background: var(--terracotta);
  border-radius: 50%;
  top: 300px;
  left: 20px;
  opacity: 0.4;
}

.hero-shape--dot2 {
  width: 24px;
  height: 24px;
  background: var(--sand-dark);
  border-radius: 50%;
  bottom: 200px;
  right: 160px;
  opacity: 0.6;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--terracotta-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-title-line1 {
  display: block;
  color: var(--terracotta);
}

.hero-title-line2 {
  display: block;
}

.hero-title-accent {
  display: block;
  font-size: 0.55em;
  color: var(--charcoal-light);
  font-weight: 700;
  font-style: italic;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.hero-info-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.hero-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.hero-image-frame {
  width: 420px;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(30, 26, 23, 0.15);
  position: relative;
}

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

.hero-image-accent {
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  bottom: -32px;
  left: -32px;
  z-index: -1;
  opacity: 0.2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 24px rgba(192, 96, 58, 0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(30, 26, 23, 0.08);
}

.btn--ghost:hover {
  box-shadow: 0 4px 16px rgba(30, 26, 23, 0.12);
}

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn--outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

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

/* ===== MARQUEE ===== */
.marquee {
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-item-dot {
  font-size: 0.7rem;
  opacity: 0.5;
  flex-shrink: 0;
  align-self: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.text-accent {
  color: var(--terracotta);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
  padding: 100px 24px;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-cat {
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  background: var(--sand);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.menu-cat:hover,
.menu-cat.active {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 26, 23, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 26, 23, 0.12);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terracotta);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-card-body {
  padding: 20px 24px 24px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.menu-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.menu-footer p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: var(--sand);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30, 26, 23, 0.12);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(30, 26, 23, 0.15);
  border: 6px solid var(--sand);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent-shape {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: -1;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand-dark);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 24px 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
}

.gallery-item--wide {
  grid-column: 1 / 6;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
  grid-column: 6 / 9;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 24px;
  background: var(--sand);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-info .section-tag {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-detail {
  display: flex;
  gap: 16px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--terracotta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.visit-detail p,
.visit-detail a {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 24px rgba(30, 26, 23, 0.1);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
}

.contact-cta-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -100px;
}

.contact-cta-bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  bottom: -80px;
  left: 10%;
  transform: rotate(20deg);
}

.contact-cta .container {
  position: relative;
  z-index: 1;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-cta-text .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.contact-cta-text .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 16px;
}

.contact-cta-text .text-accent {
  color: var(--sand);
}

.contact-cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 48px rgba(30, 26, 23, 0.2);
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.15);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

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

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
}

.form-success p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 72px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--sand);
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-nav strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--sand);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
}

.footer-contact svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 230, 211, 0.4);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    gap: 32px;
  }

  .hero-image-frame {
    width: 340px;
    height: 420px;
  }

  .about-grid {
    gap: 48px;
  }

  .contact-cta-inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

  .hero-info {
    align-items: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-frame {
    width: 280px;
    height: 340px;
  }

  .hero-shape--circle1 {
    width: 280px;
    height: 280px;
    right: -40px;
  }

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

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

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

  .visit-info .section-tag,
  .visit-info .section-title {
    text-align: center;
  }

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

  .contact-cta-text .section-title {
    text-align: center;
  }

  .contact-cta-desc {
    text-align: center;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-shape--circle1 {
    width: 200px;
    height: 200px;
  }

  .hero-shape--rect1,
  .hero-shape--triangle,
  .hero-shape--dot2 {
    display: none;
  }

  .menu {
    padding: 72px 20px;
  }

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

  .about {
    padding: 72px 20px;
  }

  .about-img-secondary {
    right: -16px;
    bottom: -24px;
  }

  .gallery {
    padding: 72px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .gallery-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

  .visit {
    padding: 72px 20px;
  }

  .contact-cta {
    padding: 72px 20px;
  }

  .contact-form {
    padding: 24px;
  }

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

  .footer {
    padding: 48px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-image-frame {
    width: 240px;
    height: 300px;
  }

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

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

  .menu-categories {
    gap: 6px;
  }

  .menu-cat {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery-item--large,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
