:root {
  --ink: #111116;
  --ink-soft: #27252b;
  --paper: #fffafc;
  --white: #ffffff;
  --pink: #f01879;
  --pink-deep: #b80c59;
  --gold: #d9ad52;
  --gold-soft: #f4dfad;
  --muted: #6e6872;
  --line: rgba(17, 17, 22, .12);
  --shadow: 0 22px 60px rgba(35, 16, 28, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; background: var(--white); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  padding: 0 clamp(1.1rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 22, .96);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; font-size: .98rem; }
.brand strong { display: block; color: var(--gold-soft); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 12%;
  background: var(--pink);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}
.site-nav { display: flex; gap: 1.8rem; }
.site-nav a { color: #f7eef2; text-decoration: none; font-weight: 600; font-size: .92rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-soft); }
.menu-toggle { display: none; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .55rem .9rem; font: inherit; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.2rem, 7vw, 7rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,12,16,.98) 0%, rgba(13,12,16,.9) 35%, rgba(13,12,16,.16) 72%, rgba(13,12,16,.05) 100%); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-copy { position: relative; z-index: 2; width: min(58%, 780px); }
.hero .eyebrow { color: var(--gold-soft); }
.eyebrow { margin: 0 0 1rem; color: var(--pink-deep); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.06; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { max-width: 780px; font-size: clamp(3.15rem, 7.2vw, 6.5rem); letter-spacing: -.045em; }
h1 em { color: var(--pink); font-weight: 600; }
.hero-lede { max-width: 660px; margin: 1.75rem 0 0; color: #ded7dc; font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .8rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--pink); box-shadow: 0 10px 30px rgba(240,24,121,.25); }
.button-primary:hover { background: var(--pink-deep); }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.75); background: rgba(17,17,22,.28); }
.trust-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; color: #d9d2d7; font-size: .88rem; font-weight: 600; }
.trust-row span::before { content: "✦"; margin-right: .48rem; color: var(--gold); }

.hero-badge { position: absolute; z-index: 3; right: clamp(1.2rem, 6vw, 6rem); bottom: clamp(1.2rem, 5vw, 4rem); display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem; color: var(--ink); background: var(--gold); border-radius: 1.25rem 1.25rem .25rem 1.25rem; box-shadow: var(--shadow); }
.hero-badge strong { font-family: "Playfair Display", serif; font-size: 2.2rem; line-height: 1; }
.hero-badge span { font-size: .75rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 7vw, 7rem); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-heading h2, .about-section h2, .contact-section h2 { max-width: 720px; font-size: clamp(2.5rem, 5vw, 4.7rem); letter-spacing: -.035em; }
.services-section { background: var(--ink); color: white; }
.services-section .eyebrow { color: var(--gold-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); }
.service-card { position: relative; min-height: 580px; padding: 2rem; display: flex; flex-direction: column; background: #18171c; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -55px; top: 100px; width: 130px; height: 130px; border: 28px solid var(--pink); border-radius: 50%; opacity: .1; }
.service-card.courier::after { border-color: var(--gold); }
.service-index { color: rgba(255,255,255,.28); font-family: "Playfair Display", serif; font-size: 3rem; }
.service-label { margin: 2rem 0 .75rem; color: var(--gold-soft); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { position: relative; z-index: 1; min-height: 112px; font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.service-card > p:not(.service-label) { color: #cfcbd1; }
.service-card ul { margin: 1.4rem 0 2rem; padding: 0; list-style: none; color: #eee9ed; }
.service-card li { padding: .68rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.service-card li::before { content: "•"; margin-right: .6rem; color: var(--pink); }
.courier li::before { color: var(--gold); }
.service-card a { margin-top: auto; color: white; font-weight: 700; text-underline-offset: 5px; text-decoration-color: var(--pink); }
.courier a { text-decoration-color: var(--gold); }

.about-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-panel > p:not(.eyebrow):not(.signature) { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.signature { margin: 2rem 0 0; color: var(--pink-deep); font-family: "Playfair Display", serif; font-size: 2rem; font-style: italic; }
.signature-title { color: var(--muted); font-size: .85rem; }
.values-panel { border-top: 1px solid var(--line); }
.values-panel div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.values-panel strong { font-family: "Playfair Display", serif; font-size: 1.35rem; }
.values-panel span { color: var(--muted); }

.contact-section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 7vw, 7rem); display: flex; align-items: end; justify-content: space-between; gap: 3rem; color: white; background: var(--pink); }
.contact-section .eyebrow { color: var(--gold-soft); }
.contact-section p:not(.eyebrow) { max-width: 650px; }
.contact-actions { min-width: max-content; }
.button-light { background: white; color: var(--ink); }
.button-outline { color: white; border: 1px solid rgba(255,255,255,.8); }

footer { padding: 2.5rem clamp(1.2rem, 7vw, 7rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; background: var(--ink); color: #c9c5ca; font-size: .88rem; }
.footer-brand { color: white; font-weight: 700; }
.legal { grid-column: 1 / -1; max-width: 900px; margin: 1rem 0 0; color: #8f8991; font-size: .78rem; }

@media (max-width: 940px) {
  .hero-copy { width: min(68%, 680px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { min-height: 0; }
  .about-section { grid-template-columns: 1fr; }
  .contact-section { align-items: start; flex-direction: column; }
  .contact-actions { min-width: 0; margin-top: 0; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: inline-block; }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; padding: 1.2rem; display: none; flex-direction: column; gap: .3rem; background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .8rem; }
  .hero { min-height: 0; padding-top: 4.5rem; background: radial-gradient(circle at 5% 8%, rgba(240,24,121,.15), transparent 35%), var(--paper); }
  .hero { min-height: 680px; align-items: flex-end; padding-bottom: 3rem; }
  .hero::after { background: linear-gradient(0deg, rgba(13,12,16,.98) 0%, rgba(13,12,16,.9) 48%, rgba(13,12,16,.08) 78%); }
  .hero-photo { object-position: 67% center; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .trust-row { gap: .7rem; }
  .hero-badge { display: none; }
  .section-heading { display: block; }
  .service-card { padding: 1.5rem; }
  .values-panel div { grid-template-columns: 1fr; gap: .25rem; }
  footer { grid-template-columns: 1fr; }
  .legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
