/* Golden Pages International — Elegant Editorial */

:root {
  --ink: #141210;
  --ink-soft: #3a3834;
  --ink-muted: #6e6a63;
  --paper: #faf8f5;
  --paper-dark: #f0ece6;
  --white: #ffffff;
  --gold: #b37f19;
  --gold-dark: #8f6314;
  --gold-pale: #f2e6d0;
  --line: #e2ddd4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 92px;
  --section-scroll: calc(var(--header-h) + 16px);
  --shadow: 0 24px 64px rgba(20, 18, 16, 0.1);
  --shadow-sm: 0 8px 32px rgba(20, 18, 16, 0.06);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
.btn-gold:focus-visible,
.card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold-pale);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

section[id] {
  scroll-margin-top: var(--section-scroll);
}

.container {
  max-width: var(--container);
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

/* Typography utilities */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.eyebrow--light { color: var(--gold-pale); }

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.section-desc {
  max-width: 560px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-intro { margin-bottom: 3.5rem; }
.section-intro--light .section-title { color: var(--white); }

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(179, 127, 25, 0.35);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 0.875rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .nav-desktop a { color: var(--ink); }
.site-header.is-scrolled .logo-name-primary { color: var(--ink); }
.site-header.is-scrolled .logo-name-sub { color: var(--gold-dark); }

.site-header:not(.is-scrolled) .nav-desktop a { color: rgba(255, 255, 255, 0.85); }
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.15;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}

.logo-img--header {
  height: 68px;
  max-width: 88px;
}

.logo-img--footer {
  height: 72px;
  max-width: 92px;
  filter: brightness(1.05);
}

.logo-name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.logo-name-primary {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  transition: color 0.3s;
  white-space: nowrap;
}

.logo-name-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.site-header:not(.is-scrolled) .logo-name-primary {
  color: var(--white);
}

.site-header:not(.is-scrolled) .logo-name-sub {
  color: var(--gold-pale);
}

.logo-name--footer .logo-name-primary {
  color: var(--white);
}

.logo-name--footer .logo-name-sub {
  color: var(--gold-pale);
}

/* Subtle frame on dark hero so white logo background reads cleanly */
.site-header:not(.is-scrolled) .logo-img--header {
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 575.98px) {
  .logo-img--header {
    height: 52px;
    max-width: 64px;
  }

  .logo {
    gap: 0.6rem;
  }

  .logo-name-primary {
    font-size: 0.95rem;
  }

  .logo-name-sub {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 380px) {
  .logo-name {
    display: none;
  }

  .logo-img--header {
    max-width: 120px;
    height: 56px;
  }
}

.nav-desktop { display: none; gap: 2.25rem; }

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s, opacity 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--gold) !important; opacity: 1; }

.nav-desktop a.is-active {
  position: relative;
}

.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.btn-header { display: none; padding: 0.7rem 1.35rem; font-size: 0.75rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 1102;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.site-header.is-scrolled .nav-toggle {
  background: var(--paper);
  border-color: var(--line);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle.is-open span {
  background: var(--ink) !important;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  z-index: 1098;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile menu panel */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  padding: calc(var(--header-h) + 1.5rem) 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1099;
  box-shadow: -8px 0 40px rgba(20, 18, 16, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
}

.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: block;
}

.nav-mobile a:last-of-type {
  border-bottom: none;
}

.nav-mobile .btn-gold {
  align-self: stretch;
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .nav-desktop { display: flex; }
  .btn-header { display: inline-flex; }
  .nav-toggle,
  .nav-overlay,
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .nav-desktop,
  .btn-header {
    display: none !important;
  }

  .header-inner {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 18, 16, 0.88) 0%,
    rgba(20, 18, 16, 0.55) 45%,
    rgba(20, 18, 16, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
  padding-top: calc(var(--header-h) + 3rem);
  width: 100%;
}

.min-vh-hero { min-height: calc(100vh - var(--header-h) - 4rem); }

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child { border-bottom: none; }

.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-pale);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.hero-stats-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-chip {
  flex: 1;
  min-width: 90px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.hero-stat-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-pale);
  font-weight: 500;
}

.hero-stat-chip span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
}

.trust-bar-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}

.trust-bar-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-bar-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.trust-bar-item--quote p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .trust-bar-item--quote {
    border-left: 1px solid var(--line);
    padding-left: 2rem;
  }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .section { padding: 7.5rem 0; }
}

/* Alternate section backgrounds — photo + elegant overlay */
.section-bg-a,
.section-bg-b {
  isolation: isolate;
  background-color: var(--paper);
}

/* Gold accent line */
.section-bg-a::before,
.section-bg-b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(160px, 24%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
  z-index: 2;
}

/* Background photograph layer */
.section-bg-a::after,
.section-bg-b::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Warm sections: library / books atmosphere */
.section-bg-a::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 248, 245, 0.94) 0%,
      rgba(250, 248, 245, 0.88) 45%,
      rgba(250, 248, 245, 0.92) 100%
    ),
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(179, 127, 25, 0.12) 0%, transparent 55%),
    url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1920&q=80");
}

/* Ivory sections: editorial desk / writing */
.section-bg-b {
  background-color: var(--white);
}

.section-bg-b::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(179, 127, 25, 0.08) 0%, transparent 50%),
    url("https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?auto=format&fit=crop&w=1920&q=80");
}

@media (min-width: 992px) {
  .section-bg-a::after,
  .section-bg-b::after {
    background-attachment: fixed;
  }
}

@media (max-width: 991.98px) {
  .section-bg-a::after,
  .section-bg-b::after {
    background-attachment: scroll;
  }
}

.section-bg-a > .container,
.section-bg-b > .container {
  position: relative;
  z-index: 1;
}

/* Image frames — about section */
.about {
  overflow: visible;
}

.about .img-frame-col {
  padding: 0 0 1.5rem 1.5rem;
}

.img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .img-frame {
    margin: 0;
  }
}

/* Decorative gold box — same size as photo, offset behind */
.img-frame-accent {
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  left: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold);
  box-sizing: border-box;
  pointer-events: none;
}

/* Photo container — clips image to box */
.img-frame-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-left: 1.25rem;
  margin-top: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--line);
}

.img-frame-photo .img-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.check-list i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* About & Services — backgrounds via .section-bg-a / .section-bg-b */

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.service-card h3 { margin-bottom: 0.65rem; }

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s, color 0.25s;
}

.card-link:hover {
  color: var(--gold-dark);
  gap: 0.65rem;
}

button.card-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Service detail modal — above fixed header */
.modal {
  z-index: 1200;
}

.modal-backdrop {
  z-index: 1190;
}

.service-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.service-modal .modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-modal .modal-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--ink);
  margin: 0;
}

.service-modal-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.35rem;
}

.service-modal .modal-body {
  padding: 1.75rem;
}

.service-modal-img-main,
.service-modal-img-secondary {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--line);
}

.service-modal-img-main {
  aspect-ratio: 16 / 10;
  min-height: 200px;
}

.service-modal-img-secondary {
  aspect-ratio: 4 / 5;
  height: 100%;
  min-height: 160px;
}

.service-modal-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.service-modal-subtitle {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.service-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: grid;
  gap: 0.65rem;
}

.service-modal-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.service-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.service-modal .modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  gap: 0.75rem;
}

.btn-ghost-modal {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-modal:hover {
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 767.98px) {
  .service-modal-img-secondary {
    aspect-ratio: 16 / 9;
    min-height: 140px;
  }
}

/* Process */
.process {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.82);
}

.process .container { position: relative; z-index: 1; }

.process-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: background 0.3s, border-color 0.3s;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(179, 127, 25, 0.4);
}

.process-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.process-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.process-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.65;
}

/* Video Interviews */

.check-list--compact li {
  padding: 0.45rem 0;
  font-size: 0.9rem;
}

.interview-player-wrap {
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.interview-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.interview-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.interview-now-playing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.now-playing-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.now-playing-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}

.interview-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.interview-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.interview-card.is-active {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark);
}

.interview-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.interview-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.interview-card:hover .interview-card-thumb img {
  transform: scale(1.06);
}

.interview-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 16, 0.35);
  transition: background 0.3s;
}

.interview-play-icon i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  padding-left: 4px;
}

.interview-card:hover .interview-play-icon {
  background: rgba(20, 18, 16, 0.5);
}

.interview-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
}

.interview-guest {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.interview-topic {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Portfolio */

.portfolio-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-item--large img { min-height: 320px; }

@media (min-width: 768px) {
  .portfolio-item--large img { min-height: 420px; }
}

.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(20, 18, 16, 0.85));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.portfolio-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.portfolio-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
}

/* Testimonials */
.testimonials-block {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial footer strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial footer span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  background-color: var(--ink);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(20, 18, 16, 0.9) 0%, rgba(20, 18, 16, 0.78) 100%),
    url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .cta-band::before {
    background-attachment: scroll;
  }
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list i {
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.contact-list span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}

.contact-list a,
.contact-list p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.contact-list a:hover { color: var(--gold-dark); }

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 1.1rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.social-icons a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  background: var(--paper);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(179, 127, 25, 0.2);
  background: var(--white);
}

.form-success {
  padding: 1rem;
  background: var(--gold-pale);
  color: var(--ink);
  font-size: 0.9rem;
  text-align: center;
  border-left: 3px solid var(--gold);
}

.form-success[hidden] { display: none; }

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
  border-color: #b54a4a;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo--footer {
  opacity: 0.95;
}

.logo--footer:hover {
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-pale); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
}

.footer-tagline {
  margin: 0;
  font-style: italic;
  font-family: var(--serif);
  color: rgba(255, 255, 255, 0.4);
}

/* Scroll reveal & back to top */
.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@keyframes fadeUp {
  from { opacity: 0.85; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .col-lg-7 {
  animation: fadeUp 1s var(--ease) both;
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1050;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content .col-lg-7 { animation: none; }
  .service-card:hover,
  .portfolio-item:hover img { transform: none; }
  .reveal-on-scroll { transition: none; }
}
