 

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --bg: #100f0d;
  --bg-2: #1a1815;
  --panel: #f6efe3;
  --panel-soft: #fbf7ef;
  --panel-dark: #171512;
  --panel-mid: #26221c;
  --line: rgba(214, 194, 153, 0.24);
  --line-strong: rgba(214, 194, 153, 0.58);
  --text: #f7f0e5;
  --muted: #b8ad9b;
  --brand: #c7a663;
  --brand-light: #e2ca91;
  --brand-pale: #f1e4c6;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-tight {
  padding: 82px 0;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge::before,
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--brand);
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.03;
  margin: 0;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.32rem, 2.4vw, 2.1rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.text-dark {
  color: #171512;
}

.text-muted-dark {
  color: #706655;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand-light);
}

.btn-primary {
  background: var(--brand);
  color: #12100d;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
}

.btn-dark {
  color: var(--text);
  background: var(--panel-dark);
  border-color: var(--panel-dark);
}

.btn-cream {
  color: #181510;
  background: var(--panel);
  border-color: var(--panel);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 15, 13, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand-block {
  display: grid;
  gap: 4px;
  min-width: 260px;
}

.brand-name {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-line {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 430px;
}

.nav-panel {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 30px 0 27px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--brand-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-editorial {
  padding: 82px 0 94px;
  background:
    radial-gradient(circle at 8% 20%, rgba(199, 166, 99, 0.15), transparent 30%),
    linear-gradient(90deg, #100f0d 0%, #171512 48%, #f6efe3 48%, #f6efe3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 72px minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.vertical-rail {
  min-height: 610px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-image-wrap {
  position: relative;
  min-height: 640px; 
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  position: relative;
  width: 100%;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246, 239, 227, 0.45);
  pointer-events: none;
}

.hero-content {
  margin-top: 74px;
  background: var(--panel);
  color: #171512;
  padding: 64px 62px 54px;
  border: 1px solid rgba(23, 21, 18, 0.14);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-top: 18px;
  color: #15120e;
}

.hero-content h1 em {
  color: var(--brand);
  font-style: italic;
}

.hero-content .lead {
  color: #5f5649;
  margin: 26px 0 34px;
  max-width: 650px;
}

.trust-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23, 21, 18, 0.13);
  margin-top: 34px;
  border: 1px solid rgba(23, 21, 18, 0.12);
}

.ledger-item {
  background: var(--panel-soft);
  padding: 18px 16px;
}

.ledger-item span {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c7140;
}

.ledger-item strong {
  display: block;
  margin-top: 8px;
  color: #1d1914;
  font-size: 0.88rem;
  line-height: 1.35;
}

.address-card {
  position: absolute;
  left: -116px;
  bottom: -46px;
  max-width: 330px;
  padding: 24px;
  background: #171512;
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.address-card span {
  display: block;
  color: var(--brand-light);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.address-card p {
  color: var(--brand-pale);
  font-size: 0.95rem;
  line-height: 1.55;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--brand);
  color: #14110d;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  min-width: 200%;
  animation: marqueeMove 32s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee span::after {
  content: '◆';
  margin-left: 22px;
  color: rgba(20, 17, 13, 0.55);
  font-size: 0.62rem;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 0.5fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 58px;
}

.section-head h2 {
  margin-top: 14px;
}

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

.preview-card {
  position: relative;
  padding: 34px 30px 32px;
  min-height: 342px;
  background: var(--panel-mid);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.preview-card:nth-child(2) {
  margin-top: 42px;
}

.preview-card:nth-child(3) {
  margin-top: 18px;
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.35s ease;
}

.preview-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  background: #2d281f;
}

.preview-card:hover::before {
  width: 100%;
}

.card-number {
  color: var(--brand-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.icon-box {
  width: 58px;
  height: 58px;
  margin: 34px 0 34px;
  display: grid;
  place-items: center;
  background: rgba(199, 166, 99, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--brand-light);
  font-size: 1.35rem;
}

.preview-card h3 {
  margin-bottom: 20px;
}

.preview-card p {
  color: var(--muted);
}

.cream-section {
  background: var(--panel);
  color: #171512;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(320px, 0.82fr);
  gap: 76px;
  align-items: center;
}

.framed-copy {
  padding: 58px;
  border: 1px solid rgba(23, 21, 18, 0.16);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.framed-copy h2 {
  margin: 18px 0 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #352f27;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--brand);
  font-weight: 900;
}

.image-frame {
  position: relative; 
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: -24px 24px 24px -24px;
  border: 1px solid rgba(23, 21, 18, 0.28);
  z-index: 0;
}

.image-frame img {
  position: relative;
  z-index: 1;
}

.corner-bracket::after {
  content: '';
  position: absolute;
  right: -18px;
  top: -18px;
  width: 88px;
  height: 88px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  z-index: 2;
}

.float-note {
  position: absolute;
  left: -38px;
  bottom: 34px;
  z-index: 3;
  max-width: 250px;
  padding: 20px;
  background: #171512;
  color: var(--brand-pale);
  border: 1px solid var(--line-strong);
  font-size: 0.88rem;
  line-height: 1.55;
}

.process-section {
  background:
    linear-gradient(rgba(16, 15, 13, 0.95), rgba(16, 15, 13, 0.95)),
    radial-gradient(circle at 80% 10%, rgba(199, 166, 99, 0.18), transparent 36%);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 58px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: var(--line);
}

.process-card {
  position: relative;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.process-card:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
}

.process-card strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand-light);
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  font-family: 'Playfair Display', serif;
  line-height: 0.8;
  margin-bottom: 38px;
}

.process-card h3 {
  font-size: 1.32rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.process-card p {
  color: var(--muted);
}

.quote-section {
  background: #0c0b0a;
}

.quote-grid-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.2fr);
  gap: 70px;
  align-items: start;
}

.quote-intro h2 {
  margin: 18px 0 24px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-card {
  padding: 30px;
  min-height: 252px;
  border: 1px solid var(--line);
  background: #171512;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.quote-card:nth-child(2),
.quote-card:nth-child(3) {
  transform: translateY(28px);
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}

.quote-mark {
  display: block;
  color: var(--brand);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.8;
  margin-bottom: 12px;
}

.quote-card q {
  display: block;
  color: var(--brand-pale);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.45;
  quotes: none;
}

.quote-card cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-style: normal;
}

.cta-band {
  background: linear-gradient(135deg, #9f7e3d, #c7a663 52%, #82622c);
  color: #17120c;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.cta-copy h2 {
  margin: 18px 0 24px;
}

.cta-copy p {
  max-width: 650px;
  color: rgba(23, 18, 12, 0.78);
  margin-bottom: 34px;
}

.cta-details {
  display: grid;
  border: 1px solid rgba(23, 18, 12, 0.34);
  background: rgba(246, 239, 227, 0.22);
}

.cta-detail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(23, 18, 12, 0.24);
}

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

.cta-detail-row span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-detail-row strong {
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-footer {
  background: #0b0a09;
  color: var(--text);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.05fr 0.8fr;
  gap: 46px;
  padding: 74px 0 54px;
}

.footer-col h3,
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: var(--brand-light);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.page-hero {
  padding: 86px 0 70px;
  background:
    linear-gradient(135deg, rgba(16, 15, 13, 0.98), rgba(31, 28, 23, 0.98)),
    radial-gradient(circle at 80% 10%, rgba(199, 166, 99, 0.2), transparent 34%);
}

.page-panel {
  display: grid;
  grid-template-columns: 54px minmax(340px, 1fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: stretch;
  padding: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-lg);
}

.page-copy h1 {
  margin: 18px 0 24px;
  max-width: 850px;
}

.page-copy .lead {
  max-width: 760px;
}

.side-card {
  align-self: end;
  margin-top: 70px;
  padding: 30px;
  background: var(--panel);
  color: #171512;
  border: 1px solid rgba(23, 21, 18, 0.16);
  box-shadow: var(--shadow);
}

.side-card h2,
.side-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.side-card p,
.side-card a {
  display: block;
  color: #5d5548;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.detail-stack {
  display: grid;
  gap: 96px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.88fr);
}

.service-detail:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246, 239, 227, 0.4);
}

.service-copy {
  padding: 42px;
  background: var(--panel);
  color: #171512;
  border: 1px solid rgba(23, 21, 18, 0.14);
  box-shadow: var(--shadow);
}

.service-detail.overlap .service-copy {
  margin-left: -86px;
  position: relative;
  z-index: 2;
}

.service-detail.dark-overlay .service-copy {
  margin-left: -74px;
  background: #171512;
  color: var(--text);
  border-color: var(--line-strong);
  position: relative;
  z-index: 2;
}

.service-detail.dark-overlay .service-copy p,
.service-detail.dark-overlay .service-copy li {
  color: var(--muted);
}

.service-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #8c7140;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-copy h3 {
  margin-bottom: 22px;
}

.service-copy p {
  color: #62584a;
  margin-bottom: 24px;
}

.service-copy ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.service-copy li {
  position: relative;
  padding-left: 28px;
  color: #302a23;
}

.service-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 11px;
  height: 1px;
  background: var(--brand);
}

.philosophy {
  background: #0d0c0a;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: center;
}

.philosophy-image {
  min-height: 530px;
  position: relative;
}

.philosophy-copy h2 {
  margin: 18px 0 24px;
}

.number-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  counter-reset: philosophy;
}

.number-item {
  counter-increment: philosophy;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}

.number-item::before {
  content: counter(philosophy, decimal-leading-zero);
  color: var(--brand-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  line-height: 1;
}

.number-item p {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 0.82fr);
  gap: 80px;
  align-items: center;
}

.story-copy h2 {
  margin: 18px 0 24px;
}

.values-section {
  background: #0c0b0a;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #171512;
  min-height: 280px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: var(--brand);
  background: #211d17;
}

.value-card .icon-box {
  margin: 0 0 34px;
}

.value-card h3 {
  font-size: 1.24rem;
  margin-bottom: 18px;
}

.value-card p {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  background: var(--panel);
  color: #171512;
  border: 1px solid rgba(23, 21, 18, 0.13);
  overflow: hidden;
}

.team-image {
  height: 290px;
  overflow: hidden;
  background: #1a1815;
}

.team-image img {
  filter: grayscale(0.8);
  transform: scale(1.01);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.team-card:hover img {
  filter: grayscale(0.15);
  transform: scale(1.08);
}

.team-content {
  padding: 24px;
}

.team-content h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.team-role {
  display: block;
  color: #8c7140;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-content p {
  color: #5d5548;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.contact-panel {
  padding: 44px;
  background: #171512;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.form-panel h2 {
  margin: 18px 0 34px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.contact-card.full {
  grid-column: 1 / -1;
}

.contact-card span {
  display: block;
  color: var(--brand-light);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: var(--brand-pale);
  overflow-wrap: anywhere;
}

.form-panel {
  padding: 44px;
  background: var(--panel);
  color: #171512;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #4c4438;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 18, 0.18);
  background: var(--panel-soft);
  color: #171512;
  padding: 14px 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(199, 166, 99, 0.15);
}

.form-message {
  color: #6c5728;
  font-weight: 700;
  margin-top: 18px;
}

.faq-section {
  background: #0c0b0a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.faq-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: #171512;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--brand);
  transition: width 0.3s ease;
}

.faq-card:hover::before {
  width: 4px;
}

.faq-card h3 {
  font-size: 1.24rem;
  margin-bottom: 14px;
}

.faq-card p {
  color: var(--muted);
}

.legal-wrap {
  background: var(--panel);
  color: #171512;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--panel-soft);
  border: 1px solid rgba(23, 21, 18, 0.13);
}

.legal-aside h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 18px;
}

.legal-aside p,
.legal-aside a {
  display: block;
  color: #5d5548;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.legal-content {
  padding: 54px;
  background: var(--panel-soft);
  border: 1px solid rgba(23, 21, 18, 0.13);
}

.legal-content h2 {
  font-size: 1.58rem;
  margin: 38px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #51483b;
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1200;
  width: min(420px, calc(100% - 48px));
  padding: 24px;
  background: #11100e;
  color: var(--text);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-editorial {
    background: var(--bg);
  }

  .hero-grid,
  .why-grid,
  .quote-grid-wrap,
  .cta-grid,
  .page-panel,
  .philosophy-grid,
  .story-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .vertical-rail {
    min-height: 54px;
    writing-mode: horizontal-tb;
    transform: none;
    border: 1px solid var(--line);
  }

  .hero-content {
    margin-top: 0;
  }

  .address-card {
    position: static;
    margin-top: 24px;
    max-width: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-preview-grid,
  .values-grid,
  .team-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-image {
    order: 0;
  }

  .service-detail.overlap .service-copy,
  .service-detail.dark-overlay .service-copy {
    margin-left: 0;
  }

  .side-card {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand-block {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-line {
    font-size: 0.55rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 24px;
    background: #100f0d;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

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

  .nav-links {
    display: grid;
    gap: 0;
    margin-bottom: 24px;
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    bottom: -1px;
  }

  .hero-editorial {
    padding: 44px 0 70px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-image-wrap {
    min-height: 420px;
  }

  .hero-content,
  .framed-copy,
  .service-copy,
  .contact-panel,
  .form-panel,
  .legal-content,
  .page-panel {
    padding: 30px;
  }

  .trust-ledger,
  .service-preview-grid,
  .values-grid,
  .team-grid,
  .process-grid,
  .quote-grid,
  .footer-grid,
  .faq-grid,
  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .preview-card:nth-child(2),
  .preview-card:nth-child(3),
  .quote-card:nth-child(2),
  .quote-card:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .image-frame,
  .philosophy-image,
  .service-image {
    min-height: 360px;
  }

  .image-frame::before {
    inset: -12px 12px 12px -12px;
  }

  .float-note {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .cta-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 52px 0;
  }

  .number-item {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}
