:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f0f0f0;
  --accent-color: #d4af37;
  --text-dark: #222222;
  --text-light: #ffffff;
  --border-color: #d8d8d8;
  --muted: #e5e5e5;
  --card-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: #f8f8f8;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar__link { font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid var(--muted);
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo { display: flex; align-items: center; gap: 12px; text-transform: uppercase; }
.logo__mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.logo__mark--small { width: 36px; height: 36px; font-size: 0.9rem; }
.logo__text { display: grid; line-height: 1.1; }
.logo__name { font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: 0.08em; }
.logo__tag { font-size: 0.8rem; color: #555; }

.nav { display: flex; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav a { position: relative; padding: 4px 0; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.nav a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 46px;
  height: 38px;
  border: 1px solid var(--muted);
  background: #ffffff;
  border-radius: 6px;
  padding: 8px 9px;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.hero {
  position: relative;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero__text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 3vw + 1rem, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.hero__text .subhead { max-width: 560px; color: #dcdcdc; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent-color);
}
.eyebrow--dark { color: #2d2207; }

.hero__badge {
  justify-self: end;
  position: relative;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
}
.badge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.18);
  box-shadow: 0 0 0 14px rgba(255,255,255,0.03);
}
.badge__core {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #303030, #111);
  border: 2px solid var(--accent-color);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  color: var(--text-light);
  gap: 8px;
}
.badge__core strong { letter-spacing: 0.08em; }

.texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-size: 180px 180px;
}
.texture--hero {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 12%, transparent 12%),
    linear-gradient(225deg, rgba(255,255,255,0.05) 12%, transparent 12%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 10px);
  mix-blend-mode: screen;
}

.section {
  padding: 96px 0;
  background: #ffffff;
}
.section--muted { background: var(--secondary-color); }
.section--accent { background: var(--accent-color); color: #2f2507; }
.section--dark { background: var(--primary-color); color: var(--text-light); }

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.section__header--stacked { flex-direction: column; align-items: flex-start; }
.section__lead { color: #4a4a4a; max-width: 620px; }
.section__lead--light { color: #d6d6d6; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: #ffffff;
  padding: 22px 22px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}
.card header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card h3 { margin: 0; font-family: 'Oswald', sans-serif; letter-spacing: 0.03em; }
.price { font-weight: 700; color: var(--primary-color); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}
.split__text h2 { font-family: 'Oswald', sans-serif; letter-spacing: 0.02em; margin: 12px 0; }
.list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.list li { padding-left: 18px; position: relative; }
.list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.split__media {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.photo-frame {
  width: 100%;
  max-width: 420px;
  background: var(--secondary-color);
  padding: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}
.photo-frame__inner {
  height: 240px;
  border: 1px dashed var(--primary-color);
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  color: #444;
  background: repeating-linear-gradient(135deg, #fafafa 0 14px, #f0f0f0 14px 28px);
}
.accent-block {
  position: absolute;
  right: -12px;
  bottom: -18px;
  background: var(--accent-color);
  color: #2f2507;
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  box-shadow: var(--card-shadow);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section__cta { flex-shrink: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.form__row { display: grid; gap: 8px; margin-bottom: 16px; }
.form label { font-weight: 700; letter-spacing: 0.01em; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #3b3b3b;
  background: #0f0f0f;
  color: var(--text-light);
  font-size: 1rem;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--accent-color);
  border-color: var(--accent-color);
}
.form__actions { display: grid; gap: 8px; }
.form__note { color: #c9c9c9; font-size: 0.92rem; margin: 0; }
.form__error { color: #ffb3b3; margin: 8px 0 0; font-weight: 700; }
.is-invalid { border-color: #b63a3a !important; }

.contact-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  color: #e8e8e8;
}
.contact-card h3 { margin-top: 0; font-family: 'Oswald', sans-serif; }
.contact-card a { color: var(--accent-color); }
.hours { display: grid; gap: 4px; margin-top: 12px; font-size: 0.95rem; }

.footer {
  background: #111111;
  color: #cfcfcf;
  padding: 18px 0;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__links { display: flex; gap: 18px; font-weight: 700; }
.footer__links a { color: var(--accent-color); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--accent-color); color: #2f2507; box-shadow: 0 10px 18px rgba(0,0,0,0.18); }
.btn--ghost { border-color: var(--text-light); color: var(--text-light); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--outline { border-color: var(--primary-color); color: var(--primary-color); background: transparent; }
.btn--outline:hover { background: var(--primary-color); color: var(--text-light); border-color: var(--primary-color); }
.btn--dark { background: #1d1404; color: var(--accent-color); border-color: transparent; }

.callout .btn { flex-shrink: 0; }

.section--accent .btn--dark:hover { background: #0f0902; }

.section--dark .btn--accent:hover { box-shadow: 0 14px 22px rgba(0,0,0,0.35); }

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(1px);
}

.section--muted { border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }

.callout::before {
  content: '';
  width: 90px;
  height: 4px;
  background: #2f2507;
  display: block;
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: 72px 0 0 0; background: #ffffff; transform: translateY(-110%); transition: transform 200ms ease; box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
  .nav.open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: flex-start; padding: 24px; gap: 18px; }
  .nav__toggle { display: inline-flex; }
  .hero__content { grid-template-columns: 1fr; text-align: left; }
  .hero__badge { justify-self: start; margin-top: 24px; }
  .section__header, .callout { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header__wrap { padding: 14px 0; }
  .top-bar__content { flex-direction: column; gap: 4px; text-align: center; }
  .hero { padding: 82px 0 96px; }
  .card { padding: 18px; }
  .photo-frame__inner { height: 200px; }
  .callout::before { width: 68px; }
}
