*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cocoa: #4a2c1a;
  --amber: #c97b2a;
  --cream: #f7f1e8;
  --paper: #fbf8f3;
  --ink: #241910;
  --muted: #6d5c4d;
  --line: rgba(74, 44, 26, 0.14);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3, .brand strong, .phones a, .foot-brand, .note-title {
  font-family: "Literata", Georgia, serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--cocoa);
  color: #f0d5a8;
  font-family: "Literata", Georgia, serif;
  font-size: 1.25rem;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong { font-size: 1.2rem; }

.brand small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 700;
}

.nav nav a:hover { color: var(--amber); }

.call {
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(201, 123, 42, 0.22), transparent 40%),
    linear-gradient(160deg, #3a2214 0%, #4a2c1a 55%, #6a3f22 100%);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0d5a8;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: #f0d5a8;
}

.lead {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.solid {
  background: #f0d5a8;
  color: var(--cocoa);
}

.btn.solid.dark {
  background: var(--cocoa);
  color: var(--white);
}

.btn.line {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.6rem;
  animation: up 0.85s ease both;
}

@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.note-label {
  color: #f0d5a8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.note-title {
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.hero-note p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.legal {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.7rem 0;
}

.section { padding: 4.6rem 0; }

.sec-head { margin-bottom: 2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.sec-head h2,
.split h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grid article {
  background: var(--white);
  border-top: 3px solid var(--amber);
  border-radius: 0 0 16px 16px;
  padding: 1.3rem;
  transition: transform 0.25s ease;
}

.grid article:hover { transform: translateY(-3px); }

.grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--cocoa);
}

.grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.band {
  background: var(--cream);
  padding: 1.6rem 0;
}

.band-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.band strong {
  display: block;
  font-family: "Literata", Georgia, serif;
  font-size: 1.7rem;
  color: var(--cocoa);
}

.band span {
  color: var(--muted);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.split p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel {
  background: var(--cocoa);
  color: var(--white);
  border-radius: 20px;
  padding: 1.55rem;
}

.panel h3 {
  color: #f0d5a8;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.panel dl { display: grid; gap: 0.85rem; }

.panel dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
}

.contact {
  background:
    linear-gradient(180deg, rgba(201, 123, 42, 0.08), transparent),
    var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.85rem 0 0.6rem;
}

.phones a {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--cocoa);
}

.mail {
  display: inline-block;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 1rem;
  word-break: break-all;
}

.addr {
  color: var(--muted);
  line-height: 1.7;
}

.box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
}

.box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--cocoa);
}

.box p {
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.foot {
  background: #1a120c;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.4rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.foot h4 {
  font-family: "Figtree", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0d5a8;
  margin-bottom: 0.55rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .nav nav,
  .call { display: none; }

  .hero-grid,
  .grid,
  .band-row,
  .split,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
