:root {
  --ivory: #f5f0e7;
  --ink: #2b2c2d;
  --muted: #77736d;
  --line: #d2c9bb;
  --gold: #aa7c35;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100%;
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(170, 124, 53, 0.055);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

body::before { top: -21rem; right: -11rem; }
body::after { bottom: -24rem; left: -16rem; }

.page-shell {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.4rem, 5vw, 5.5rem) clamp(1.25rem, 2.5vw, 2.5rem);
}

.site-header { display: flex; align-items: flex-start; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

.brand-mark__inner {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--line);
}

.brand-mark__inner span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  transform: rotate(-45deg);
}

.brand-copy { display: grid; gap: 0.2rem; }
.brand-name { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.brand-type { color: var(--muted); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; }

.hero {
  display: grid;
  width: 100%;
  place-items: center;
  padding: clamp(4rem, 10vh, 8rem) 0;
}

.hero__content {
  width: min(100%, 49rem);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

h1 {
  max-width: 48rem;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-wrap: balance;
}

.gold-rule { width: 3rem; height: 1px; margin: 2.25rem auto; background: var(--gold); }

.intro {
  max-width: 39rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.9;
  text-wrap: balance;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 2.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact:hover,
.contact:focus-visible { border-color: var(--gold); color: var(--gold); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .page-shell { padding: 1.5rem 1.25rem 1.25rem; }
  .brand-mark { width: 2.7rem; height: 2.7rem; }
  .brand-mark__inner { width: 1.8rem; height: 1.8rem; }
  .brand-copy { gap: 0.1rem; }
  h1 { font-size: clamp(3.35rem, 16vw, 4.8rem); line-height: 0.92; }
  .hero { padding: 4.5rem 0; }
  .intro { max-width: 31rem; font-size: 0.88rem; line-height: 1.75; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
