/* ─── Variables ─────────────────────────────────────────────────────────── */

:root {
  --bg:           #f5e6d3;
  --bg-soft:      #ede0cc;
  --bg-dark:      #3d2b1f;
  --bg-darker:    #2a1e15;
  --bg-card:      #faf3e8;
  --accent:       #92400e;
  --accent-light: #fde8c8;
  --accent-hover: #78350f;
  --text:         #1c1208;
  --text-muted:   #6b5744;
  --text-light:   #a08060;
  --border:       #c8b49a;
  --border-dark:  #3d2b1f;
  --shadow:       0 2px 12px rgba(60, 35, 15, 0.12);
  --shadow-lg:    0 8px 40px rgba(60, 35, 15, 0.18);
  --radius:       2px;
  --transition:   all 0.2s ease;
  --container:    1200px;
  --section-pad:  96px 0;

  --font-head: 'Playfair Display', serif;
  --font-body: 'IM Fell English', serif;
  --font-sans: 'Inter', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.2;
}

h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

.hrd-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hrd-section {
  padding: var(--section-pad);
}

body.hrd-no-scroll {
  overflow: hidden;
}

/* ─── Dividers ──────────────────────────────────────────────────────────── */

.hrd-divider {
  border: none;
  border-top: 3px double var(--border-dark);
  margin: 48px 0;
}

.hrd-divider--thin {
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.hrd-divider--ornament {
  text-align: center;
  color: var(--text-muted);
  font-size: 20px;
  letter-spacing: 0.3em;
  margin: 40px 0;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */

.hrd-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

.hrd-btn-primary:hover {
  background: var(--accent-hover);
}

.hrd-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.hrd-btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── Logo ───────────────────────────────────────────────────────────────── */

.hrd-logo {
  text-decoration: none;
  display: inline-block;
}

.hrd-logo__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  padding: 3px 14px;
  position: relative;
}

.hrd-logo__wrap::before,
.hrd-logo__wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
}

.hrd-logo__wrap::before { top: 3px; }
.hrd-logo__wrap::after  { bottom: 3px; }

.hrd-logo__pre {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.2;
}

.hrd-logo__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  line-height: 1;
}

.hrd-logo__sub {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */

.hrd-header {
  background: var(--bg);
  border-bottom: none;
  transition: var(--transition);
}

.hrd-masthead.hrd-header--scrolled {
  box-shadow: var(--shadow);
}

.hrd-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hrd-header__bar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 8px 0 4px;
}

.hrd-header__bar .hrd-logo {
  grid-column: 2;
  justify-self: center;
}

.hrd-header__bar .hrd-burger {
  grid-column: 3;
  justify-self: end;
}

.hrd-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 6px 0 8px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.hrd-nav__close,
.hrd-nav-overlay {
  display: none;
}

.hrd-nav__links {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.hrd-nav__links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 16px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.hrd-nav__links a:last-child {
  border-right: none;
}

.hrd-nav__links a:hover {
  color: var(--accent);
}

.hrd-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hrd-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.hrd-masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px double var(--border-dark);
}

/* ─── Section Head ───────────────────────────────────────────────────────── */

.hrd-section-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.hrd-section-head::before,
.hrd-section-head::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--border-dark);
}

.hrd-section-head::before { left: 0; }
.hrd-section-head::after  { right: 0; }

.hrd-section-head__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 24px;
  background: inherit;
}

.hrd-services .hrd-section-head__title { background: var(--bg); }
.hrd-history .hrd-section-head__title  { background: var(--bg-soft); }
.hrd-reviews .hrd-section-head__title { background: var(--bg-soft); }
.hrd-process .hrd-section-head__title { background: var(--bg); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.hrd-hero {
  padding: 48px 0 64px;
  border-bottom: 3px double var(--border-dark);
}

.hrd-hero__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.hrd-hero__aside {
  border: 1px solid var(--border-dark);
  padding: 16px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
}

.hrd-hero__aside-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.hrd-hero__kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hrd-hero__kicker::before,
.hrd-hero__kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.hrd-hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  font-style: normal;
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 24px;
}

.hrd-hero__title-accent {
  color: var(--accent);
}

.hrd-hero__photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: sepia(0.4) contrast(1.05) brightness(0.95);
  border: 1px solid var(--border-dark);
  margin: 24px 0;
}

.hrd-hero__caption {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-light);
  font-style: normal;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 6px;
  margin-top: -16px;
  margin-bottom: 8px;
}

.hrd-hero__lead {
  font-size: 18px;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.hrd-hero__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hrd-hero__news-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.hrd-hero__news-item:last-child {
  border-bottom: none;
}

.hrd-hero__news-date {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

.hrd-hero__news-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ─── Services ───────────────────────────────────────────────────────────── */

.hrd-services {
  background: var(--bg);
}

.hrd-services__columns {
  column-count: 3;
  column-gap: 32px;
  column-rule: 1px solid var(--border);
}

.hrd-service-col {
  break-inside: avoid;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.hrd-service-col__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: sepia(0.4) contrast(1.05) brightness(0.95);
  border: 1px solid var(--border-dark);
  margin-bottom: 16px;
}

.hrd-service-col__category {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hrd-service-col__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 8px;
}

.hrd-service-col__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
  hyphens: auto;
}

.hrd-service-col__price {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
}

/* ─── History ─────────────────────────────────────────────────────────────── */

.hrd-history {
  background: var(--bg-soft);
  border-top: 3px double var(--border-dark);
}

.hrd-history__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.hrd-history__photo {
  width: 100%;
  border: 2px solid var(--border-dark);
  filter: sepia(0.5) contrast(1.1) brightness(0.9);
}

.hrd-history__caption {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}

.hrd-history__lead {
  font-family: var(--font-head);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 32px;
}

.hrd-history__body {
  column-count: 2;
  column-gap: 32px;
  column-rule: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
}

.hrd-history__body p {
  margin-bottom: 16px;
  break-inside: avoid;
}

.hrd-history__body p:last-child {
  margin-bottom: 0;
}

/* ─── Stats / Timeline ───────────────────────────────────────────────────── */

.hrd-stats {
  background: var(--bg-dark);
  padding: var(--section-pad);
  color: #f5e6d3;
}

.hrd-stats__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #f5e6d3;
  text-align: center;
  margin-bottom: 64px;
  font-style: italic;
}

.hrd-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hrd-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.hrd-timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px;
}

.hrd-timeline-item:last-child {
  margin-bottom: 0;
}

.hrd-timeline-item:nth-child(even) .hrd-timeline-item__content {
  order: 3;
  text-align: left;
}

.hrd-timeline-item:nth-child(even) .hrd-timeline-item__empty {
  order: 1;
}

.hrd-timeline-item__content {
  text-align: right;
  padding: 0 32px;
}

.hrd-timeline-item__dot {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 2px var(--accent);
  position: relative;
  z-index: 1;
}

.hrd-timeline-item__year {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-style: normal;
}

.hrd-timeline-item__num {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: #f5e6d3;
  line-height: 1;
  margin-bottom: 4px;
}

.hrd-timeline-item__label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 230, 211, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ─── Press ──────────────────────────────────────────────────────────────── */

.hrd-press {
  padding: var(--section-pad);
  background: var(--bg-card);
}

.hrd-press__wrap {
  border: 2px solid var(--border-dark);
  padding: 48px 40px;
}

.hrd-press__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 3px double var(--border-dark);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.hrd-press__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
}

.hrd-press__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
}

.hrd-press__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.hrd-press-item {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
}

.hrd-press-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.hrd-press-item--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.hrd-press-item__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: sepia(0.4) contrast(1.05);
  border: 1px solid var(--border-dark);
  margin-bottom: 16px;
}

.hrd-press-item__source {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hrd-press-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 17px;
}

.hrd-press-item--featured .hrd-press-item__title {
  font-size: 24px;
}

.hrd-press-item__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.hrd-press-item__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ─── Reviews ────────────────────────────────────────────────────────────── */

.hrd-reviews {
  background: var(--bg-soft);
}

.hrd-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hrd-review {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--border);
}

.hrd-review:last-child {
  border-right: none;
  padding-right: 0;
}

.hrd-review__stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.hrd-review__text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hrd-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hrd-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.05);
  border: 2px solid var(--border-dark);
  flex-shrink: 0;
}

.hrd-review__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.hrd-review__role {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* ─── Process ────────────────────────────────────────────────────────────── */

.hrd-process {
  background: var(--bg);
}

.hrd-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-dark);
}

.hrd-process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border-dark);
  position: relative;
}

.hrd-process-step:last-child {
  border-right: none;
}

.hrd-process-step__num {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
}

.hrd-process-step__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--text);
}

.hrd-process-step__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── CTA ────────────────────────────────────────────────────────────────── */

.hrd-cta {
  background: var(--bg-darker);
  padding: var(--section-pad);
}

.hrd-cta__head {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 3px double rgba(245, 230, 211, 0.2);
}

.hrd-cta__label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.hrd-cta__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  font-style: italic;
  color: #f5e6d3;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hrd-cta__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: rgba(245, 230, 211, 0.5);
}

.hrd-cta-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hrd-cta-form textarea {
  grid-column: span 2;
}

.hrd-cta-form .hrd-btn-primary {
  grid-column: span 2;
  width: 100%;
}

.hrd-cta-form input,
.hrd-cta-form textarea {
  background: rgba(245, 230, 211, 0.06);
  border: 1px solid rgba(245, 230, 211, 0.15);
  color: #f5e6d3;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  border-radius: 0;
  transition: var(--transition);
}

.hrd-cta-form input:focus,
.hrd-cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.hrd-cta-form input::placeholder,
.hrd-cta-form textarea::placeholder {
  color: rgba(245, 230, 211, 0.3);
  font-style: italic;
}

.hrd-cta-form textarea {
  resize: vertical;
  min-height: 100px;
}

.hrd-cta__success {
  display: none;
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.hrd-footer {
  background: #1a0e08;
  border-top: 3px double rgba(245, 230, 211, 0.15);
  color: #f5e6d3;
}

.hrd-footer__brand {
  text-align: center;
  padding: 40px 0 24px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.hrd-footer__logo-name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: #f5e6d3;
  letter-spacing: 0.1em;
}

.hrd-footer__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 230, 211, 0.4);
  margin-top: 6px;
}

.hrd-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.hrd-footer__col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hrd-footer__col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 230, 211, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.hrd-footer__col a:hover {
  color: #f5e6d3;
}

.hrd-footer__copy {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(245, 230, 211, 0.25);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 992px) {
  .hrd-hero__grid {
    grid-template-columns: 1fr 2fr;
  }

  .hrd-hero__side-r {
    display: none;
  }

  .hrd-services__columns {
    column-count: 2;
  }

  .hrd-press__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hrd-press-item--featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (min-width: 769px) {
  .hrd-nav {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    overflow: visible;
    border-top: 1px solid var(--border);
  }

  .hrd-nav--open {
    transform: none;
  }

  .hrd-nav__close {
    display: none;
  }

  .hrd-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 0;
  }

  .hrd-header__top {
    display: none;
  }

  .hrd-header__issue {
    font-size: 8px;
    line-height: 1.3;
  }

  .hrd-header__bar {
    padding: 15px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .hrd-burger {
    display: flex;
  }

  .hrd-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    border: none;
    border-left: 2px solid var(--border-dark);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .hrd-nav--open {
    transform: translateX(0);
  }

  .hrd-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--bg-soft);
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
  }

  .hrd-nav__close span {
    display: block;
    transform: translateY(-2px);
  }

  .hrd-nav__links {
    flex-direction: column;
    padding: 8px 0 24px;
  }

  .hrd-nav__links a {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    width: 100%;
    text-align: left;
    font-size: 13px;
  }

  .hrd-nav__links a:last-child {
    border-bottom: none;
  }

  .hrd-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(28, 18, 8, 0.45);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .hrd-nav-overlay--visible {
    opacity: 1;
    visibility: visible;
  }

  .hrd-burger--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hrd-burger--active span:nth-child(2) {
    opacity: 0;
  }

  .hrd-burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hrd-hero__grid {
    grid-template-columns: 1fr;
  }

  .hrd-hero__side-l {
    display: none;
  }

  .hrd-services__columns {
    column-count: 1;
  }

  .hrd-history__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hrd-history__body {
    column-count: 1;
  }

  .hrd-press__wrap {
    padding: 32px 20px;
  }

  .hrd-press__grid {
    grid-template-columns: 1fr;
  }

  .hrd-press-item--featured {
    grid-row: auto;
    grid-column: auto;
  }

  .hrd-reviews__grid {
    grid-template-columns: 1fr;
  }

  .hrd-review {
    border-right: none;
    padding: 0 0 32px;
    border-bottom: 1px solid var(--border);
  }

  .hrd-review:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hrd-process__steps {
    grid-template-columns: 1fr 1fr;
  }

  .hrd-process-step:nth-child(2) {
    border-right: none;
  }

  .hrd-process-step:nth-child(1),
  .hrd-process-step:nth-child(2) {
    border-bottom: 1px solid var(--border-dark);
  }

  .hrd-footer__nav {
    grid-template-columns: 1fr;
  }

  .hrd-cta-form {
    grid-template-columns: 1fr;
  }

  .hrd-cta-form textarea,
  .hrd-cta-form .hrd-btn-primary {
    grid-column: span 1;
  }

  .hrd-timeline::before {
    left: 20px;
  }

  .hrd-timeline-item {
    grid-template-columns: 0 40px 1fr;
  }

  .hrd-timeline-item:nth-child(even) .hrd-timeline-item__content,
  .hrd-timeline-item:nth-child(even) .hrd-timeline-item__empty {
    order: unset;
  }

  .hrd-timeline-item__content {
    text-align: left !important;
    padding: 0 0 0 16px;
    grid-column: 3;
  }

  .hrd-timeline-item__dot {
    grid-column: 2;
  }

  .hrd-timeline-item__empty {
    display: none;
  }

  .hrd-section-head::before,
  .hrd-section-head::after {
    width: 20%;
  }

  .hrd-footer__copy {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hrd-header__date {
    display: none;
  }

  .hrd-logo__sub {
    display: none;
  }

  .hrd-hero__title {
    font-size: clamp(40px, 11vw, 52px);
  }

  .hrd-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hrd-hero__btns .hrd-btn {
    text-align: center;
  }

  .hrd-process__steps {
    grid-template-columns: 1fr;
  }

  .hrd-process-step {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .hrd-process-step:last-child {
    border-bottom: none;
  }

  .hrd-press__header {
    flex-direction: column;
    gap: 8px;
  }
}
