:root {
  --ink: #171411;
  --muted: #70665e;
  --paper: #f8f4ee;
  --soft: #eee6da;
  --cream: #fffaf2;
  --gold: #b48a52;
  --rose: #8e5f53;
  --olive: #6f765d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 20, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.08);
}

.light-header .site-header {
  color: var(--ink);
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.08);
}

.brand {
  position: relative;
  display: block;
  width: clamp(170px, 18vw, 240px);
  height: clamp(42px, 4.5vw, 60px);
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.light-header .brand-logo-light {
  opacity: 0;
}

.light-header .brand-logo-dark {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
}

.nav a {
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94vh;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 64px) 56px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #1b1712;
}

.hero-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-boda {
  object-position: center;
}

.hero .hero-boda {
  object-position: center 42%;
}

.hero-comunion,
.hero-bautizo {
  object-position: center 35%;
}

.hero-paseo {
  object-position: center 48%;
}

.hero-nosotros-bn {
  object-position: center 20%;
}

.hero-nosotros-parallax {
  height: 130% !important;
  top: -15% !important;
  object-position: center 30%;
  will-change: transform;
  transition: opacity 1.2s ease !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.78), rgba(16, 13, 10, 0.24) 58%, rgba(16, 13, 10, 0.32)),
    linear-gradient(0deg, rgba(16, 13, 10, 0.72), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.92;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  font-weight: 800;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 56px;
  z-index: 3;
  width: min(280px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-card span,
.service-card span,
.package span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.page-hero {
  min-height: 78vh;
}

.compact-hero {
  min-height: 66vh;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.75fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.sales-intro {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.8fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-label {
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
}

.intro h2,
.section-heading h2,
.signature-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.intro p,
.signature-copy p,
.contact-copy p,
.process-line p,
.package p,
.service-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.intro-stats {
  display: grid;
  gap: 16px;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
  background: var(--cream);
}

.value-list strong {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
}

.value-list span {
  color: var(--muted);
  line-height: 1.45;
}

.intro-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.16);
}

.intro-stats strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.services {
  background: var(--cream);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-action {
  margin-top: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: clamp(290px, 38vw, 520px);
}

.service-card div {
  padding: 26px;
}

.service-card h3,
.package h3,
.process-line h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.signature {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--cream);
}

.about-story {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.story-copy {
  max-width: 860px;
}

.story-copy h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.values,
.local-proof,
.portfolio {
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.proof-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.signature-image {
  height: min(72vw, 720px);
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signature-copy {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.gallery {
  background: #181513;
  color: var(--white);
}

.gallery .section-heading h2 {
  max-width: 900px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #2a2621;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.portrait {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-item.full-frame img {
  object-fit: contain;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.08);
}

.story-card img {
  height: 360px;
}

.story-card div {
  padding: 26px;
}

.story-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-card h3,
.video-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.story-card p,
.video-card p {
  color: var(--muted);
  line-height: 1.6;
}

.story-card a {
  display: inline-flex;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  font-weight: 800;
}

.video-section {
  background: var(--soft);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  padding: 18px;
  border-radius: 8px;
  background: var(--cream);
}

.video-placeholder {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 22px;
  background: var(--ink);
}

.video-placeholder::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 20, 17, 0.36), rgba(23, 20, 17, 0.08));
  content: "";
}

.video-placeholder span {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 20, 17, 0.42);
  transform: translate(-50%, -50%);
}

.real-story {
  background: var(--paper);
}

.story-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.story-strip figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.story-strip figure:first-child {
  grid-row: span 2;
}

.story-strip img {
  transition: transform 0.8s ease;
}

.story-strip figure:hover img {
  transform: scale(1.04);
}

.story-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-line article {
  padding-top: 24px;
  border-top: 1px solid rgba(23, 20, 17, 0.18);
}

.process-line span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.packages {
  background: var(--soft);
}

.conversion-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--ink);
}

.conversion-band .section-heading {
  margin-bottom: 0;
}

.conversion-band .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  gap: 18px;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.06);
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.price-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.price-card a {
  align-self: end;
  justify-self: start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  font-weight: 800;
}

.price-card.featured a {
  color: var(--gold);
}

.comparison {
  background: var(--paper);
}

.delivery-trust {
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 20, 17, 0.08);
}

.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
}

.trust-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.6;
}

.service-promise {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 560px);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: var(--soft);
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: 8px;
  background: var(--cream);
}

.promise-list strong {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.promise-list span {
  color: var(--muted);
  line-height: 1.45;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
  background: var(--cream);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row.head {
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.compare-row span:first-child {
  font-weight: 800;
}

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--soft);
}

.detail-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background: var(--cream);
}

.detail-card.dark {
  color: var(--white);
  background: var(--ink);
}

.detail-card h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.detail-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.detail-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-card .button {
  margin-top: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package {
  display: grid;
  min-height: 330px;
  padding: 32px;
  border-radius: 8px;
  background: var(--cream);
}

.package.featured {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-18px);
}

.package.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.package a {
  align-self: end;
  justify-self: start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(rgba(248, 244, 238, 0.88), rgba(248, 244, 238, 0.88)),
    url("assets/comunion.jpg") center/cover;
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(16px);
}

.contact-panel a {
  padding: 22px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.12);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  color: var(--white);
  background: var(--rose);
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form .button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* El aviso de despues de enviar. Lleva [hidden] en el HTML, y como este
   bloque declara un display propio hay que devolverselo a mano: si no,
   el mensaje se ve antes de que nadie haya enviado nada. */
.contact-notice {
  display: grid;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.contact-notice[hidden] {
  display: none;
}

.contact-notice[data-state="ok"] {
  color: #1f5132;
  background: rgba(31, 81, 50, 0.1);
  border: 1px solid rgba(31, 81, 50, 0.25);
}

.contact-notice[data-state="ok-no"] {
  color: #8a2626;
  background: rgba(138, 38, 38, 0.08);
  border: 1px solid rgba(138, 38, 38, 0.25);
}

.contact-legal {
  color: rgba(23, 20, 17, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.contact-legal a {
  text-decoration: underline;
}

.profile-image {
  height: 620px;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-image img {
  object-position: center top;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid,
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card,
.expectation-card {
  padding: 28px;
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 8px;
  background: var(--cream);
}

.testimonial-card span,
.expectation-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
}

.expectation-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.testimonial-card p,
.expectation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px clamp(20px, 5vw, 64px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 18px;
}

.footer-links button {
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.legal-hero {
  padding-top: 150px;
  padding-bottom: 56px;
  color: var(--cream);
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.92;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.legal-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.1);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-table {
  display: grid;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 8px;
}

.legal-table > div {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.6fr 0.7fr;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 18px;
  width: min(860px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(23, 20, 17, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner h2 {
  margin: 6px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--gold);
  font-weight: 800;
}

.cookie-options {
  display: grid;
  gap: 10px;
  align-content: center;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    display: grid;
    gap: 0;
    padding: 96px 20px 24px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 20, 17, 0.12);
    font-size: 20px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro,
  .sales-intro,
  .about-story,
  .about-profile,
  .signature,
  .split-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .pricing-grid,
  .proof-grid,
  .story-grid,
  .story-strip,
  .video-grid,
  .trust-grid,
  .testimonial-grid,
  .expectation-grid,
  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .conversion-band,
  .service-promise,
  .details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero {
    min-height: 94vh;
    padding: 116px 18px 28px;
  }

  h1 {
    font-size: 44px;
    line-height: 0.98;
  }

  .section {
    padding: 64px 18px;
  }

  .intro h2,
  .section-heading h2,
  .signature-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .service-grid,
  .package-grid,
  .pricing-grid,
  .proof-grid,
  .story-grid,
  .story-strip,
  .video-grid,
  .trust-grid,
  .testimonial-grid,
  .expectation-grid,
  .process-line,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .compact-hero {
    min-height: 78vh;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    transform: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item.portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .story-strip figure:first-child {
    grid-row: auto;
  }

  .signature-image {
    min-height: 420px;
  }

  .profile-image {
    min-height: 420px;
    max-height: 560px;
  }

  .package.featured {
    transform: none;
  }

  .hero-img {
    transform: none !important;
    transition: opacity 1.2s ease !important;
  }

  .footer {
    align-items: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-links {
    align-items: center;
    justify-content: center;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    overflow: auto;
    padding: 18px;
  }

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

  .cookie-actions .button {
    width: 100%;
  }
}

@media (max-width: 374px) {
  .brand {
    width: 148px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Blog Styling
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 80px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(23, 20, 17, 0.06);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.blog-card .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
}

.blog-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.blog-card-link {
  color: var(--gold) !important;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.blog-card-link:hover::after {
  transform: translateX(4px);
}

/* Individual Post Detail */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
}

.post-header {
  text-align: center;
  margin-bottom: 48px;
}

.post-header .eyebrow {
  margin-bottom: 16px;
}

.post-header h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}

.post-meta {
  font-size: 14px;
  color: var(--muted);
}

.post-featured-media {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--soft);
}

.post-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}

.post-body p {
  margin: 0 0 28px;
}

.post-body h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--ink);
  margin: 48px 0 20px;
}

.post-body ol, .post-body ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 12px;
}

.post-body strong {
  color: var(--ink);
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--gold) !important;
  font-weight: 800;
  text-decoration: none;
}

.post-back::before {
  content: "←";
  transition: transform 0.2s ease;
}

.post-back:hover::before {
  transform: translateX(-4px);
}
