:root {
  --page: #ffffff;
  --ink: #242424;
  --muted: #5f6469;
  --line: #e7e7e7;
  --soft: #f7f7f5;
  --charcoal: #151515;
  --gold: #b49a56;
  --gold-dark: #7f6a34;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --font: "Avenir Next", Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
iframe,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(180, 154, 86, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: #111;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 74vh;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.015);
  animation: settle 1400ms ease-out both;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero__brand {
  position: absolute;
  left: max(24px, calc((100vw - 920px) / 2));
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero__logo {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.36));
}

.hero__name {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  margin: 8px 0 0;
  font-size: clamp(1rem, 1.75vw, 1.42rem);
  font-weight: 500;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.5vw, 48px);
  max-width: 920px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav a {
  position: relative;
  color: #282828;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:not(.site-nav__arrow)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__arrow {
  position: absolute;
  right: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #767676;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.site-nav__arrow:hover {
  background: var(--soft);
  color: var(--charcoal);
  transform: translateY(2px);
}

.site-nav__arrow svg {
  width: 22px;
  height: 22px;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: clamp(70px, 9vw, 112px) 24px;
}

.section--intro {
  padding-top: clamp(84px, 10vw, 124px);
  padding-bottom: clamp(88px, 11vw, 136px);
}

.section--compact {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 9vw, 118px);
  max-width: 920px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  max-width: 320px;
  margin: 0;
  color: #202020;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.copy {
  max-width: 560px;
  color: #474b50;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  font-weight: 500;
}

.copy p {
  margin: 0;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 46px;
  padding: 13px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  box-shadow: 0 12px 24px rgba(127, 106, 52, 0.18);
  transform: translateY(-2px);
}

.button--quiet {
  background: transparent;
  color: var(--charcoal);
}

.button--quiet:hover {
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section--location {
  border-bottom: 0;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  margin: 26px 0 4px;
  color: #343434;
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  color: #4d5256;
  font-weight: 500;
}

.contact-card a {
  transition: color 180ms ease;
}

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

.map-wrap {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.map-wrap:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 24px 54px;
  color: #777;
}

.footer p {
  margin: 20px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}

.social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #777;
  color: #fff;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social a:hover {
  background: var(--charcoal);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes settle {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.015);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 68vh;
  }

  .hero__image {
    min-height: 68vh;
  }

  .hero__brand {
    right: 24px;
    bottom: 34px;
    gap: 14px;
  }

  .hero__logo {
    width: 48px;
  }

  .site-nav__inner {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    min-height: 62px;
    padding-right: 74px;
  }

  .site-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 64px 24px;
  }

  h2 {
    max-width: 100%;
  }

  .social {
    justify-content: center;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
