/* ========================================
   Romero Legal Solutions — Shared Styles
   ======================================== */

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

:root {
  --black: #1a1a1a;
  --ivory: #f5f0eb;
  --gold: #c4a265;
  --terracotta: #a0522d;
  --slate: #4a4a4a;
  --sand: #e8ddd3;
  --white: #fafafa;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.3s;
}
nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo img {
  max-width: 200px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover {
  background: #d4b275 !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-radius: 3px;
}
.btn-gold:hover {
  background: #d4b275;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.3);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 3px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero.hero-short {
  min-height: 80vh;
  justify-content: flex-start;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: saturate(0.4) brightness(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 120px 24px 80px;
}
.hero.hero-short .hero-content {
  text-align: left;
  max-width: 720px;
  padding: 140px 24px 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid rgba(196, 162, 101, 0.35);
  padding: 6px 18px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.3);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 24px;
}
.hero.hero-short h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(245, 240, 235, 0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero.hero-short p {
  margin: 0 0 36px;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero.hero-short .hero-buttons {
  justify-content: flex-start;
}

/* ── Section Common ── */

section {
  padding: 100px 0;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Image Placeholders ── */

.img-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, #d5cdc4, #bfb5a8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--slate);
}
.img-placeholder .ph-icon {
  font-size: 1.8rem;
  opacity: 0.4;
  margin-bottom: 8px;
}
.img-placeholder .ph-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
.img-placeholder .ph-note {
  font-size: 0.68rem;
  opacity: 0.35;
  margin-top: 4px;
}

.img-break {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #000;
}
.img-break .img-placeholder {
  height: 100%;
  border-radius: 0;
  opacity: 0.5;
}

/* ── Problem Section ── */

.problem {
  background: var(--black);
  color: var(--ivory);
  text-align: center;
}
.problem .section-heading {
  color: var(--ivory);
}
.problem-statements {
  max-width: 750px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.problem-statements p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 235, 0.82);
}
.problem-statements p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.problem-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── Audiences ── */

.audiences {
  background: var(--ivory);
}
.audiences-header {
  text-align: center;
  margin-bottom: 60px;
}
.audiences-header .section-sub {
  margin: 0 auto;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.audience-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 44px 40px;
}
.audience-card .img-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.audience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(26, 26, 26, 1) 0%,
    rgba(26, 26, 26, 0.75) 55%,
    rgba(26, 26, 26, 0.5) 100%
  );
}
.audience-card-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
}
.audience-card-content .aud-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.audience-card-content h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}
.audience-card-content p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.audience-card-content .btn {
  padding: 12px 32px;
  font-size: 0.78rem;
}

/* ── Services (card grid) ── */

.services-sand {
  background: var(--sand);
}
.services-ivory {
  background: var(--ivory);
}
.services-header {
  text-align: center;
  margin-bottom: 20px;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-phase {
  margin-top: 56px;
}
.phase-label {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phase-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.phase-desc {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
}
.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}
.service-card .card-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
}
.service-card.open .card-toggle {
  transform: rotate(45deg);
}
.service-tagline {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
  transition: margin 0.3s;
}
.service-card.open .service-tagline {
  margin-bottom: 14px;
}
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.service-card.open .service-details {
  max-height: 400px;
}
.service-details ul {
  list-style: none;
  padding: 0;
}
.service-details li {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 5px 0 5px 18px;
  position: relative;
}
.service-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

/* ── Services (accordion list, expats page) ── */

.services-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.svc {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.svc:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: pointer;
}
.svc-header h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
}
.svc-header .svc-toggle {
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.3s;
}
.svc.open .svc-toggle {
  transform: rotate(45deg);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.svc.open .svc-body {
  max-height: 600px;
}
.svc-inner {
  padding: 0 32px 28px;
}
.svc-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.svc-inner ul {
  list-style: none;
  padding: 0;
}
.svc-inner li {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
}
.svc-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

/* ── Services (static cards, business page) ── */

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 36px 30px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}
.svc-card .svc-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.svc-card ul {
  list-style: none;
  padding: 0;
}
.svc-card li {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 4px 0 4px 18px;
  position: relative;
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

/* ── About (full, main page) ── */

.about {
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  max-width: 420px;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo .img-placeholder {
  height: 100%;
}
.about-content .section-heading {
  margin-bottom: 24px;
}
.about-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-content p strong {
  color: var(--black);
  font-weight: 600;
}
.about-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--black);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 28px;
  line-height: 1.6;
}

/* ── About Mini (subpages) ── */

.about-mini-sand {
  background: var(--sand);
}
.about-mini-black {
  background: var(--black);
  color: var(--ivory);
}
.about-mini-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.about-mini-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.about-mini-photo .img-placeholder {
  height: 100%;
  border-radius: 50%;
}
.about-mini-content .section-heading {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.about-mini-content p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-mini-content p strong {
  color: var(--black);
}
.about-mini-black .about-mini-content .section-heading {
  color: var(--ivory);
}
.about-mini-black .about-mini-content p {
  color: rgba(245, 240, 235, 0.65);
}
.about-mini-black .about-mini-content p strong {
  color: var(--ivory);
}
.about-mini-content a {
  color: var(--gold);
}

/* ── Process ── */

.process {
  text-align: center;
}
.process-sand {
  background: var(--sand);
}
.process-ivory {
  background: var(--ivory);
}
.process-header {
  margin-bottom: 64px;
}
.process-header .section-sub {
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.step-number {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Testimonials ── */

.testimonials {
  background: var(--black);
  color: var(--ivory);
  text-align: center;
}
.testimonials .section-heading {
  color: var(--ivory);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  border-radius: 4px;
  text-align: left;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── FAQ ── */

.faq {
  background: var(--ivory);
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header .section-sub {
  margin: 0 auto;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question .icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.35s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer div {
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ── Empathy (expats page) ── */

.empathy {
  background: var(--sand);
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.empathy-content .section-heading {
  margin-bottom: 20px;
}
.empathy-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}
.empathy-content p em {
  color: var(--black);
  font-style: italic;
}
.empathy-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.empathy-img .img-placeholder {
  height: 100%;
}

/* ── Opportunity (business page) ── */

.opportunity {
  background: var(--sand);
}
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.opp-content .section-heading {
  margin-bottom: 20px;
}
.opp-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}
.opp-content p em {
  color: var(--black);
  font-style: italic;
}
.opp-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.opp-img .img-placeholder {
  height: 100%;
}

/* ── Edge (business page) ── */

.edge {
  background: var(--black);
  color: var(--ivory);
}
.edge .section-heading {
  color: var(--ivory);
}
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.edge-item {
  text-align: center;
  padding: 32px 24px;
}
.edge-number {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.edge-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
}
.edge-item p {
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.55);
  line-height: 1.6;
}

/* ── Contact ── */

.contact {
  background: var(--black);
}
.contact .section-heading {
  color: var(--ivory);
}
.contact .section-label {
  color: var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-heading {
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 1rem;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(245, 240, 235, 0.55);
}
.contact-detail .cd-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: 6px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 7px;
}
.form-group .helper {
  font-size: 0.78rem;
  color: var(--slate);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background: var(--ivory);
  color: var(--black);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--slate);
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Footer ── */

footer {
  background: var(--black);
  color: rgba(245, 240, 235, 0.5);
  padding: 40px 0 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.footer-logo img {
  max-width: 200px;
  height: auto;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.4);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(245, 240, 235, 0.45);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .services-grid,
  .svc-cards {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid,
  .empathy-grid,
  .opp-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 360px;
    margin: 0 auto;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .edge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-mini-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-mini-photo {
    margin: 0 auto;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 400px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
  section {
    padding: 72px 0;
  }
  .img-break {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .nav-logo img {
    max-width: 120px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.35s ease;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 0.95rem;
    color: var(--ivory);
  }
  .menu-toggle {
    display: flex;
  }
  .services-grid,
  .svc-cards {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 100px 20px 60px;
  }
  .hero.hero-short .hero-content {
    padding: 120px 20px 60px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .audience-card {
    min-height: 300px;
    padding: 28px 24px;
  }
}
