:root {
  --color-primary: #4b2e2b;
  --color-primary-dark: #38211f;
  --color-secondary: #f5e9da;
  --color-accent: #c9a46c;
  --color-accent-soft: #e4cda7;
  --color-green: #6b8f71;
  --color-white: #ffffff;
  --color-text: #2d221f;
  --color-text-muted: #6f625c;
  --color-border: rgba(75, 46, 43, 0.12);
  --color-shadow: rgba(43, 27, 24, 0.12);
  --color-shadow-strong: rgba(43, 27, 24, 0.18);

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --container-width: 1200px;
  --header-height: 88px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fcf8f3;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-label,
.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-heading p,
.about-content p,
.contact-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(75, 46, 43, 0.16);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 248, 243, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 46, 43, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary), #6b433f);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(75, 46, 43, 0.18);
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.brand-location {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  position: relative;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-menu a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  box-shadow: 0 12px 24px rgba(75, 46, 43, 0.14);
}

.nav-cta:hover {
  background: var(--color-primary-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(75, 46, 43, 0.08);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #201412;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(24, 14, 12, 0.82) 0%,
      rgba(24, 14, 12, 0.62) 38%,
      rgba(24, 14, 12, 0.36) 68%,
      rgba(24, 14, 12, 0.18) 100%
    );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding: 5rem 0 4rem;
  color: var(--color-white);
}

.hero-content h1 {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-text {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  margin-top: 0.2rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 860px;
}

.highlight-card {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.highlight-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--color-white);
}

.highlight-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-section {
  background: linear-gradient(180deg, #fcf8f3 0%, #f7efe6 100%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(75, 46, 43, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 18px 40px var(--color-shadow);
}

.menu-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.menu-list {
  display: grid;
  gap: 1.2rem;
}

.menu-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(75, 46, 43, 0.08);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-list h4 {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.menu-list p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.menu-list span {
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px var(--color-shadow-strong);
}

.about-content {
  max-width: 620px;
}

.about-content > p {
  margin-bottom: 1rem;
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-points {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.about-point {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: #fffdfb;
  border: 1px solid rgba(75, 46, 43, 0.08);
  box-shadow: 0 12px 28px rgba(75, 46, 43, 0.08);
}

.about-point h3 {
  color: var(--color-primary);
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.about-point p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.gallery-section {
  background: linear-gradient(180deg, #f8f1e8 0%, #fcf8f3 100%);
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(75, 46, 43, 0.14);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.gallery-slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.gallery-arrow {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(75, 46, 43, 0.92);
  color: #ffffff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(75, 46, 43, 0.18);
}

.gallery-arrow:hover {
  background: #38211f;
  transform: scale(1.05);
}

.testimonials-section {
  padding: 7rem 0 15rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdfa 0%, #f8efe4 100%);
  border: 1px solid rgba(75, 46, 43, 0.08);
  box-shadow: 0 18px 36px rgba(75, 46, 43, 0.1);
}

.stars {
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
}

.testimonial-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.testimonial-card span {
  color: #8a7d76;
  font-size: 0.9rem;
}

.contact-section {
  background: #2f1c19;
  color: var(--color-white);
}

#contact {
  scroll-margin-top: 85px;
}

#about {
  scroll-margin-top: 110px;
}

#testimonials {
  scroll-margin-top: 110px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hidden {
  display: none;
}

.contact-map {
  margin-top: 1.2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.map-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 10, 9, 0.68);
  backdrop-filter: blur(6px);
}

.map-modal-content {
  position: relative;
  width: min(92vw, 980px);
  height: min(78vh, 680px);
  margin: 5vh auto 0;
  background: #f8f3ed;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.map-modal-frame {
  width: 100%;
  height: 100%;
}

.map-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.map-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(75, 46, 43, 0.9);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-modal-close:hover {
  transform: scale(1.05);
  background: #38211f;
}

.contact-content h2,
.contact-content p,
.contact-content .section-label,
.contact-item p,
.contact-item a,
.contact-item h3 {
  color: var(--color-white);
}

.contact-content p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

#open-map-trigger {
  cursor: pointer;
  transition: color 0.2s ease;
}

#open-map-trigger:hover {
  color: var(--color-accent-soft);
}

.contact-item a:hover {
  color: var(--color-accent-soft);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
}

.hours-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list span {
  color: rgba(255, 255, 255, 0.74);
}

.hours-list strong {
  font-size: 0.96rem;
  white-space: nowrap;
}

.contact-note {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.contact-note p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.site-footer {
  background: #1d1211;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.2rem 0 1.4rem;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-soft);
}

.footer-bottom {
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
  .hero-highlights,
  .menu-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-content {
    max-width: 100%;
  }

  .gallery-large {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 4.8rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 251, 247, 0.98);
    border: 1px solid rgba(75, 46, 43, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(75, 46, 43, 0.14);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-menu a {
  width: 100%;
  padding: 0.65rem 0;
  }
  
  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: 720px;
    padding: 6.5rem 0 4.5rem;
    color: var(--color-white);
  }

  .hero-highlights,
  .menu-grid,
  .testimonials-grid,

  .gallery-large {
    grid-column: span 1;
  }

  .about-image-wrap img {
    min-height: 380px;
  }

  .gallery-slide img {
    height: 460px;
  }

  .gallery-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .navbar {
    gap: 1rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-location {
    font-size: 0.74rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 9vw, 3.8rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .menu-card,
  .testimonial-card,
  .contact-card {
    padding: 1.5rem;
  }

  .hours-list li,
  .menu-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 2.4rem;
  }

  .gallery-slider {
  position: relative;
  gap: 0;
  }

  .gallery-track-wrapper {
  border-radius: 20px;
  }

  .gallery-slide img {
  height: 320px;
  }

  .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  z-index: 2;
  }

  .gallery-arrow-left {
  left: 10px;
  }

  .gallery-arrow-right {
  right: 10px;
  }

  .gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  }
 
  .hero {
  min-height: auto;
  }

    .hero-content {
  padding: 4.5rem 0 3rem;
  }

    .hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  }

    .hero-highlights {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  }

    .highlight-card {
  padding: 1rem 1rem;
  }

    .highlight-card:last-child {
  display: none;
  }

  .map-modal-content {
  width: 94vw;
  height: 84vh;
  margin: 4vh auto 0;
  border-radius: 20px;
  }

  .map-modal-close {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  top: 10px;
  right: 10px;
  }

  .testimonials-section {
  padding: 4.8rem 0 7rem;
  }

  .footer-links {
  flex-direction: column;
  gap: 0.8rem;
  }

  .footer-links a {
  width: 100%;
  }
}
