:root {
  --ink: #121211;
  --muted: #69615a;
  --line: #ded8cf;
  --paper: #f7f3ed;
  --white: #fffdf8;
  --charcoal: #22211f;
  --gold: #bf8a18;
  --gold-strong: #d7a32b;
  --green: #294640;
  --clay: #9f6f55;
  --shadow: 0 24px 70px rgba(20, 18, 15, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 12, 12, .78), rgba(12, 12, 12, .18));
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-solid {
  background: rgba(18, 18, 17, .94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.brand {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  color: var(--gold-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  white-space: nowrap;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.nav a,
.header-call {
  text-decoration: none;
}

.nav a:hover,
.header-call:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  min-width: 44px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

.header-call {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, .92);
}

.hero {
  position: relative;
  min-height: 92vh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: url("assets/images/hero-reception.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .52) 54%, rgba(0, 0, 0, .72)),
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .16) 62%, rgba(0, 0, 0, .46));
}

.hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 58px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.panel-label,
.team-list span {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 9vw, 124px);
  line-height: .9;
  letter-spacing: 0;
  max-width: 10ch;
}

h2 {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2.2vw, 25px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 40px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #1d1710;
  background: var(--gold-strong);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.btn-secondary.dark {
  color: var(--ink);
  border-color: rgba(18, 18, 17, .22);
  background: rgba(255, 255, 255, .58);
}

.btn-map {
  width: 100%;
  color: #fff;
  background: var(--green);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin: 0;
}

.hero-facts div {
  border-top: 1px solid rgba(255, 255, 255, .28);
  padding-top: 14px;
}

.hero-facts dt {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--charcoal);
  color: #fff;
}

.quick-contact a {
  min-height: 112px;
  padding: 28px clamp(18px, 4vw, 48px);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact span {
  color: rgba(255, 255, 255, .68);
  margin-top: 4px;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.split,
.section-heading,
.team-layout,
.contact-card,
.news-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(28px, 6vw, 84px);
}

.prose {
  color: var(--muted);
  font-size: 18px;
}

.service-finder {
  background: var(--green);
  color: #fff;
}

.service-finder .section-kicker {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.service-finder h2 {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.finder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 34px auto 0;
}

.finder-buttons {
  display: grid;
  gap: 10px;
}

.finder-option {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  text-align: left;
  cursor: pointer;
}

.finder-option.active {
  color: #1d1710;
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.finder-panel {
  min-height: 260px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.finder-panel p:not(.panel-label) {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.service-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(247, 243, 237, .9));
}

.service-grid p,
.team-list p,
.news-grid p,
.contact p,
.site-footer p {
  color: var(--muted);
}

.team {
  background: #ece5da;
}

.team-layout {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-list article {
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 253, 248, .74);
  border: 1px solid rgba(18, 18, 17, .08);
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 380px;
}

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

.news {
  background: var(--charcoal);
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.news-grid article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.news-grid img {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.news .text-link {
  color: var(--gold-strong);
}

.contact {
  background:
    linear-gradient(135deg, rgba(41, 70, 64, .1), transparent 45%),
    var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.contact-details {
  position: sticky;
  top: 92px;
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px) 84px;
  background: #161514;
  color: #fff;
}

.site-footer strong {
  color: var(--gold-strong);
  letter-spacing: 3px;
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logos img {
  width: 86px;
  max-height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}

.mobile-sticky {
  position: fixed;
  z-index: 30;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 18, 17, .94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
}

.mobile-sticky a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

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

  .nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 132px;
  }

  .quick-contact,
  .split,
  .finder-grid,
  .section-heading,
  .team-layout,
  .contact-card,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .finder-grid {
    gap: 14px;
  }

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

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

  .contact-details {
    position: static;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    max-width: 190px;
    white-space: normal;
    font-size: 11px;
  }

  .nav {
    font-size: 14px;
    gap: 16px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 34px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .finder-buttons,
  .service-grid,
  .team-list,
  .visual-band,
  .news-grid article {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .news-grid img {
    width: 100%;
    max-height: 260px;
  }

  .footer-logos {
    flex-wrap: wrap;
  }

  .mobile-sticky {
    display: grid;
  }
}
