:root {
  --accent: #1b4d32;
  --accent-gold: #c5a059;
  --text: #222;
  --muted: #5c5c5c;
  --top-bg: #f0f0f0;
  --nav-bg: #fff;
}

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

body {
  margin: 0;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--accent);
}

.top-bar {
  background: var(--top-bg);
  color: var(--muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid #e0e0e0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social {
  display: inline-flex;
  gap: 0.35rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 2px;
  background: #ddd;
  color: var(--muted);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
}

.top-tagline {
  font-weight: 600;
  color: #444;
}

.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.top-bar-right a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
}

.top-bar-right a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--nav-bg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-block;
  line-height: 0;
}

.brand-logo {
  height: auto;
  max-height: 88px;
  width: auto;
  max-width: min(220px, 55vw);
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.is-active {
  color: var(--accent-gold);
}

.hero {
  position: relative;
  min-height: min(70vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background-color: #1a1a1a;
  background-image: url("main kitchen.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero h1 {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  font-weight: 400;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.85rem 1.75rem;
  background: var(--accent-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background: #b08d4a;
  color: #fff;
}

.btn-cta:active {
  transform: translateY(1px);
}

.section {
  max-width: 900px;
  margin: 2.5rem auto;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.section-muted {
  background: #fafafa;
}

.section h2 {
  margin-top: 0;
  font-family: "Lora", Georgia, serif;
  color: var(--accent);
}

@media (max-width: 720px) {
  .top-bar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    justify-content: flex-start;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
