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

:root {
  --bg: #f7f0e4;
  --bg-2: #efe3d1;
  --panel: #fbf6ed;
  --panel-soft: #eee2d0;
  --panel-dark: #11100d;
  --panel-mid: #26231d;
  --line: rgba(33, 30, 24, 0.14);
  --line-strong: rgba(33, 30, 24, 0.34);
  --text: #1c1914;
  --muted: #70685c;
  --brand: #b08a4b;
  --brand-light: #d9bd80;
  --brand-pale: #ead8b2;
  --shadow: 0 18px 50px rgba(20, 18, 14, 0.10);
  --shadow-lg: 0 34px 90px rgba(12, 10, 8, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

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

.section {
  padding: 112px 0;
}

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

.eyebrow,
.badge,
.service-tag,
.role,
.quote-author,
.vertical-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow::before,
.badge::before,
.service-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.03;
  color: var(--text);
}

h1 {
  font-size: clamp(3.35rem, 7.2vw, 6.35rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.35rem, 4.1vw, 4.35rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.45rem, 1.75vw, 2.1rem);
  letter-spacing: -0.025em;
}

.accent-word {
  font-style: italic;
  color: var(--brand);
  white-space: nowrap;
}

.lead {
  max-width: 720px;
  font-size: 1.1rem;
  color: #5c554b;
}

.dark .lead,
.dark p,
.dark .check-list li,
.site-footer p,
.site-footer li,
.site-footer a,
.cta-band p {
  color: rgba(255, 248, 236, 0.72);
}

.dark h1,
.dark h2,
.dark h3,
.site-footer h3,
.site-footer strong,
.cta-band h2 {
  color: #fff8ec;
}

.button,
button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid var(--panel-dark);
  background: var(--panel-dark);
  color: #fff8ec;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.button:hover::after {
  transform: scaleX(1);
}

.button.secondary {
  background: transparent;
  color: var(--panel-dark);
}

.button.light-outline {
  background: transparent;
  border-color: rgba(255, 248, 236, 0.62);
  color: #fff8ec;
}

.button.brand-fill {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--panel-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 16, 13, 0.96);
  border-bottom: 1px solid rgba(217, 189, 128, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff8ec;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand);
  color: var(--brand-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 248, 236, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 189, 128, 0.5);
  background: transparent;
  cursor: pointer;
}

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

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

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

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

.hero {
  min-height: calc(100vh - 82px);
  padding: 62px 0 96px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: 72px;
  align-items: stretch;
}

.hero-copy {
  padding-top: 42px;
}

.hero-copy .lead {
  max-width: 610px;
  margin-top: 26px;
}

.hero-media-wrap {
  position: relative;
  min-height: 650px;
  padding: 24px 0 0 26px;
}

.hero-media-wrap::before {
  content: "";
  position: absolute;
  inset: 0 30px 46px 0;
  border: 1px solid var(--brand);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 58px) 100%, 0 100%);
  box-shadow: var(--shadow-lg);
  background: var(--panel-soft);
}

.hero-image img,
.framed-image img,
.service-image img,
.team-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease, filter 0.35s ease;
}

.hero-image:hover img,
.framed-image:hover img,
.service-image:hover img,
.team-card:hover img {
  transform: scale(1.045);
}

.address-card {
  position: absolute;
  right: -18px;
  bottom: 74px;
  width: min(330px, calc(100% - 32px));
  padding: 26px;
  background: rgba(251, 246, 237, 0.94);
  border: 1px solid var(--brand);
  box-shadow: var(--shadow-lg);
}

.address-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.address-card p {
  margin-bottom: 0;
  color: var(--text);
}

.data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.data-cell {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
}

.data-cell:last-child {
  border-right: 0;
  padding-left: 18px;
}

.data-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-cell strong {
  display: block;
  margin-top: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.marquee {
  overflow: hidden;
  background: var(--brand);
  border-top: 1px solid rgba(17, 16, 13, 0.26);
  border-bottom: 1px solid rgba(17, 16, 13, 0.26);
  color: var(--panel-dark);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

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

.marquee span::after {
  content: "◆";
  font-size: 0.62rem;
  color: rgba(17, 16, 13, 0.62);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading p {
  max-width: 550px;
  margin-left: auto;
}

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

.service-card,
.value-card,
.step-card,
.quote-card,
.faq-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(251, 246, 237, 0.58);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card {
  min-height: 350px;
  padding: 34px;
}

.service-card::before,
.value-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.35s ease;
}

.service-card:hover,
.value-card:hover,
.step-card:hover,
.quote-card:hover,
.faq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 138, 75, 0.72); 
}

.service-card:hover::before,
.value-card:hover::before,
.faq-card:hover::before {
  width: 100%;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  background: var(--brand);
  color: var(--panel-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.service-card p,
.value-card p,
.step-card p,
.quote-card p,
.faq-card p {
  margin-bottom: 0;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background: var(--panel-dark);
  color: #fff8ec;
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 189, 128, 0.07) 1px, transparent 1px) 0 0 / 82px 82px,
    radial-gradient(circle at 14% 18%, rgba(176, 138, 75, 0.20), transparent 34%),
    radial-gradient(circle at 86% 74%, rgba(255, 248, 236, 0.08), transparent 28%);
}

.dark-band > .container,
.cta-band > .container {
  position: relative;
  z-index: 1;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 76px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #4d463d;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--panel-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.dark .check-list li::before {
  color: var(--panel-dark);
}

.framed-image {
  position: relative;
  min-height: 500px;
  overflow: hidden; 
}

 

.framed-image::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid var(--brand-light);
  border-left: 1px solid var(--brand-light);
}

.framed-image::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid var(--brand-light);
  border-bottom: 1px solid var(--brand-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.step-card {
  min-height: 330px;
  padding: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.step-card:last-child {
  border-right: 0;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleY(1);
}

.step-number {
  display: block;
  margin-bottom: 38px;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.85rem;
  line-height: 0.8;
}

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

.quote-card {
  padding: 34px;
  min-height: 280px;
  background: rgba(255, 248, 236, 0.055);
  border-color: rgba(255, 248, 236, 0.14);
}

.quote-card::before {
  content: "“";
  display: block;
  margin-bottom: 18px;
  color: var(--brand-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.15rem;
  line-height: 0.62;
}

.quote-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: var(--brand);
}

.quote-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.22;
  color: rgba(255, 248, 236, 0.84);
}

.quote-author {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--brand-light);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--panel-dark);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(17, 16, 13, 0.22), transparent 42%),
    linear-gradient(90deg, rgba(255, 248, 236, 0.16) 1px, transparent 1px) 0 0 / 76px 76px;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.cta-band .badge,
.cta-band h2,
.cta-band p {
  color: var(--panel-dark);
}

.contact-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(17, 16, 13, 0.34);
  background: rgba(255, 248, 236, 0.22);
}

.contact-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(17, 16, 13, 0.20);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  font-weight: 700;
}

.site-footer {
  padding: 74px 0 0;
  background: var(--panel-dark);
  color: #fff8ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr 0.75fr;
  gap: 48px;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 22px;
  font-size: 1.55rem;
}

.site-footer ul {
  display: grid;
  gap: 12px;
  margin: 0;
}

.site-footer a {
  position: relative;
  width: fit-content;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--brand-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  color: rgba(255, 248, 236, 0.58);
  font-size: 0.78rem;
}

.page-hero {
  padding: 78px 0 48px;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.43fr);
  gap: 56px;
  min-height: 430px;
  padding: clamp(34px, 5vw, 72px);
  background: var(--panel-dark);
  border: 1px solid rgba(217, 189, 128, 0.34);
  box-shadow: var(--shadow-lg);
}

.page-hero-panel h1 {
  max-width: 860px;
  color: #fff8ec;
}

.page-hero-panel .lead {
  color: rgba(255, 248, 236, 0.72);
}

.side-note {
  align-self: end;
  padding: 28px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(217, 189, 128, 0.34);
}

.side-note p {
  margin-bottom: 18px;
  color: rgba(255, 248, 236, 0.72);
}

.side-note strong,
.side-note a {
  display: block;
  color: #fff8ec;
}

.service-stack {
  display: grid;
  gap: 76px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.93fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.service-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.93fr);
}

.service-row.reverse .service-image {
  order: 2;
}

.service-image {
  height: 400px;
  overflow: hidden;
  background: var(--panel-soft);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.service-copy {
  padding: 24px 0;
}

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

.bullet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 32px;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  background: var(--brand);
}

.number-list {
  display: grid;
  gap: 24px;
  counter-reset: item;
  margin: 32px 0 0;
}

.number-list li {
  position: relative;
  padding: 0 0 24px 64px;
  border-bottom: 1px solid rgba(255, 248, 236, 0.14);
  color: rgba(255, 248, 236, 0.74);
}

.number-list li::before {
  counter-increment: item;
  content: "0" counter(item);
  position: absolute;
  left: 0;
  top: -8px;
  color: var(--brand-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

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

.value-card {
  min-height: 290px;
  padding: 34px;
  background: rgba(255, 248, 236, 0.055);
  border-color: rgba(255, 248, 236, 0.14);
}

.value-card p {
  color: rgba(255, 248, 236, 0.7);
}

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

.team-card {
  border-bottom: 1px solid var(--line-strong);
}

.team-image {
  height: 290px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--panel-soft);
}

.team-card img {
  filter: grayscale(0.82) contrast(1.05);
}

.team-card:hover img {
  filter: grayscale(0.25) contrast(1.02);
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: 1.42rem;
}

.role {
  margin-bottom: 14px;
  color: var(--brand);
}

.team-card p {
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
}

.contact-panel,
.form-panel {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--line);
}

.contact-panel {
  background: var(--panel-dark);
  color: #fff8ec;
}

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

.contact-card {
  padding: 22px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  background: rgba(255, 248, 236, 0.055);
}

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

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

.contact-card a,
.contact-card strong {
  color: #fff8ec;
  font-size: 1.05rem;
  font-weight: 700;
  word-break: break-word;
}

.form-panel {
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fffaf2;
  color: var(--text);
  font: inherit;
  padding: 14px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(176, 138, 75, 0.14);
}

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

.faq-card {
  min-height: 230px;
  padding: 32px;
  background: rgba(255, 248, 236, 0.055);
  border-color: rgba(255, 248, 236, 0.14);
}

.faq-card p {
  color: rgba(255, 248, 236, 0.72);
}

.legal-section {
  padding: 78px 0 108px;
}

.legal-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 5.6vw, 4.8rem);
}

.legal-panel h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
}

.legal-panel h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  letter-spacing: -0.015em;
}

.legal-panel a {
  color: var(--brand);
  border-bottom: 1px solid rgba(176, 138, 75, 0.38);
}

.legal-meta {
  display: grid;
  list-style: none;
  padding-left: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 10px;
}

.legal-meta li,
.legal-note {
  padding: 16px 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.legal-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-note {
  margin: 28px 0 0;
  color: var(--text);
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

.legal-panel ul {
  list-style: disc;
  padding-left: 22px;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: min(420px, calc(100% - 48px));
  padding: 24px;
  background: var(--panel-dark);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-lg);
  color: #fff8ec;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.cookie-consent h3 {
  margin-bottom: 8px;
  color: #fff8ec;
  font-size: 1.45rem;
}

.cookie-consent p {
  margin-bottom: 18px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.92rem;
}

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

.cookie-actions .button {
  min-height: 42px;
  padding: 12px 16px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-heading,
  .split-grid,
  .split-grid.reverse,
  .page-hero-panel,
  .cta-grid,
  .contact-layout,
  .service-row,
  .service-row.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-wrap {
    min-height: 560px;
  }

  .hero-image {
    min-height: 560px;
  }

  .section-heading p {
    margin-left: 0;
  }

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

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

  .step-card,
  .step-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .service-row.reverse .service-image {
    order: 0;
  }
}

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

  .section,
  .section-tight {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.15rem);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 28px;
    background: var(--panel-dark);
    border-top: 1px solid rgba(217, 189, 128, 0.18);
    border-bottom: 1px solid rgba(217, 189, 128, 0.18);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 248, 236, 0.09);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-media-wrap,
  .hero-image {
    min-height: 460px;
  }

  .address-card {
    right: 12px;
    bottom: 34px;
  }

  .data-row,
  .card-grid,
  .values-grid,
  .team-grid,
  .testimonials-grid,
  .faq-grid,
  .contact-cards,
  .form-grid,
  .bullet-list {
    grid-template-columns: 1fr;
  }

  .data-cell,
  .data-cell:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-cell:last-child {
    border-bottom: 0;
  }


  .legal-meta {
    grid-template-columns: 1fr;
  }

  .framed-image {
    min-height: 380px;
  }

  .service-image {
    height: 380px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (max-width: 520px) {
  .button-row,
  .cookie-actions {
    flex-direction: column;
  }

  .button,
  button.button {
    width: 100%;
  }

  .hero-media-wrap {
    padding-left: 12px;
  }

  .page-hero-panel,
  .service-card,
  .value-card,
  .step-card,
  .quote-card,
  .faq-card,
  .contact-panel,
  .form-panel {
    padding: 26px;
  }
}
