:root {
  --bg: #f6f0e6;
  --bg-soft: #efe5d3;
  --text: #1f1a16;
  --muted: #5d5348;
  --surface: #ffffff;
  --espresso: #2a1f18;
  --charcoal: #161311;
  --gold: #b08a47;
  --gold-soft: #d4b06d;
  --line: rgba(176, 138, 71, 0.35);
  --shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fff8ef 0%, var(--bg) 40%, #ece0cc 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 19, 17, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(176, 138, 71, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.25rem;
}

.brand {
  color: #f5ebd8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--gold-soft);
  font-size: 0.9em;
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(176, 138, 71, 0.35);
  border-radius: 8px;
  background: transparent;
  color: #f7efe2;
  font-size: 1.25rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 0 1rem;
}

.nav-links a {
  color: #f7efe2;
  position: relative;
  width: fit-content;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links.open {
  display: flex;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(105deg, rgba(18, 14, 12, 0.88), rgba(18, 14, 12, 0.52)), url("../images/hero-gavel.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 19, 15, 0.8), rgba(26, 19, 15, 0.3));
  z-index: -1;
}

.hero-content {
  color: #f6ecda;
  padding: 4rem 0;
  max-width: 710px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.1rem, 6.2vw, 4.1rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--espresso);
}

h3 {
  font-size: clamp(1.3rem, 3.8vw, 1.95rem);
  color: var(--espresso);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero p {
  color: #efe3cf;
  font-size: 1.09rem;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  border: 1px solid transparent;
  padding: 0.76rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-primary {
  color: #1b140f;
  background: linear-gradient(135deg, #c39a53, #a67a3c);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d0aa67, #b18546);
  transform: translateY(-1px);
}

.btn-outline {
  color: #f2e6d5;
  border-color: rgba(212, 176, 109, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--gold-soft);
  background: rgba(212, 176, 109, 0.1);
}

.section {
  padding: clamp(3.3rem, 8vw, 6rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: linear-gradient(160deg, #fffdf9, #f9f1e4);
  border: 1px solid rgba(176, 138, 71, 0.23);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(35, 22, 10, 0.06);
}

.card p,
.card li {
  color: #564b40;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(176, 138, 71, 0.25);
}

.feature-list li:last-child {
  border-bottom: none;
}

.media-block {
  display: grid;
  gap: 1.5rem;
}

.media-block img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.86) contrast(1.05);
}

.strip {
  background: linear-gradient(120deg, #201710, #352619);
  color: #f1e8d8;
  border-top: 1px solid rgba(176, 138, 71, 0.5);
  border-bottom: 1px solid rgba(176, 138, 71, 0.5);
}

.strip p {
  color: #f1e8d8;
  margin: 0;
}

.strip .container {
  padding: 1rem 0;
}

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.2rem 0;
  color: #4f4338;
  font-style: italic;
}

.contact-box {
  background: linear-gradient(145deg, #271d16, #181210);
  color: #f4ead8;
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid rgba(212, 176, 109, 0.4);
}

.contact-box p,
.contact-box a {
  color: #f4ead8;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #30271f;
}

input,
textarea {
  width: 100%;
  padding: 0.76rem 0.9rem;
  border: 1px solid rgba(95, 74, 46, 0.35);
  border-radius: 10px;
  background: #fffdf8;
  font: inherit;
  color: #2c251e;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.map-wrap {
  border: 1px solid rgba(176, 138, 71, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}

.faq details {
  border: 1px solid rgba(176, 138, 71, 0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  background: #fffcf6;
}

.faq details + details {
  margin-top: 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #302519;
}

.site-footer {
  background: #130e0c;
  color: #d9ccb6;
  border-top: 1px solid rgba(176, 138, 71, 0.36);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #e6d9c3;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 780px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1rem;
  }

  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-block {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
