:root {
  --bg-cream: #f8efe2;
  --bg-light: #fffaf3;
  --bg-deep: #1f1712;
  --bg-panel: rgba(255, 248, 238, 0.78);
  --text-main: #2d2018;
  --text-soft: #6e5848;
  --brand: #c46b2d;
  --brand-dark: #8f4516;
  --accent: #e3b45e;
  --line: rgba(71, 43, 24, 0.1);
  --shadow: 0 24px 60px rgba(76, 43, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(227, 180, 94, 0.38), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(196, 107, 45, 0.2), transparent 22%),
    linear-gradient(180deg, #fff8ef 0%, #f8efe2 42%, #fffaf3 100%);
}

h1,
h2,
h3,
.navbar-brand strong {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 96px 0;
}

.site-navbar {
  background: rgba(255, 250, 243, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(143, 69, 22, 0.08);
}

.navbar-brand {
  color: var(--text-main);
}

.navbar-brand small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(143, 69, 22, 0.28);
}

.nav-link {
  color: var(--text-main);
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-dark);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(143, 69, 22, 0.26);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 23, 18, 0.76), rgba(31, 23, 18, 0.42)),
    radial-gradient(circle at 20% 15%, rgba(227, 180, 94, 0.45), transparent 22%);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title,
.hero-tagline,
.hero-copy,
.metric-card,
.hero-card {
  color: #fff;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 0.7rem;
}

.hero-tagline {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(255, 247, 239, 0.88);
}

.hero-metrics .metric-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.metric-card strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.metric-card span {
  font-size: 0.92rem;
  color: rgba(255, 247, 239, 0.78);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-logo-panel {
  position: absolute;
  inset: 20px 90px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 248, 238, 0.18), rgba(255, 248, 238, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-logo-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: 24px;
}

.hero-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card-main {
  top: 28px;
  right: 18px;
  width: min(100%, 330px);
  padding: 2rem;
  background: linear-gradient(145deg, rgba(196, 107, 45, 0.95), rgba(143, 69, 22, 0.95));
}

.hero-card-main h2 {
  margin: 0.7rem 0;
  font-size: 2rem;
}

.hero-card-main p,
.hero-card-main li {
  color: rgba(255, 249, 243, 0.9);
}

.hero-card-main li + li {
  margin-top: 0.55rem;
}

.badge-label {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-note {
  left: 22px;
  bottom: 54px;
  max-width: 260px;
  padding: 1.2rem 1.3rem;
  background: rgba(255, 248, 238, 0.94);
  color: var(--text-main);
}

.hero-card-note span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero-card-note strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.plate {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.2) 32%, transparent 34%),
    radial-gradient(circle at 55% 55%, rgba(227, 180, 94, 0.88), rgba(196, 107, 45, 0.96));
  box-shadow: inset 0 0 0 20px rgba(255, 248, 238, 0.95), 0 24px 50px rgba(0, 0, 0, 0.22);
}

.plate-one {
  width: 250px;
  height: 250px;
  left: 70px;
  top: 15px;
}

.plate-two {
  width: 170px;
  height: 170px;
  right: 20px;
  bottom: 10px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading h2,
.showcase-section h2,
.about-panel h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-heading p,
.showcase-section p,
.about-panel p,
.cta-panel p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.service-card,
.menu-card,
.about-panel,
.cta-panel {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 2rem;
  background: rgba(255, 251, 246, 0.8);
}

.service-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
}

.icon-wrap {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(227, 180, 94, 0.24), rgba(196, 107, 45, 0.28));
  color: var(--brand-dark);
  font-weight: 800;
}

.showcase-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(227, 180, 94, 0.08) 100%);
}

.menu-card {
  min-height: 220px;
  padding: 1.8rem;
}

.menu-card span {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.menu-card p {
  margin: 0;
}

.card-warm {
  background: linear-gradient(180deg, #fff4e7, #f3d2b7);
}

.card-dark {
  background: linear-gradient(180deg, #35261d, #1f1712);
  color: #fff;
}

.card-dark p {
  color: rgba(255, 247, 239, 0.82);
}

.card-light {
  background: linear-gradient(180deg, #fffdf8, #efe5d6);
}

.card-accent {
  background: linear-gradient(180deg, #f0b866, #c46b2d);
  color: #fff;
}

.card-accent p {
  color: rgba(255, 250, 245, 0.9);
}

.about-panel {
  padding: 2.2rem;
  background: rgba(255, 251, 246, 0.9);
}

.benefit-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.benefit-list div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(196, 107, 45, 0.08);
}

.benefit-list strong {
  display: block;
  margin-bottom: 0.3rem;
}

.cta-panel {
  padding: 2.2rem;
  background: linear-gradient(180deg, #1f1712, #39281e);
  color: #fff;
}

.cta-panel p,
.cta-panel .form-label {
  color: rgba(255, 248, 238, 0.86);
}

.form-control {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-control:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(227, 180, 94, 0.72);
  box-shadow: 0 0 0 0.25rem rgba(227, 180, 94, 0.18);
}

.site-footer {
  padding: 1.3rem 0 2rem;
  color: var(--text-soft);
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-logo-panel {
    inset: 12px 56px 32px 12px;
  }

  .hero-card-main {
    right: 0;
    width: calc(100% - 1rem);
  }

  .plate-one {
    left: 10px;
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 72px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-logo-panel {
    position: relative;
    inset: auto;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .hero-card-main,
  .hero-card-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-card-note {
    margin-top: 1rem;
    max-width: none;
  }

  .plate-one {
    top: -8px;
    left: auto;
    right: 14px;
    width: 150px;
    height: 150px;
  }

  .plate-two {
    display: none;
  }
}
