:root {
  --bg: #090908;
  --bg-2: #12110f;
  --surface: #181613;
  --surface-2: #201b16;
  --text: #f7f0e6;
  --muted: #c7bdae;
  --dim: #938574;
  --gold: #d4a649;
  --gold-2: #f0c86a;
  --ember: #9d2f19;
  --line: rgba(212, 166, 73, 0.34);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 47, 25, 0.18), transparent 28rem),
    linear-gradient(180deg, #050505 0%, var(--bg) 45%, #0d0c0b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.domain-sale {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 24px;
  color: #100d09;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}

.domain-sale a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(16, 13, 9, 0.34);
  border-radius: 6px;
  color: #100d09;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  transition: background 180ms ease, transform 180ms ease;
}

.domain-sale a:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
}

.site-header::before {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 92px;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 0.78;
}

.brand-main {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(212, 166, 73, 0.16);
}

.brand-sub {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0;
  transform: translateX(36px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #efe6d8;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a,
.site-footer nav a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--gold-2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 190px max(24px, calc((100vw - var(--max)) / 2)) 104px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, rgba(9, 9, 8, 0), rgba(18, 17, 15, 1));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(690px, calc(100vw - 48px));
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.section-heading h2,
.craft-copy h2,
.visit-panel h2 {
  margin: 0;
  color: #fff9ef;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: 68px;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero-copy p {
  width: min(520px, 100%);
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #130f0b;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(212, 166, 73, 0.22);
}

.button-secondary {
  color: var(--gold-2);
  border: 1px solid rgba(212, 166, 73, 0.78);
  background: rgba(7, 7, 7, 0.28);
}

.button-secondary:hover {
  border-color: var(--gold-2);
  background: rgba(212, 166, 73, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.93) 22%, rgba(5, 5, 5, 0.34) 51%, rgba(5, 5, 5, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.32) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.scroll-cue {
  position: absolute;
  bottom: 35px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-2);
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
}

.menu-section {
  position: relative;
  z-index: 2;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 82px;
  background:
    radial-gradient(circle at 50% 12%, rgba(212, 166, 73, 0.1), transparent 20rem),
    linear-gradient(180deg, var(--bg-2), #11100f);
}

.section-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  font-size: 50px;
  line-height: 1.08;
}

.section-heading h2::after,
.craft-copy h2::after,
.visit-panel h2::after {
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 16px;
  content: "";
  background: var(--gold);
}

.section-heading h2::after {
  margin-right: auto;
  margin-left: auto;
}

.menu-visual {
  width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.menu-visual img {
  width: 100%;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(212, 166, 73, 0.22);
}

.menu-item {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  padding: 32px 34px;
  border-right: 1px solid rgba(212, 166, 73, 0.28);
  outline: none;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.menu-item:last-child {
  border-right: 0;
}

.menu-item:hover,
.menu-item:focus-visible,
.menu-item.is-active {
  background: linear-gradient(180deg, rgba(212, 166, 73, 0.1), rgba(212, 166, 73, 0.02));
}

.menu-item:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(240, 200, 106, 0.8);
}

.menu-item h3 {
  margin: 0;
  color: #fff2df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}

.menu-item h3::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  content: "";
  background: var(--gold);
}

.menu-item p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.menu-item strong {
  margin-top: auto;
  color: var(--gold-2);
  font-size: 18px;
}

.seo-copy {
  max-width: 860px;
  margin: 54px auto 0;
  padding: 34px 0 0;
  border-top: 1px solid rgba(212, 166, 73, 0.24);
  color: var(--muted);
  text-align: center;
}

.seo-copy h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: 0;
}

.seo-copy p {
  margin: 18px auto 0;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.68;
}

.craft-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.92) 36%, rgba(18, 17, 15, 0.98) 100%);
}

.craft-copy h2,
.visit-panel h2 {
  color: var(--gold);
  font-size: 48px;
  line-height: 1.08;
}

.craft-copy p {
  max-width: 450px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.craft-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: #090908;
}

.visit-image {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.1), rgba(9, 9, 8, 0.92)),
    url("storefront.png") center / cover;
  filter: saturate(0.88) brightness(0.8);
}

.visit-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 70px 76px;
  background:
    radial-gradient(circle at 0% 40%, rgba(157, 47, 25, 0.14), transparent 18rem),
    linear-gradient(90deg, #090908, #11100f);
}

.contact-note {
  max-width: 420px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  width: min(440px, 100%);
  gap: 16px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 166, 73, 0.34);
  border-radius: 6px;
  color: var(--text);
  background: rgba(7, 7, 7, 0.36);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  background: rgba(7, 7, 7, 0.48);
  box-shadow: 0 0 0 3px rgba(212, 166, 73, 0.14);
}

.wide {
  width: min(360px, 100%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 36px;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: var(--muted);
  background: #12110f;
}

.site-footer nav,
.visit-counter,
.site-footer small {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--dim);
  font-size: 13px;
}

.visit-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(212, 166, 73, 0.24);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(7, 7, 7, 0.28);
  font-size: 13px;
}

.visit-counter strong {
  color: var(--gold-2);
  font-size: 16px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, var(--max));
    gap: 18px;
    padding-top: 18px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
  }

  .hero {
    min-height: 700px;
    padding-top: 202px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 54px;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.64) 52%, rgba(5, 5, 5, 0.16) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.5) 100%);
  }

  .menu-list,
  .craft-section,
  .visit-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .menu-item {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 166, 73, 0.24);
  }

  .menu-item:last-child {
    border-bottom: 0;
  }

  .craft-section {
    gap: 34px;
  }

  .visit-image {
    min-height: 260px;
  }

  .visit-panel {
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
  }

  .site-footer {
    align-items: start;
  }

  .site-footer small {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .domain-sale {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    min-height: 78px;
    padding: 10px 16px;
  }

  .domain-sale a {
    width: min(220px, 100%);
  }

  .site-header {
    top: 78px;
  }

  .site-header::before {
    top: 78px;
  }

  .brand-main {
    font-size: 26px;
  }

  .brand-sub {
    font-size: 17px;
    transform: translateX(30px);
  }

  .hero {
    min-height: 680px;
    padding-top: 214px;
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy {
    width: 100%;
    max-width: 342px;
  }

  .hero-copy p {
    max-width: 342px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .section-heading h2,
  .craft-copy h2,
  .visit-panel h2 {
    font-size: 38px;
  }

  .menu-section {
    padding-top: 60px;
  }

  .menu-visual img {
    aspect-ratio: 1 / 0.72;
  }

  .menu-item {
    min-height: 0;
    padding: 28px 22px;
  }

  .seo-copy h3 {
    font-size: 28px;
  }

  .craft-section,
  .visit-panel {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-note {
    font-size: 17px;
  }
}

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