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

:root {
  --green-900: #0D1F12;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-400: #74C69D;
  --green-300: #95D5B2;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --gold-500: #E8A838;
  --gold-400: #F0BC5A;
  --gold-300: #F5CC7A;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* BACKGROUND DECORATIVE SHAPES */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.04;
}

.shape--circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--green-700);
  top: -200px;
  right: -150px;
}

.shape--circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gold-500);
  bottom: 20%;
  left: -100px;
}

.shape--rect-1 {
  width: 200px;
  height: 200px;
  background: var(--green-600);
  top: 40%;
  right: 5%;
  transform: rotate(45deg);
  border-radius: var(--radius-lg);
}

.shape--rect-2 {
  width: 120px;
  height: 300px;
  background: var(--gold-500);
  top: 60%;
  left: 3%;
  transform: rotate(-15deg);
  border-radius: var(--radius-md);
}

.shape--triangle-1 {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid var(--green-500);
  top: 75%;
  right: 10%;
  opacity: 0.03;
}

.shape--dot-cluster {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 8%;
  background-image: radial-gradient(circle, var(--green-700) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--green-800);
  line-height: 1.1;
}

.logo-accent {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo--light .logo-text {
  color: var(--white);
}

.logo--light .logo-accent {
  color: var(--gold-400);
}

/* NAV */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 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(5px, -5px);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}

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

.nav-menu a:hover {
  color: var(--green-700);
}

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

.nav-cta {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-700);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 30%, var(--green-700) 60%, var(--green-600) 100%);
  z-index: 0;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
}

.hero-shape--triangle {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid rgba(232, 168, 56, 0.15);
  top: 15%;
  right: 8%;
  transform: rotate(15deg);
}

.hero-shape--circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(232, 168, 56, 0.2);
  bottom: 20%;
  left: 5%;
}

.hero-shape--ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  top: 25%;
  left: 12%;
}

.hero-shape--dots {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  background-image: radial-gradient(circle, rgba(232, 168, 56, 0.4) 3px, transparent 3px);
  background-size: 14px 14px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  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: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--gold-500);
  display: block;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--green-900);
}

.btn--primary:hover {
  background: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.btn--outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-500);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

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

/* SECTION COMMON */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 16px;
}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--green-800);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--gold-500);
  display: block;
}

/* SPECIALTIES */
.specialties {
  padding: 100px 0;
  position: relative;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.specialty-card {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.specialty-card:hover {
  transform: translateY(-6px);
}

.card--green {
  background: var(--green-800);
  color: var(--white);
}

.card--green:hover {
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.3);
}

.card--gold {
  background: var(--gold-500);
  color: var(--green-900);
}

.card--gold:hover {
  box-shadow: 0 16px 48px rgba(232, 168, 56, 0.35);
}

.specialty-card-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.1;
}

.card--green .specialty-card-accent {
  background: var(--white);
}

.card--gold .specialty-card-accent {
  background: var(--green-900);
}

.specialty-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.card--gold .specialty-icon {
  background: rgba(27, 67, 50, 0.15);
}

.specialty-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.specialty-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* MENU SECTION */
.menu-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.menu-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(27, 67, 50, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232, 168, 56, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.menu-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-category {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--gold-500);
  display: inline-block;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

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

.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-800);
  font-size: 0.9rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.menu-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-600);
}

/* ABOUT */
.about {
  padding: 100px 0;
  position: relative;
}

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

.about-images {
  position: relative;
  min-height: 500px;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

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

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 6px solid var(--cream);
}

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

.about-accent-block {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.6;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--green-800);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* VISIT */
.visit {
  padding: 100px 0;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.visit-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(232, 168, 56, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.visit .section-label {
  color: var(--gold-400);
}

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

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}

.visit-info-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.visit-info-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visit-info-item a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--transition);
}

.visit-info-item a:hover {
  color: var(--gold-300);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

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

.map-placeholder p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.map-placeholder strong {
  color: var(--white);
  font-size: 1.1rem;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.contact-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.decor-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--green-100);
  top: 0;
  right: 0;
}

.decor-dots {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 60px;
  right: 60px;
  background-image: radial-gradient(circle, var(--green-300) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
}

.contact-content {
  max-width: 440px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 20px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.form-success strong {
  color: var(--green-800);
  font-size: 1.1rem;
}

.form-success p {
  color: var(--green-700);
  font-size: 0.9rem;
}

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

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

/* FOOTER */
.footer {
  background: var(--green-900);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(232, 168, 56, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links strong,
.footer-contact strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }

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

  .about-grid,
  .visit-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    min-height: 400px;
    max-width: 500px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    font-size: 1.3rem;
    color: var(--green-800);
  }

  .nav-cta {
    font-size: 1rem !important;
    padding: 14px 32px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .about-images {
    min-height: 350px;
  }

  .about-img-secondary {
    right: -10px;
    bottom: -15px;
  }

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

  .contact-form {
    padding: 28px;
  }

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

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

  .specialties,
  .menu-section,
  .about,
  .visit,
  .contact {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .specialty-card {
    padding: 28px 24px;
  }

  .menu-category {
    padding: 28px 24px;
  }

  .visit .map-placeholder {
    padding: 32px 24px;
  }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
