.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(18, 40, 36, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.desktop-nav > a,
.nav-dropdown > .nav-trigger {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink);
  border-radius: 999px;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown.is-active > .nav-trigger {
  background: var(--color-paper-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 13.5rem;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s var(--ease);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  background: var(--color-paper-deep);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-copper);
  color: #fff;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--color-copper-hover);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line-strong);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: calc(var(--z-overlay) + 2);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  margin: 4px auto;
  transition: 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s var(--ease);
}

.btn-primary {
  background: var(--color-copper);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-copper-hover);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn-outline:hover {
  background: var(--color-paper-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 22, 0.78) 0%, rgba(8, 24, 22, 0.35) 58%, rgba(8, 24, 22, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 44rem;
}

.hero__kicker {
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.hero p {
  margin-top: 1.2rem;
  max-width: 36rem;
  font-size: var(--text-md);
  opacity: 0.92;
}

.hero .site-note {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  max-width: 36rem;
  opacity: 1;
}

.hero .site-note strong {
  color: var(--color-gold);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.service-card span {
  margin-top: auto;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-block {
  border-left: 3px solid var(--color-copper);
  padding: 0.2rem 0 0.2rem 1.3rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-line);
}

.contact-list span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.contact-list a:hover {
  color: var(--color-teal);
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--color-white);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--color-line-strong);
  background: var(--color-paper);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.map-placeholder {
  display: block;
  min-height: 360px;
  border: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--color-paper-deep);
}

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 3px;
}

.site-footer {
  background: #101c1a;
  color: #e8e0d2;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h2,
.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(232, 224, 210, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-header);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--color-teal-mid);
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}

.news-card div {
  padding: 1.2rem 1.2rem 1.2rem 0;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand img {
    width: 250px;
    max-width: calc(100vw - 8rem);
    height: auto;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: var(--z-overlay);
    background: #10201d;
    color: #f6f0e6;
    overflow: hidden;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.38s var(--ease), visibility 0.38s var(--ease);
  }

  .mobile-menu.is-open {
    transform: none;
    visibility: visible;
  }

  .mobile-menu__inner {
    height: 100%;
    overflow-y: auto;
    padding: calc(var(--header-h) + 1.4rem) 1.4rem calc(2.4rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .mobile-menu a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.35rem;
    font-family: var(--font-serif);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu .mobile-sub {
    padding-left: 0.4rem;
  }

  .mobile-menu .mobile-sub a {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    opacity: 0.88;
  }

  .mobile-menu__close {
    position: absolute;
    top: max(0.9rem, env(safe-area-inset-top, 0px));
    right: 1rem;
    z-index: 2;
    background: transparent;
    color: #f6f0e6;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    min-height: 44px;
    min-width: 44px;
    padding: 0.4rem 1.1rem;
    cursor: pointer;
  }

  .mobile-menu__cta {
    margin-top: 1.4rem;
    padding: 0.95rem 1rem !important;
    background: var(--color-copper);
    color: #fff !important;
    text-align: center;
    border-radius: 999px;
    border: 0;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
  }

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

@media (max-width: 767px) {
  .brand img {
    width: 250px;
    max-width: calc(100vw - 7.5rem);
    height: auto;
  }

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

  .gallery img {
    height: 220px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card div {
    padding: 0 1.15rem 1.2rem;
  }

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

  .hero {
    min-height: 86svh;
  }

  .hero__content {
    padding: 3.4rem 0 2.8rem;
  }
}
