:root {
  --ink: #f3f0ea;
  --muted: #b9b1a8;
  --line: rgba(205, 166, 122, 0.22);
  --paper: #0c0f10;
  --soft: #151a1b;
  --copper: #c6925f;
  --copper-dark: #9d6838;
  --night: #080a0b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 8%, rgba(198, 146, 95, 0.12), transparent 28%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(8, 10, 11, 0.92);
  border-bottom: 1px solid rgba(198, 146, 95, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-full {
  display: block;
}

.brand strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(243, 240, 234, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
}

nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 3px;
  border: 1px solid rgba(198, 146, 95, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  width: 36px;
  height: 30px;
  border: 0;
  color: rgba(243, 240, 234, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--copper);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--copper-dark);
}

.hero {
  min-height: min(720px, calc(100vh - 86px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 31%, rgba(198, 146, 95, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.98) 0%, rgba(8, 10, 11, 0.88) 42%, rgba(8, 10, 11, 0.58) 72%, rgba(8, 10, 11, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.76), rgba(8, 10, 11, 0.42));
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.hero-logo {
  width: clamp(260px, 34vw, 520px);
  height: auto;
  object-fit: contain;
  margin: 0 auto 26px;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.24rem;
}

.hero-copy {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--white);
  font-weight: 650;
}

.hero-note {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  justify-content: center;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.button.secondary.dark {
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  max-width: 660px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 146, 95, 0.56);
}

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

.feature-card div {
  padding: 24px;
}

.feature-card span {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 8px;
  text-transform: uppercase;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #090c0d, #151a1b);
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps div {
  min-height: 138px;
  padding: 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--copper);
  text-transform: uppercase;
}

.steps span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.image-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  min-height: 220px;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.about-copy {
  max-width: 760px;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy .team-line {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 800;
}

.team-block {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.team-block .team-title {
  margin: 0;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-block strong,
.team-block span {
  display: block;
}

.team-block strong {
  color: var(--ink);
  font-size: 1rem;
}

.team-block span {
  margin-top: 4px;
  color: var(--muted);
}

.about-final {
  margin-top: 28px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 850;
}

.quote-panel {
  margin: 0;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-top: 4px solid var(--copper);
}

.quote-panel span {
  display: block;
  color: var(--copper);
  font-size: 5rem;
  line-height: 0.72;
}

.quote-panel p {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 850;
  line-height: 1.1;
}

.quote-panel a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sustainability {
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.2), rgba(198, 146, 95, 0.06)),
    #101415;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sustainability .section-heading {
  width: min(900px, 100%);
}

.action-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.action-copy {
  max-width: 760px;
}

.action-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.action-panel {
  padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.action-panel strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.action-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.dark {
  color: var(--ink);
  border-color: rgba(198, 146, 95, 0.34);
  background: transparent;
}

.button.dark:hover {
  border-color: var(--copper);
  color: var(--copper-dark);
  background: rgba(185, 120, 66, 0.08);
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: #12191b;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.15fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand .brand-logo {
  filter: none;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(220px, 1fr);
  gap: 24px;
  font-size: 0.92rem;
}

.footer-contact strong,
.footer-contact a {
  display: block;
}

.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-contact address {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.hiestand-logo {
  width: min(260px, 100%);
  height: auto;
  margin: 4px 0 12px;
  opacity: 0.92;
}

.footer-contact a {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact a:hover {
  color: var(--white);
}

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

  nav {
    display: none;
  }

  .feature-grid,
  .statement,
  .about,
  .action-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
  }

  .brand-logo {
    width: 178px;
    height: auto;
  }

  .header-actions {
    gap: 0;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    height: 34px;
  }

  .language-switch button {
    width: 31px;
    height: 26px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 24px;
  }

  .hero-logo {
    width: min(310px, 86vw);
    margin-bottom: 22px;
  }

  h1 {
    font-size: 2.48rem;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .steps,
  .image-band {
    grid-template-columns: 1fr;
  }

  .steps div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

.site-footer .button {
    width: 100%;
  }

  .action-links .button {
    width: 100%;
  }
}

.subpage-main {
  padding-top: 0;
}

.subhero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.subhero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.94), rgba(8, 10, 11, 0.54)),
    linear-gradient(0deg, rgba(8, 10, 11, 0.92), transparent 56%);
}

.subhero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0 72px;
}

.subhero-content p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
}

.subpage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gallery-section {
  padding-top: 70px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-grid figure {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.gallery-grid figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .subpage-main {
    padding-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
