@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap');

:root {
  --ink: #0c1a2b;
  --ink-2: #14283e;
  --copper: #c89155;
  --copper-dark: #9c6737;
  --ivory: #f7f2e9;
  --sand: #e8dfd2;
  --white: #ffffff;
  --body: #4e5966;
  --line: rgba(12, 26, 43, .14);
  --shadow: 0 24px 60px rgba(12, 26, 43, .13);
  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); margin-top: 0; line-height: 1.12; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.28rem; font-weight: 600; }
p:last-child { margin-bottom: 0; }

.skip-link { position: fixed; top: -80px; left: 18px; z-index: 2000; background: var(--white); padding: 10px 16px; }
.skip-link:focus { top: 18px; }
.container { max-width: 1240px; }
.section { padding: 110px 0; }
.section-sm { padding: 74px 0; }
.bg-ink { background: var(--ink); color: rgba(255,255,255,.72); }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-ivory { background: var(--ivory); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--copper-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.bg-ink .eyebrow { color: #ddb17e; }
.lead-copy { max-width: 690px; font-size: 1.1rem; }

.btn-brand, .btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 25px;
  border: 1px solid var(--copper);
  border-radius: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .25s ease;
}
.btn-brand { color: var(--ink); background: var(--copper); }
.btn-brand:hover, .btn-brand:focus { color: var(--white); background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); }
.btn-outline-brand { color: var(--ink); background: transparent; border-color: rgba(12,26,43,.35); }
.btn-outline-brand:hover, .btn-outline-brand:focus { color: var(--white); background: var(--ink); border-color: var(--ink); }
.bg-ink .btn-outline-brand { color: var(--white); border-color: rgba(255,255,255,.4); }
.bg-ink .btn-outline-brand:hover { color: var(--ink); background: var(--white); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: .25s ease; }
.site-header.scrolled, .site-header.inner-header { background: rgba(247,242,233,.97); box-shadow: 0 8px 32px rgba(12,26,43,.08); backdrop-filter: blur(14px); }
.navbar { min-height: 92px; padding: 10px 0; }
.navbar-brand img { width: 300px; height: auto; }
.site-header:not(.scrolled):not(.inner-header) .navbar-brand img { filter: brightness(0) invert(1); }
.navbar-nav { align-items: center; gap: 6px; }
.nav-link { color: var(--white); padding: 10px 13px !important; font-size: .77rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-link:hover, .nav-link:focus, .nav-link.active { color: #edc99f; }
.site-header.scrolled .nav-link, .site-header.inner-header .nav-link { color: var(--ink); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active,
.site-header.inner-header .nav-link:hover, .site-header.inner-header .nav-link.active { color: var(--copper-dark); }
.nav-cta { margin-left: 12px; padding: 10px 17px; color: var(--ink) !important; background: var(--copper); border: 1px solid var(--copper); }
.nav-cta:hover { color: var(--white) !important; background: var(--copper-dark); }
.navbar-toggler { border: 0; box-shadow: none !important; }
.menu-bars { width: 28px; display: grid; gap: 6px; }
.menu-bars span { display: block; height: 2px; background: var(--white); }
.site-header.scrolled .menu-bars span, .site-header.inner-header .menu-bars span { background: var(--ink); }

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink) url('../images/hero.jpg') center/cover no-repeat;
  isolation: isolate;
}
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,18,31,.95) 0%, rgba(7,18,31,.78) 42%, rgba(7,18,31,.25) 75%, rgba(7,18,31,.48) 100%); }
.hero::after { content: ''; position: absolute; inset: auto 0 0; z-index: -1; height: 42%; background: linear-gradient(transparent, rgba(7,18,31,.72)); }
.hero-content { max-width: 840px; padding: 200px 0 115px; }
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero .hero-kicker { color: #e7bd8a; }
.hero-copy { max-width: 680px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-mark { position: absolute; right: 5vw; bottom: 50px; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: clamp(8rem, 17vw, 18rem); line-height: .8; }

.trust-bar { position: relative; z-index: 4; margin-top: -1px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.13); }
.trust-item { min-height: 104px; display: flex; gap: 18px; align-items: center; color: rgba(255,255,255,.68); border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 0; }
.trust-number { color: var(--copper); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.trust-text { font-size: .74rem; font-weight: 600; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }

.image-frame { position: relative; }
.image-frame::before { content: ''; position: absolute; left: -22px; bottom: -22px; width: 45%; height: 55%; background: var(--copper); z-index: 0; }
.image-frame img { position: relative; z-index: 1; width: 100%; min-height: 560px; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; right: -28px; bottom: 36px; z-index: 2; max-width: 230px; padding: 23px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.image-note strong { display: block; color: var(--copper); font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }

.service-card { height: 100%; padding: 38px 32px; background: var(--white); border: 1px solid var(--line); transition: .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-index { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; color: var(--copper-dark); font-family: var(--serif); font-size: 2rem; }
.service-index i { font-size: 1.4rem; transition: transform .25s; }
.service-card:hover .service-index i { transform: translate(4px,-4px); }
.service-card h3 { margin-bottom: 15px; }

.statement { position: relative; overflow: hidden; }
.statement::after { content: 'RTF'; position: absolute; right: -30px; bottom: -90px; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: 24rem; line-height: 1; }
.statement blockquote { position: relative; z-index: 1; max-width: 1000px; margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.4rem); line-height: 1.16; }

.process-step { position: relative; padding: 30px 28px 30px 76px; border-top: 1px solid var(--line); }
.process-step:last-child { border-bottom: 1px solid var(--line); }
.step-no { position: absolute; top: 27px; left: 12px; color: var(--copper-dark); font-family: var(--serif); font-size: 2rem; }

.page-hero { padding: 220px 0 105px; color: var(--white); background: var(--ink); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -12%; top: -35%; width: 650px; height: 650px; border: 1px solid rgba(200,145,85,.28); border-radius: 50%; box-shadow: 0 0 0 95px rgba(200,145,85,.04), 0 0 0 190px rgba(200,145,85,.03); }
.page-hero h1 { position: relative; z-index: 1; max-width: 1000px; color: var(--white); font-size: clamp(3.2rem, 7vw, 6.5rem); }
.breadcrumbs { position: relative; z-index: 1; display: flex; gap: 9px; margin-bottom: 26px; color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs a { color: #e5b77f; }

.value-card { padding: 32px 0; border-top: 1px solid var(--line); }
.value-card .value-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; color: var(--copper-dark); border: 1px solid var(--copper); }
.value-card .value-icon i { font-size: 1.25rem; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
.feature-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: '\f26e'; position: absolute; left: 0; top: 16px; color: var(--copper-dark); font-family: 'bootstrap-icons'; }
.service-detail { padding: 34px; background: var(--white); border-left: 3px solid var(--copper); box-shadow: 0 16px 45px rgba(12,26,43,.08); }
.service-detail + .service-detail { margin-top: 22px; }
.service-detail h3 { margin-bottom: 10px; }

.creative-image { min-height: 620px; width: 100%; object-fit: cover; }
.brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.brand-tile { min-height: 190px; padding: 28px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); }
.brand-tile i { color: var(--copper); font-size: 1.7rem; }
.brand-tile h3 { margin: 24px 0 8px; }

.contact-panel { padding: clamp(32px, 5vw, 62px); background: var(--white); box-shadow: var(--shadow); }
.contact-aside { height: 100%; padding: clamp(36px, 5vw, 60px); color: rgba(255,255,255,.72); background: var(--ink); }
.contact-aside h2, .contact-aside h3 { color: var(--white); }
.contact-point { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-point i { color: var(--copper); font-size: 1.2rem; }
.form-label { color: var(--ink); font-size: .77rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.form-control, .form-select { min-height: 54px; padding: 12px 15px; border-radius: 0; border-color: rgba(12,26,43,.22); }
textarea.form-control { min-height: 150px; }
.form-control:focus, .form-select:focus { border-color: var(--copper); box-shadow: 0 0 0 .2rem rgba(200,145,85,.16); }
.form-check-input:checked { background-color: var(--copper-dark); border-color: var(--copper-dark); }
.form-status { display: none; margin-top: 16px; }

.cta-band { background: var(--copper); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.site-footer { padding: 78px 0 22px; color: rgba(255,255,255,.65); background: #07121f; }
.footer-logo { width: 280px; filter: brightness(0) invert(1); opacity: .9; }
.footer-title { color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a:hover { color: var(--copper); }
.footer-bottom { margin-top: 58px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.back-top { position: fixed; right: 22px; bottom: 22px; z-index: 800; width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.25); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.back-top.show { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
  .section { padding: 82px 0; }
  .navbar { min-height: 78px; }
  .navbar-brand img { width: 245px; }
  .navbar-collapse { margin: 10px -12px -10px; padding: 16px 18px 24px; background: var(--ivory); box-shadow: 0 25px 40px rgba(12,26,43,.12); }
  .navbar-nav { align-items: stretch; }
  .nav-link { color: var(--ink) !important; padding: 11px 8px !important; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .hero { min-height: 740px; }
  .hero-content { padding: 170px 0 85px; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .image-frame { margin-bottom: 55px; }
  .image-note { right: 8px; }
  .creative-image { min-height: 470px; }
}

@media (max-width: 575.98px) {
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  .navbar-brand img { width: 205px; }
  .hero { min-height: 690px; }
  .hero-content { padding-top: 145px; }
  .hero h1 { font-size: 3.35rem; }
  .hero-actions .btn-brand, .hero-actions .btn-outline-brand { width: 100%; }
  .page-hero { padding: 160px 0 75px; }
  .page-hero h1 { font-size: 3.35rem; }
  .image-frame img { min-height: 390px; }
  .image-note { position: relative; right: auto; bottom: auto; z-index: 2; max-width: calc(100% - 30px); margin: -40px 0 0 30px; }
  .brand-grid { grid-template-columns: 1fr; }
  .contact-panel, .contact-aside { padding: 30px 22px; }
  .statement::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
