 
:root {
  --bg: #fbfaf6;
  --bg-2: #f1eadc;
  --panel: #ffffff;
  --panel-soft: #f8f2e7;
  --panel-dark: #071426;
  --panel-mid: #10233a;
  --line: rgba(7, 20, 38, 0.14);
  --line-strong: rgba(7, 20, 38, 0.32);
  --text: #081322;
  --muted: #687080;
  --brand: #d6ad61;
  --brand-light: #f4dca8;
  --brand-pale: #fff4d7;
  --shadow: 0 18px 45px rgba(7, 20, 38, 0.10);
  --shadow-lg: 0 28px 80px rgba(7, 20, 38, 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:
    radial-gradient(circle at 12% 8%, rgba(214, 173, 97, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(251, 250, 246, 0.96), rgba(241, 234, 220, 0.74));
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

.section-pad {
  padding: 108px 0;
}

.section-pad-sm {
  padding: 78px 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Syne", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
  max-width: 840px;
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.95rem, 3.1vw, 3.9rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.02;
}

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

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

.badge::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.badge-gold {
  color: var(--brand-light);
}

.badge-dark {
  color: var(--panel-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

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

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

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

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-white-outline,
.btn-ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.66);
}

.btn-white-outline:hover,
.btn-ghost-light:hover {
  background: #fff;
  color: var(--panel-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(7, 20, 38, 0.96);
  color: #fff;
  box-shadow: 0 12px 40px rgba(7, 20, 38, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: var(--brand);
  color: var(--panel-dark);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  clip-path: polygon(50% 0, 100% 34%, 86% 100%, 14% 100%, 0 34%);
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.brand em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  transition: right 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--brand);
  color: var(--brand-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  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 {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(48vw, 640px);
  height: 72%;
  background: var(--panel-dark);
  clip-path: polygon(18% 0, 100% 0, 100% 86%, 0 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

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

.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.1rem;
}

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

.data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.data-row div {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.data-row small,
.contact-list span,
.contact-card-grid span,
.team-card span,
.service-tag {
  display: block;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.data-row strong {
  display: block;
  margin-top: 6px;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-image {
  position: relative;
  min-height: 640px;
}

.hero-image img {
  height: 640px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 92%);
}

.floating-address {
  position: absolute;
  right: -18px;
  bottom: 48px;
  width: min(330px, 84%);
  padding: 24px;
  background: var(--panel);
  border-top: 5px solid var(--brand);
  box-shadow: var(--shadow-lg);
}

.floating-address span {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-address p {
  margin-top: 8px;
  color: var(--text);
  font-weight: 700;
}

.marquee {
  overflow: hidden;
  background: var(--brand);
  color: var(--panel-dark);
  border-top: 1px solid rgba(7, 20, 38, 0.16);
  border-bottom: 1px solid rgba(7, 20, 38, 0.16);
}

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

.marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 34px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "◆";
  position: absolute;
  right: -7px;
  color: rgba(7, 20, 38, 0.42);
}

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

.section-head {
  margin-bottom: 44px;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head.light h2,
.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band li {
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.value-card,
.step-card,
.quote-card,
.faq-card {
  position: relative;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card::before,
.step-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::before,
.step-card:hover::before,
.faq-card:hover::before {
  transform: scaleX(1);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  background: var(--brand);
  color: var(--panel-dark);
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  clip-path: polygon(0 0, 100% 10%, 88% 100%, 10% 90%);
}

.service-card h3,
.value-card h3 {
  margin-bottom: 16px;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(214, 173, 97, 0.10), transparent 36%),
    var(--panel-dark);
}

.dark-band::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(214, 173, 97, 0.22);
  transform: rotate(16deg);
}

.split-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.split-copy .lead {
  margin-top: 22px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
}

.story-split .split-copy .lead {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: var(--panel-dark);
  font-weight: 900;
  border-radius: 50%;
}

.dark-checks li {
  color: var(--text);
}

.bracket-image {
  position: relative;
  padding: 18px;
}

 

.bracket-image::before {
  left: 0;
  top: 0;
  border-width: 3px 0 0 3px;
}

.bracket-image::after {
  right: 0;
  bottom: 0;
  border-width: 0 3px 3px 0;
}

.bracket-image img {
  height: 570px;
  object-fit: cover; 
}

.light-bracket img {
  box-shadow: var(--shadow-lg);
}

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

.step-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.step-card span {
  position: absolute;
  top: 26px;
  left: 28px;
  font-family: "Syne", sans-serif;
  font-size: 4.15rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 20, 38, 0.28);
}

.step-card h3 {
  margin-bottom: 12px;
}

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

.quote-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--brand);
  box-shadow: none;
}

.quote-card strong {
  display: block;
  height: 48px;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
}

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

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

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

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

.cta-grid p {
  max-width: 620px;
  margin-top: 22px;
  font-weight: 600;
}

.cta-grid .btn {
  margin-top: 30px;
}

.contact-list {
  display: grid;
  gap: 1px;
  background: rgba(7, 20, 38, 0.18);
  border: 1px solid rgba(7, 20, 38, 0.2);
}

.contact-list p {
  padding: 20px;
  background: rgba(255, 255, 255, 0.24);
  font-weight: 700;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  background: #050b14;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 0.7fr;
  gap: 34px;
  padding: 70px 0;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.03em;
}

.site-footer h3 {
  font-size: 1.22rem;
}

.site-footer h4 {
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.site-footer a,
.site-footer span {
  margin-bottom: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-box,
.legal-hero .container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: stretch;
  padding: clamp(32px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(214, 173, 97, 0.14), transparent 38%),
    var(--panel-dark);
  color: #fff; 
}

.page-hero-box h1,
.legal-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.45rem, 4.75vw, 4.8rem);
  line-height: 0.99;
}

.page-hero-box p,
.legal-hero p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.hero-note {
  align-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(214, 173, 97, 0.38);
}

.hero-note h2 {
  margin-bottom: 20px;
  color: var(--brand-light);
  font-size: 1.45rem;
}

.hero-note p {
  margin: 0 0 15px;
  font-size: 0.94rem;
}

.hero-note strong {
  display: block;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.service-row {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.service-row.reverse {
  grid-template-columns: 1fr 0.94fr;
}

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

.service-row-image img {
  height: 410px;
  object-fit: cover;
  box-shadow: var(--shadow-lg); 
}

.service-row-copy h3 {
  margin: 12px 0 18px;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  line-height: 1;
}

.service-row-copy p {
  font-size: 1.02rem;
}

.service-row-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding-left: 20px;
  color: var(--text);
  font-weight: 600;
}

.reverse-on-wide {
  grid-template-columns: 1fr 0.88fr;
}

.number-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.number-list li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  counter-increment: item;
}

.number-list li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 21px;
  color: var(--brand);
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.number-list strong,
.number-list span {
  display: block;
}

.number-list span {
  color: rgba(255, 255, 255, 0.72);
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.value-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.team-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.team-card img {
  height: 290px;
  object-fit: cover;
  filter: grayscale(0.85);
  transition: filter 0.35s ease, transform 0.35s ease;
}

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

.team-card h3,
.team-card span,
.team-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.team-card h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.team-card p {
  margin-top: 14px;
  margin-bottom: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: clamp(30px, 5vw, 54px);
  background: var(--panel-dark);
  color: #fff; 
}

.contact-panel h2 {
  margin-bottom: 30px;
  color: #fff;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card-grid article {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

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

.contact-card-grid a,
.contact-card-grid p {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-panel {
  padding: clamp(30px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.form-panel h2 {
  margin-bottom: 28px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

label.wide {
  grid-column: 1 / -1;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(214, 173, 97, 0.17);
}

textarea {
  resize: vertical;
}

.form-panel .btn {
  margin-top: 22px;
}

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

.faq-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.faq-card::before {
  inset: 0 auto 0 0;
  width: 5px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
}

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

.faq-card h3 {
  color: #fff;
  margin-bottom: 14px;
}

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

.legal-hero .container {
  display: block;
}

.legal-wrap {
  max-width: 860px;
  padding: 44px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-wrap h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
}

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

.legal-wrap p {
  margin-bottom: 16px;
}

.legal-wrap ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 24px 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-wrap li {
  padding-left: 4px;
}

.legal-wrap strong {
  color: var(--text);
}

.legal-wrap .legal-note {
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--panel-soft);
  border-left: 4px solid var(--brand);
  color: var(--text);
  font-weight: 700;
}

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

.cookie-popup {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(390px, calc(100% - 48px));
  padding: 22px;
  background: var(--panel-dark);
  color: #fff;
  border-top: 5px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.cookie-popup h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.cookie-popup p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.75s ease forwards;
}

.reveal-delay {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.22s;
}

.reveal-delay-3 {
  animation-delay: 0.32s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .reverse-on-wide,
  .cta-grid,
  .page-hero-box,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 100%;
    height: 40%;
    opacity: 0.4;
  }

  .hero-image,
  .hero-image img {
    min-height: 0;
    height: 520px;
  }

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

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-pad {
    padding: 70px 0;
  }

  .section-pad-sm {
    padding: 54px 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand em {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 73px;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    background: var(--panel-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-copy p,
  .page-hero-box p {
    font-size: 1rem;
  }

  .hero-image,
  .hero-image img {
    height: 430px;
  }

  .floating-address {
    right: 12px;
    bottom: 18px;
  }

  .data-row,
  .card-grid.three,
  .step-grid,
  .quote-grid,
  .team-grid,
  .contact-card-grid,
  .form-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-box,
  .legal-hero .container,
  .contact-panel {
    clip-path: none;
  }

  .bracket-image img,
  .service-row-image img {
    height: 340px;
  }

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

  .cookie-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
}
