/* ============================================================
   CROLECT — STYLESHEET
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A5C;
  --navy-dark:  #122740;
  --gold:       #C9A96E;
  --gold-light: #E2C89A;
  --cream:      #FAFAF7;
  --cream-mid:  #F3EDE2;
  --text:       #2C2C2C;
  --text-muted: #6B6B6B;
  --border:     #DDD5C8;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius: 4px;
  --radius-lg: 10px;

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 72px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 55ch;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.btn-primary:hover { background: #b89258; border-color: #b89258; transform: translateY(-1px); }
.btn-primary.success { background: #2d5a3d; border-color: #2d5a3d; cursor: default; }
.btn-primary.success:hover { transform: none; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(27, 58, 92, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: block;
  height: 60px;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: #b89258 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 39, 64, 0.82) 0%,
    rgba(27, 58, 92, 0.60) 60%,
    rgba(27, 58, 92, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 72px;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Intro ────────────────────────────────────────────────── */
.intro {
  padding-block: var(--section-pad);
  background: var(--navy);
  color: #fff;

  .section-label { color: var(--gold-light); }
}
.intro-inner { max-width: 780px; margin-inline: auto; text-align: center; }

.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 60ch;
  margin-inline: auto;
}

.intro-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  border-top: 1px solid rgba(201,169,110,0.3);
  padding-top: 1.5rem;
  line-height: 1.6;
}
.intro-quote em { font-style: italic; }

/* ── Audience ─────────────────────────────────────────────── */
.audience {
  padding-block: var(--section-pad);
  background: var(--cream);

  .section-label { text-align: left; }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audience-list {
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}
.audience-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.6em;
}

.audience-closing {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.audience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,58,92,0.15);
}
.audience-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

/* ── Approach ─────────────────────────────────────────────── */
.approach {
  padding-block: var(--section-pad);
  background: var(--cream-mid);

  .section-label { text-align: center; }
}

.approach-header {
  text-align: center;
  margin-bottom: 4rem;
}
.approach-header .section-sub { margin-inline: auto; }

.approach-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.approach-pillars .pillar {
  flex: 0 0 calc((100% - 4rem) / 3);
}

.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover {
  box-shadow: 0 12px 40px rgba(27,58,92,0.1);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 100%; height: 100%; }

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.approach-statement {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.8;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── About ────────────────────────────────────────────────── */
.about {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-wrap {
  aspect-ratio: 3 / 3;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,58,92,0.16);
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  background-image: url('assets/profilna slika.jpg');
  background-size: 115%;
  background-position: center 40%;
  margin-bottom: 0.75rem;
}

.credential {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.credential strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
}
.credential span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.about-publication {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-publication:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.15);
}
.about-publication img {
  width: 52px;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.about-publication-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-publication-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-family: var(--font-sans);
}
.about-publication-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.3;
}
.about-publication-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-right {
  padding-top: 0.25rem;

  .section-label { text-align: left; }
}

.about-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-body {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.97rem;
}

.about-worked-with {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0 1.5rem;
}
.about-worked-with li {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text);
}

.about-quote {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 44ch;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding-block: var(--section-pad);
  background: var(--navy);

  .section-label { color: var(--gold-light); text-align: center; }
  .section-heading { color: #fff; }
  .section-sub { color: rgba(255,255,255,0.65); }
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-sub { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.75rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(201,169,110,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.service-card--featured {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.06);
}

.service-img-wrap {
  flex: 0 0 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.service-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.service-price {
  font-size: 0.95rem;
  color: var(--gold-light);
}
.service-price strong { font-size: 1.1rem; }

.service-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  flex: 1;
}

.service-note {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  flex: unset !important;
}

.service-body .btn-outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  margin-top: auto;
}
.service-body .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ── Tagline Strip ────────────────────────────────────────── */
.tagline-strip {
  padding-block: 5rem;
  background: linear-gradient(180deg, var(--cream-mid) 0%, #EBE4D8 100%);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.tagline-strip .container {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.tagline-strip-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.tagline-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}
.tagline-strip-list li {
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  padding: 0.6rem 1.15rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(27,58,92,0.06);
  line-height: 1;
}
.tagline-strip-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-right: 0.45rem;
  vertical-align: middle;
  opacity: 0.85;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding-block: var(--section-pad);
  background: var(--cream-mid);

  .section-label { color: var(--gold); text-align: left; }
  .section-heading { margin-block: 0.5rem 2.5rem; }
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform var(--transition);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem;
}

.testimonial-avatar {
  width: 150px;
  height: 150px;
  text-align: right;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar--initials-only .testimonial-avatar-fallback {
  display: flex;
}

.testimonial-quote p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
}

.testimonial-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials-prev,
.testimonials-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
}

.testimonials-dots button:hover {
  background: var(--gold-light);
}

.testimonials-dots button[aria-selected="true"] {
  background: var(--gold);
  transform: scale(1.2);
}

/* ── Trial Lesson CTA ─────────────────────────────────────── */
.trial {
  padding-block: var(--section-pad);
  background: var(--navy);
  color: #fff;

  .section-label { color: var(--gold-light); text-align: left; }
  .section-heading { color: #fff; margin-block: 0.6rem 1rem; }
}

.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.trial-text { flex: 1; }

.trial-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.trial-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.trial-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
}

.trial-list svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trial-action {
  flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  padding-block: var(--section-pad);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  .section-label { text-align: left; }

  p { font-size: 0.97rem; color: var(--text-muted); margin-bottom: 2rem; }
}

.contact-details {
  display: grid;
  gap: 1.1rem;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
}
.contact-details svg,
.contact-details i { color: var(--gold); flex-shrink: 0; font-size: 1.15rem; width: 20px; text-align: center; }
.contact-details a { transition: color var(--transition); }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(27,58,92,0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo {
  width: 288px;
  height: 288px;
  border-radius: var(--radius-lg);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  margin: 0;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy { font-size: 0.78rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .audience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .audience-image {
    order: -1;
  }
  .audience-image img { height: 360px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-left {
    position: static;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .about-photo-wrap {
    grid-row: span 2;
  }

  .contact-grid { gap: 3rem; }

  .approach-pillars .pillar { flex: 0 0 100%; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; }
  .service-img-wrap { flex: none; height: 220px; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-dark);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero-heading { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

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

  .tagline-strip .container { flex-direction: column; gap: 1rem; }

  .trial-inner { flex-direction: column; gap: 2rem; }
  .trial-action { width: 100%; }
  .trial-action .btn { width: 100%; max-width: 280px; }

  .about-left { grid-template-columns: 1fr; }
  .about-photo-wrap { grid-row: auto; max-width: 280px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 440px) {
  .contact-form { padding: 1.5rem; }
}

/* ── Cookie consent ───────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  padding-bottom: max(1.1rem, env(safe-area-inset-bottom));
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(201, 169, 110, 0.22);
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}

.cookie-consent-heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.cookie-consent-copy {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-consent .cookie-consent-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.42);
}

.cookie-consent .cookie-consent-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Fade-in animation ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
