@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --hr-navy: #243447;
  --hr-navy-deep: #1a2633;
  --hr-navy-soft: #3a4d63;
  --hr-linen: #E8E2D9;
  --hr-linen-light: #f4f0ea;
  --hr-paper: #fbf8f4;
  --hr-brass: #A89060;
  --hr-brass-deep: #8a7348;
  --hr-ink: #1c2630;
  --hr-mute: #5c6773;
  --hr-line: rgba(36, 52, 71, 0.14);
  --hr-white: #ffffff;
  --hr-max: 1120px;
  --hr-wide: 1280px;
  --hr-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hr-serif: "DM Serif Display", Georgia, serif;
  --hr-sans: "Outfit", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--hr-sans);
  font-weight: 400;
  color: var(--hr-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(168, 144, 96, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(36, 52, 71, 0.06), transparent 50%),
    var(--hr-linen-light);
  line-height: 1.65;
  font-size: 1.05rem;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--hr-brass-deep); text-decoration: none; transition: color 0.25s var(--hr-ease); }
a:hover { color: var(--hr-navy); }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--hr-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--hr-navy);
}

.wrap {
  width: min(100% - 2.5rem, var(--hr-max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2.5rem, var(--hr-wide));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  color: var(--hr-linen);
}

.site-header.is-solid {
  position: sticky;
  background: var(--hr-navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-name {
  font-family: var(--hr-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--hr-linen);
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--hr-brass);
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(232, 226, 217, 0.35);
  color: var(--hr-linen);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
}

.nav-main a {
  color: rgba(232, 226, 217, 0.88);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: var(--hr-brass);
  transition: width 0.35s var(--hr-ease);
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--hr-linen);
  text-decoration: none;
}

.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--hr-linen);
  background: var(--hr-navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hr- ken 18s var(--hr-ease) forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 38, 51, 0.55) 0%, rgba(26, 38, 51, 0.25) 38%, rgba(26, 38, 51, 0.78) 100%),
    linear-gradient(90deg, rgba(26, 38, 51, 0.45) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--hr-max));
  margin: 0 auto;
  padding: 7.5rem 0 4.5rem;
  animation: hr-rise 1s var(--hr-ease) both;
}

.hero-brand {
  font-family: var(--hr-serif);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02;
  color: var(--hr-linen);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.hero h1 {
  font-family: var(--hr-sans);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--hr-linen);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  max-width: 28ch;
}

.hero-lead {
  max-width: 38ch;
  color: rgba(232, 226, 217, 0.88);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--hr-navy);
  color: var(--hr-linen);
  padding-top: 5.5rem;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 38, 51, 0.35), rgba(26, 38, 51, 0.82));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--hr-max));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  animation: hr-rise 0.8s var(--hr-ease) both;
}

.page-hero .eyebrow {
  color: var(--hr-brass);
  margin-bottom: 0.65rem;
}

.page-hero h1 {
  color: var(--hr-linen);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  max-width: 16ch;
}

.page-hero p {
  margin-top: 0.85rem;
  max-width: 42ch;
  color: rgba(232, 226, 217, 0.88);
  font-weight: 300;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.3s var(--hr-ease), color 0.3s var(--hr-ease), border-color 0.3s var(--hr-ease), transform 0.3s var(--hr-ease);
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-brass {
  background: var(--hr-brass);
  color: var(--hr-navy-deep);
  border-color: var(--hr-brass);
}

.btn-brass:hover {
  background: var(--hr-linen);
  border-color: var(--hr-linen);
  color: var(--hr-navy);
}

.btn-ghost {
  background: transparent;
  color: var(--hr-linen);
  border-color: rgba(232, 226, 217, 0.45);
}

.btn-ghost:hover {
  background: rgba(232, 226, 217, 0.1);
  color: var(--hr-linen);
  border-color: var(--hr-linen);
}

.btn-navy {
  background: var(--hr-navy);
  color: var(--hr-linen);
  border-color: var(--hr-navy);
}

.btn-navy:hover {
  background: var(--hr-navy-soft);
  color: var(--hr-linen);
}

.btn-outline {
  background: transparent;
  color: var(--hr-navy);
  border-color: rgba(36, 52, 71, 0.35);
}

.btn-outline:hover {
  border-color: var(--hr-navy);
  background: var(--hr-navy);
  color: var(--hr-linen);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-navy {
  background: var(--hr-navy);
  color: var(--hr-linen);
}

.section-navy h2,
.section-navy h3 { color: var(--hr-linen); }

.section-linen {
  background: var(--hr-linen);
}

.section-paper {
  background: var(--hr-paper);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--hr-brass);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--hr-mute);
  font-weight: 300;
  font-size: 1.05rem;
}

.section-navy .section-head p { color: rgba(232, 226, 217, 0.78); }

.prose {
  max-width: 42rem;
}

.prose p + p { margin-top: 1rem; }
.prose strong { font-weight: 600; color: var(--hr-navy); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  animation: hr-soft 1.2s var(--hr-ease) both;
}

.split-copy .eyebrow { margin-bottom: 0.65rem; }
.split-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.split-copy p {
  color: var(--hr-mute);
  font-weight: 300;
  margin-bottom: 1rem;
}
.split-copy .btn { margin-top: 0.75rem; }

/* ——— Services list ——— */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hr-line);
  border-left: 1px solid var(--hr-line);
}

.service-item {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--hr-line);
  border-bottom: 1px solid var(--hr-line);
  font-weight: 500;
  color: var(--hr-navy);
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  transition: background 0.3s var(--hr-ease);
}

.service-item:hover { background: rgba(168, 144, 96, 0.1); }

.service-item span {
  font-family: var(--hr-serif);
  color: var(--hr-brass);
  font-size: 1.1rem;
  line-height: 1;
}

.pitch-band {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(232, 226, 217, 0.18);
  border-bottom: 1px solid rgba(232, 226, 217, 0.18);
}

.pitch-band p {
  font-family: var(--hr-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--hr-linen);
  max-width: 28ch;
}

/* ——— Feature strips ——— */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-row article h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.feature-row article p {
  color: var(--hr-mute);
  font-weight: 300;
  font-size: 0.98rem;
}

.feature-row article a {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hr-brass-deep);
}

.feature-row article a:hover { color: var(--hr-navy); }

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--hr-navy);
  aspect-ratio: 4 / 3;
}

.gallery-grid figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--hr-ease);
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(transparent, rgba(26, 38, 51, 0.85));
  color: var(--hr-linen);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 44rem;
  border-top: 1px solid var(--hr-line);
}

.faq-item {
  border-bottom: 1px solid var(--hr-line);
  padding: 1.35rem 0;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.faq-item p {
  color: var(--hr-mute);
  font-weight: 300;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-details h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.contact-details p,
.contact-details a {
  color: var(--hr-mute);
  font-weight: 300;
}

.contact-details a:hover { color: var(--hr-navy); }

.contact-line {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hr-line);
}

.contact-line strong {
  display: block;
  font-family: var(--hr-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-brass);
  margin-bottom: 0.35rem;
}

.contact-form {
  background: var(--hr-paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--hr-line);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hr-navy);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--hr-line);
  background: var(--hr-white);
  color: var(--hr-ink);
  outline: none;
  transition: border-color 0.25s var(--hr-ease);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--hr-brass);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(168, 144, 96, 0.15);
  border-left: 3px solid var(--hr-brass);
  color: var(--hr-navy);
  font-size: 0.95rem;
}

.form-success.show { display: block; animation: hr-rise 0.45s var(--hr-ease) both; }

.legal-page {
  padding: clamp(3rem, 7vw, 4.5rem) 0 5rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-page .meta {
  color: var(--hr-mute);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
}

.legal-page p,
.legal-page li {
  color: var(--hr-mute);
  font-weight: 300;
  max-width: 48rem;
}

.legal-page ul {
  margin: 0.75rem 0 0 1.15rem;
  list-style: disc;
}

.legal-page li + li { margin-top: 0.4rem; }

.legal-page a { color: var(--hr-brass-deep); }

/* ——— Footer ——— */
.site-footer {
  background: var(--hr-navy-deep);
  color: rgba(232, 226, 217, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--hr-serif);
  font-size: 1.55rem;
  color: var(--hr-linen);
  margin-bottom: 0.65rem;
}

.footer-grid p { font-weight: 300; font-size: 0.95rem; }
.footer-grid h4 {
  font-family: var(--hr-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--hr-brass);
  margin-bottom: 0.9rem;
}

.footer-grid a {
  display: block;
  color: rgba(232, 226, 217, 0.78);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.footer-grid a:hover { color: var(--hr-linen); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 226, 217, 0.12);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-legal a { color: rgba(232, 226, 217, 0.65); }
.footer-legal a:hover { color: var(--hr-brass); }

/* ——— Cookie banner ——— */
#cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 420px;
  margin-left: auto;
  background: var(--hr-navy);
  color: var(--hr-linen);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(168, 144, 96, 0.35);
  box-shadow: 0 16px 40px rgba(26, 38, 51, 0.35);
  display: none;
  animation: hr-rise 0.5s var(--hr-ease) both;
}

#cookie-banner.show { display: block; }

#cookie-banner p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: rgba(232, 226, 217, 0.9);
}

#cookie-banner a { color: var(--hr-brass); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions button {
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

#cookie-accept {
  background: var(--hr-brass);
  color: var(--hr-navy-deep);
}

#cookie-decline {
  background: transparent;
  border-color: rgba(232, 226, 217, 0.35);
  color: var(--hr-linen);
}

#cookie-settings {
  background: transparent;
  color: var(--hr-brass);
  border: none;
  padding-left: 0.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 226, 217, 0.15);
}

#cookie-panel.open { display: block; }

#cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  font-weight: 300;
}

#cookie-save {
  margin-top: 0.65rem;
  background: var(--hr-linen);
  color: var(--hr-navy);
  border: none;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ——— Animations ——— */
@keyframes hr-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hr-ken {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes hr-soft {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-media img { transform: none; }
}

/* ——— Responsive ——— */
.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  grid-template-columns: 1.4fr auto;
}

@media (max-width: 900px) {
  .split,
  .contact-grid,
  .feature-row,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .service-grid { grid-template-columns: 1fr 1fr; }

  .pitch-band {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-grid figure:first-child { aspect-ratio: 16 / 9; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--hr-navy-deep);
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(232, 226, 217, 0.1);
  }

  .nav-main.open { display: flex; }

  .nav-main a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(232, 226, 217, 0.08);
  }

  .nav-main a::after { display: none; }

  .hero-inner { padding-bottom: 3.25rem; }

  .service-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:first-child { grid-column: auto; }

  #cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }
}
