:root {
  --ink: #171711;
  --muted: #65645b;
  --gold: #c7a437;
  --gold-light: #eadb9a;
  --cream: #f8f5e9;
  --paper: #fffef9;
  --line: rgba(55, 51, 35, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 34px clamp(24px, 5vw, 80px) 40px;
  background:
    linear-gradient(rgba(255, 254, 249, 0.83), rgba(255, 254, 249, 0.94)),
    radial-gradient(circle at 82% 14%, #f4eabe 0, transparent 30%),
    var(--paper);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("assets/letterhead.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

.site-header,
.hero,
.contact-card {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 17px;
  background-image: url("assets/letterhead.png");
  background-repeat: no-repeat;
  background-size: 820px auto;
  background-position: center top;
  box-shadow: 0 7px 22px rgba(112, 91, 15, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.035em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.company-id {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero {
  width: min(790px, 100%);
  padding: clamp(72px, 11vh, 125px) 0 clamp(72px, 10vh, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #786923;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold);
  font-weight: 500;
}

.intro {
  max-width: 580px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-secondary:hover {
  color: #fff;
  background: var(--ink);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #76a366;
  box-shadow: 0 0 0 5px rgba(118, 163, 102, 0.13);
  animation: pulse 2s ease-in-out infinite;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid rgba(199, 164, 55, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 20px 70px rgba(54, 48, 18, 0.07);
  backdrop-filter: blur(12px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 16px;
}

.contact-item > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.label {
  margin-bottom: 2px;
  color: #9a7e28;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  overflow-wrap: anywhere;
  color: #37362f;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.contact-item a:hover {
  color: var(--gold);
}

.glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.glow-one {
  top: 23%;
  right: 7%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(199, 164, 55, 0.18);
}

.glow-two {
  top: 29%;
  right: 11%;
  width: 120px;
  height: 120px;
  background: rgba(234, 219, 154, 0.22);
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .page-shell::before {
    display: none;
  }

  .page-shell {
    padding: 22px 18px;
  }

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

  .brand-mark {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    background-size: 690px auto;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 7px;
  }

  .company-id {
    display: none;
  }

  .hero {
    padding: 76px 0 68px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.84;
  }

  .intro {
    margin-top: 28px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .button {
    flex: 1;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .contact-address {
    grid-column: auto;
  }
}

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