/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #0d9488;
  --teal-dark:  #0f766e;
  --teal-light: #99f6e4;
  --slate:      #1e293b;
  --slate-mid:  #334155;
  --slate-light:#64748b;
  --cream:      #f8fafc;
  --white:      #ffffff;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
}

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

body {
  font-family: var(--sans);
  color: var(--slate);
  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; }
ul { list-style: none; }

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--slate);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--slate);
  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: 16px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--slate); }

.nav-logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--slate-light); }
.nav.scrolled .nav-links a:hover { color: var(--slate); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--slate); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13,148,136,0.85) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(30,41,59,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(15,118,110,0.6) 0%, transparent 50%),
    linear-gradient(160deg, #0f766e 0%, #1e293b 50%, #0d4f4f 100%);
  z-index: 0;
}

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

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

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

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

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

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

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

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

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

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  border: 4px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--teal);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(13,148,136,0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

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

.about-features {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--slate);
}

.about-features svg { flex-shrink: 0; }

/* ── Menu ── */
.menu { background: var(--white); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.menu-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.menu-card-img {
  overflow: hidden;
  height: 240px;
}

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

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

.menu-card-body {
  padding: 28px;
}

.menu-card-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}

.menu-card-body p {
  color: var(--slate-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--slate-light);
  font-size: 0.875rem;
  font-style: italic;
}

/* ── Market ── */
.market-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.market-text p {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.market-list {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.market-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--slate);
}

.market-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.market-images {
  position: relative;
  height: 560px;
}

.market-img-stack img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(0,0,0,0.15);
  z-index: 1;
}

.market-img-stack img:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 4px solid var(--cream);
  z-index: 2;
}

/* ── Visit ── */
.visit { background: var(--white); }

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.visit-info {
  background: var(--slate);
  padding: 64px 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-info .section-eyebrow { color: var(--teal-light); }
.visit-info .section-title { color: var(--white); }

.visit-details {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}

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

.visit-detail svg { flex-shrink: 0; margin-top: 2px; }

.visit-detail strong {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 4px;
}

.visit-detail p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.visit-detail a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.visit-detail a:hover { color: var(--teal-light); }

.visit-map {
  min-height: 400px;
  background: var(--slate-light);
}

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

.contact-text p {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.8;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--slate);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--teal);
}

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

.form-success p {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--slate);
}

/* ── Footer ── */
.footer {
  background: var(--slate);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  line-height: 1.7;
  font-size: 0.9375rem;
}

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

.footer-links strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.footer-links ul { display: grid; gap: 10px; }

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color 0.3s;
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .market-split,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images { min-height: 400px; order: -1; }
  .about-img-main img { height: 400px; }
  .about-img-float { right: 16px; bottom: -24px; }
  .about-badge { left: 16px; top: -16px; }

  .market-images { height: 400px; }
  .market-img-stack img:first-child { width: 220px; height: 300px; }
  .market-img-stack img:last-child { width: 200px; height: 160px; }

  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--slate);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  }

  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 1.125rem; }
  .nav-links a:hover { color: var(--white) !important; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }

  .section { padding: 72px 0; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-images { min-height: 300px; }
  .about-img-main img { height: 300px; }
  .about-img-float { display: none; }
  .about-badge { top: -12px; left: -8px; padding: 14px 16px; }
  .badge-number { font-size: 1.5rem; }
}
