@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --cream: #f5f0e8;
  --cream-2: #ede8de;
  --cream-3: #e4ddd2;
  --slate: #1a2130;
  --slate-2: #242f42;
  --slate-3: #2e3c52;
  --gold: #c4922a;
  --gold-2: #daa84a;
  --gold-light: #f0d49a;
  --text: #1a2130;
  --text-muted: #5a6478;
  --text-light: #8a95a8;
  --line: rgba(26, 33, 48, 0.1);
  --line-gold: rgba(196, 146, 42, 0.25);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 8px 40px rgba(26, 33, 48, 0.12);
  --shadow-sm: 0 2px 12px rgba(26, 33, 48, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Layout ── */
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--cream-2);
}
.section--dark {
  background: var(--slate);
  color: var(--cream);
}
.section--slate2 {
  background: var(--slate-2);
  color: var(--cream);
}

/* ── Typography ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 14px 0 20px;
  max-width: 700px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--slate);
  color: var(--cream);
  border-color: var(--slate);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate);
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--slate);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.35);
}

.btn-outline-cream:hover {
  background: rgba(245, 240, 232, 0.1);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  max-width: 280px;
  line-height: 1.2;
}

.brand span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: 0.18s;
}

.nav a:hover,
.nav a.active {
  color: var(--slate);
  background: var(--cream-2);
}

.nav .btn {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  color: var(--slate);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  padding: 0;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--slate);
  color: var(--cream);
  padding: 80px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(196, 146, 42, 0.15);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.hero-left::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(196, 146, 42, 0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 560px;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-meta-item {
  padding: 20px 22px;
  background: rgba(245, 240, 232, 0.04);
}

.hero-meta-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 3px;
}

.hero-meta-item span {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
}

.hero-right {
  background: var(--cream-2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-image-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.hero-image-wrap .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.hero-contact-box {
  background: var(--slate);
  color: var(--cream);
  padding: 28px 32px;
}

.hero-contact-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-contact-items {
  display: grid;
  gap: 10px;
}

.hero-contact-item {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  display: flex;
  gap: 10px;
}

.hero-contact-item strong {
  color: var(--cream);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--gold);
  padding: 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(26, 33, 48, 0.15);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.stat-item span {
  font-size: 0.82rem;
  color: rgba(26, 33, 48, 0.65);
  font-weight: 500;
}

/* ── Section header ── */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.section-header--center .eyebrow::before {
  display: none;
}
.section-header--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-header--center .eyebrow {
  flex-direction: row-reverse;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-bottom-color: var(--gold);
}

.feature-num {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--slate);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Split section ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.split-visual img,
.split-visual .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual .accent-bar {
  position: absolute;
  top: 40px;
  right: 0;
  width: 4px;
  height: 120px;
  background: var(--gold);
}

.checklist {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--gold);
}

.checklist-item div strong {
  display: block;
  margin-bottom: 4px;
  color: var(--slate);
}
.checklist-item div p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--line-gold);
}

.process-step {
  padding: 0 32px;
  text-align: center;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--gold);
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: var(--slate-2);
  padding: 36px 38px;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card strong {
  color: var(--gold-2);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CTA band ── */
.cta-band {
  background: var(--slate);
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.cta-inner .section-title {
  color: var(--cream);
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(245, 240, 232, 0.65);
}

.cta-contact-list {
  display: grid;
  gap: 16px;
}

.cta-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
}

.cta-contact-item .icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 146, 42, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Services ── */
.service-stack {
  display: grid;
  gap: 2px;
}

.service-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--cream);
  overflow: hidden;
}

.service-item:nth-child(even) {
  background: var(--cream-2);
}

.service-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.service-img img,
.service-img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-num {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.service-body h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.service-body > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
  list-style: none;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── About page ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.value-card {
  padding: 40px 36px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  position: relative;
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.team-card {
  background: var(--cream-2);
  overflow: hidden;
}

.team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-3);
  position: relative;
}

.team-img img,
.team-img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 24px 20px;
}
.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-info .role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.team-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Contact page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2px;
}

.contact-info {
  background: var(--slate);
  color: var(--cream);
  padding: 60px 52px;
}
.contact-info .eyebrow {
  color: var(--gold-2);
}
.contact-info .eyebrow::before {
  background: var(--gold-2);
}
.contact-info h2 {
  color: var(--cream);
  font-size: 2rem;
  margin: 14px 0 32px;
}

.contact-block {
  margin-bottom: 28px;
}
.contact-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-block a,
.contact-block p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}
.contact-block a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
}
.contact-block a:hover {
  color: var(--gold-2);
}

.form-panel {
  background: var(--cream);
  padding: 60px 52px;
}
.form-panel h2 {
  font-size: 2rem;
  margin: 14px 0 32px;
}

.form-group {
  margin-bottom: 20px;
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 7px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.18s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.faq-item {
  padding: 32px 36px;
  background: var(--cream);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-left-color: var(--gold);
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ── Page hero ── */
.page-hero {
  background: var(--slate);
  padding: 80px 0;
  color: var(--cream);
  border-bottom: 3px solid var(--gold);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin: 14px 0 16px;
}
.page-hero .section-lead {
  color: rgba(245, 240, 232, 0.65);
}

.info-box {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(196, 146, 42, 0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 240px;
}

.info-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.info-box p,
.info-box a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Legal ── */
.legal-intro {
  background: var(--cream-2);
  padding: 32px 40px;
  border-left: 4px solid var(--gold);
  margin-bottom: 32px;
}

.legal-intro p {
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.legal-card {
  background: var(--cream);
  padding: 36px;
}

.legal-card--full {
  grid-column: 1 / -1;
}
.legal-card h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.legal-card p + p {
  margin-top: 12px;
}
.legal-card ul {
  margin: 12px 0 0 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.legal-card li + li {
  margin-top: 8px;
}

/* ── Footer ── */
.site-footer {
  background: var(--slate);
  color: rgba(245, 240, 232, 0.6);
  padding: 60px 0 28px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  margin-bottom: 28px;
}

.footer-brand {
  display: block;
  margin-bottom: 6px;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.25;
  display: block;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}

.footer-top .desc {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom span:first-child {
  color: rgba(245, 240, 232, 0.4);
}
.footer-bottom span:last-child {
  color: var(--gold-2);
}

/* ── Cookie ── */
#cc-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 700px;
  margin: auto;
  background: var(--slate);
  border: 1px solid rgba(196, 146, 42, 0.25);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#cc-popup.is-hidden {
  display: none;
}
#cc-popup p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.88rem;
  flex: 1;
}
#cc-popup a {
  color: var(--gold-2);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Image placeholders ── */
.img-placeholder {
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
}

.img-placeholder--dark {
  background: var(--slate-3);
  color: rgba(245, 240, 232, 0.35);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 40px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-content {
    padding: 60px 40px;
  }
  .split-visual {
    min-height: 360px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .service-item {
    grid-template-columns: 1fr;
  }
  .service-img {
    min-height: 260px;
  }
  .service-body {
    padding: 36px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .hero-left {
    padding: 48px 24px;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid::before {
    display: none;
  }
  .process-step {
    padding: 24px 0;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  .testimonial-grid,
  .team-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row2 {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info,
  .form-panel {
    padding: 40px 28px;
  }
  .section {
    padding: 70px 0;
  }
}
