@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,600;1,300&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --o: #C8521A;
  --o2: #A33E0E;
  --bg: #F8F5F0;
  --dark: #18130E;
  --mid: #6B5E52;
  --line: rgba(24,19,14,0.1);
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--o);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--mid);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .15s;
  border-radius: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}
.nav-links a.active {
  font-weight: 500;
}

.nav-tel {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--o);
  padding-bottom: 1px;
  transition: color .15s;
}
.nav-tel:hover { color: var(--o); }

/* ── TYPO HELPERS ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: .8rem;
}

h1, h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h1 i, h2 i { font-style: italic; color: var(--o); }

p.lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--o); }
.btn-ghost {
  background: transparent;
  color: var(--mid);
  border-bottom: 1px solid currentColor;
  padding: 0 0 1px;
}
.btn-ghost:hover { color: var(--dark); }

/* ── DIVIDER LINE ── */
hr { border: none; border-top: 1px solid var(--line); }

/* ── FOOTER ── */
footer {
  padding: 24px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mid);
}
footer a { color: var(--mid); text-decoration: none; }
footer a:hover { color: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
}
