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

:root {
  --terra: #C2703F;
  --terra-dark: #A05530;
  --terra-light: #D4956A;
  --sand: #F5EDE3;
  --sand-light: #FBF7F2;
  --sand-dark: #E8DDD0;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(44,44,44,.08);
  --shadow-md: 0 4px 20px rgba(44,44,44,.1);
  --shadow-lg: 0 12px 40px rgba(44,44,44,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

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

/* ── Typography ── */
.section-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(194,112,63,.35);
}

.btn--primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(194,112,63,.45);
}

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

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

.btn--full { width: 100%; }

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

.header.scrolled {
  background: rgba(255,253,249,.95);
  backdrop-filter: blur(12px);
  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;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--terra);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.header:not(.scrolled) .logo-text { color: var(--white); }
.header:not(.scrolled) .logo-mark { background: var(--terra); color: var(--white); }

.logo-sub {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .05em;
  opacity: .8;
}

/* ── Nav ── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  transition: var(--transition);
}

.header.scrolled .nav-link { color: var(--charcoal-light); }

.nav-link:hover { color: var(--white); background: rgba(255,255,255,.12); }
.header.scrolled .nav-link:hover { color: var(--terra); background: rgba(194,112,63,.08); }

.nav-link--cta {
  background: var(--terra);
  color: var(--white) !important;
  border-radius: 50px;
  margin-left: 4px;
}

.nav-link--cta:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .nav-toggle { color: var(--charcoal); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #8B4513 0%, #C2703F 30%, #D4956A 60%, #E8B88A 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/15113069/pexels-photo-15113069.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: .18;
  mix-blend-mode: multiply;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.06) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}

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

.hero-tagline {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.hero-info-item svg { opacity: .7; }
.hero-info-item a:hover { color: var(--white); text-decoration: underline; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.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-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about-img-secondary img {
  width: 220px;
  height: 190px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background: var(--terra);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.about-text .section-title { margin-top: 4px; }

.about-text > p {
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

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

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature svg {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: .88rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

/* ── Menu ── */
.menu {
  padding: 100px 0;
  background: var(--sand);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: .9rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ── Specials ── */
.specials {
  padding: 100px 0;
  background: var(--cream);
}

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

.specials-content .section-title { margin-top: 4px; }

.specials-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.special-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.special-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(194,112,63,.3);
}

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

.special-item span {
  font-size: .88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.specials-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 500px;
}

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

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: var(--sand);
}

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

.visit-info .section-title { margin-top: 4px; }

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

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

.visit-detail svg {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.visit-detail span {
  font-size: .9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--terra);
  transition: var(--transition);
}

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

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.visit-map iframe {
  border-radius: var(--radius-lg);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact-text .section-title { margin-top: 4px; }

.contact-text > p {
  color: var(--charcoal-light);
  line-height: 1.75;
}

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

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

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

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

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,112,63,.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A090;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: #E8F5E9;
  border-radius: var(--radius);
  color: #2E7D32;
  font-weight: 500;
  margin-top: 16px;
}

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

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

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

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; max-width: 280px; }

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: .9rem;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.6;
}

.footer-contact svg { flex-shrink: 0; margin-top: 3px; opacity: .6; }
.footer-contact a:hover { color: var(--terra-light); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .82rem;
  opacity: .6;
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
  }

  .nav-list.open { right: 0; }

  .nav-link {
    color: var(--charcoal) !important;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-link:hover { background: var(--sand) !important; color: var(--terra) !important; }

  .nav-link--cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-grid,
  .specials-inner,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .about-img-secondary img {
    width: 180px;
    height: 160px;
  }

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

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

  .hero { padding: 100px 20px 60px; }
  .hero-info { gap: 16px; }
  .hero-info-item { font-size: .82rem; }

  .contact-form { padding: 28px; }

  .specials-image { min-height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
