*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wheat: #d4a853;
  --wheat-dark: #a67c2e;
  --crust: #6b3f1f;
  --crust-deep: #4a2a14;
  --flour: #faf6f0;
  --cream: #fff9f2;
  --ink: #2a1f14;
  --muted: #6b5d4f;
  --line: #e8ddd0;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Karla", system-ui, sans-serif;
  color: var(--ink);
  background: var(--flour);
  line-height: 1.6;
}

h1, h2, h3, .brand strong, .phone, .foot-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1060px, calc(100% - 2rem));
  margin: 0 auto;
}

.ribbon {
  background: var(--crust-deep);
  color: #e8d8c8;
  font-size: 0.76rem;
}

.ribbon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.ribbon a {
  color: var(--wheat);
  font-weight: 700;
}

.nav {
  background: var(--white);
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wheat), var(--wheat-dark));
  color: var(--crust-deep);
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.15rem;
  color: var(--crust);
}

.brand small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Karla", sans-serif;
}

.nav nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
  color: var(--muted);
}

.nav nav a:hover { color: var(--crust); }

.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 60% at 90% 20%, rgba(212, 168, 83, 0.3), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--flour) 100%);
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wheat-dark);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--crust);
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--wheat-dark);
}

.lead {
  max-width: 34rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: var(--crust);
  color: var(--white);
  font-weight: 700;
}

.btn:hover { background: var(--crust-deep); }

.btn.dark {
  background: var(--wheat-dark);
}

.block { padding: 3rem 0; }
.block.tint { background: var(--cream); }

.head { margin-bottom: 1.5rem; }

.head h2, .split h2, .contact h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--crust);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  border-bottom: 4px solid var(--wheat);
}

.block.tint .grid article { background: var(--flour); }

.grid h3 {
  font-size: 1.05rem;
  color: var(--crust);
  margin-bottom: 0.35rem;
}

.grid p {
  font-size: 0.92rem;
  color: var(--muted);
}

.band {
  background: var(--crust);
  color: var(--white);
  padding: 1.25rem 0;
}

.band-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.band strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--wheat);
}

.band span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split > div > p:not(.tag) {
  color: var(--muted);
  margin-top: 0.75rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--flour);
}

.card h3 {
  font-size: 1rem;
  color: var(--crust);
  margin-bottom: 0.65rem;
}

.card dl div {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.card dl div:last-child { border-bottom: none; }

.card dt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.card dd { font-size: 0.9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.phone {
  display: block;
  font-size: 1.85rem;
  color: var(--crust);
  margin: 0.5rem 0;
}

.mail {
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.mail:hover { color: var(--crust); }

.addr { color: var(--muted); line-height: 1.7; }

.box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
}

.box h3 {
  font-size: 1rem;
  color: var(--crust);
  margin-bottom: 0.5rem;
}

.box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.foot {
  background: var(--crust-deep);
  color: #d8c8b8;
  padding: 2rem 0 1rem;
}

.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.foot-name {
  font-size: 1.25rem;
  color: var(--wheat);
  margin-bottom: 0.35rem;
}

.foot h4 {
  font-family: "Karla", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

@media (max-width: 800px) {
  .nav nav { display: none; }
  .split, .contact-grid, .foot-cols, .band-row {
    grid-template-columns: 1fr;
  }
}
