:root {
  --color-bg: #f5f1eb;
  --color-bg-strong: #eae0d4;
  --color-surface: rgba(255, 255, 255, 0.7);
  --color-surface-strong: #fffdf9;
  --color-text: #171714;
  --color-muted: #5d5a56;
  --color-accent: #1d3557;
  --color-accent-strong: #102542;
  --color-accent-soft: rgba(29, 53, 87, 0.12);
  --color-border: rgba(23, 23, 20, 0.12);
  --color-border-strong: rgba(23, 23, 20, 0.18);
  --shadow-soft: 0 20px 60px rgba(17, 12, 8, 0.08);
  --shadow-card: 0 18px 42px rgba(21, 16, 12, 0.06);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container-width: 1180px;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.consent-scroll-locked,
html.consent-scroll-locked body {
  overflow: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 30%),
    var(--color-bg);
  color: var(--color-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(29, 53, 87, 0.75);
  outline-offset: 3px;
}

p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.container {
  width: min(var(--container-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 1.12;
  color: var(--color-text);
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  font-weight: 800;
}

h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 235, 0.8);
  border-bottom: 1px solid rgba(23, 23, 20, 0.05);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: var(--color-text);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.brand-text {
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 235, 0.92);
  border-bottom: 1px solid rgba(23, 23, 20, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  position: relative;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(29, 53, 87, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-accent-strong);
}

.button-secondary,
.button-ghost {
  background: var(--color-accent);
  border-color: var(--color-accent-strong);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 48px;
  height: 48px;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.3);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

.hero {
  padding-top: 4.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-text {
  max-width: 620px;
  font-size: 1.16rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.hero-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-muted);
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-shell {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(23, 23, 20, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.browser-bar {
  display: flex;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem 1rem;
}

.dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-1 { background: #d7b792; }
.dot-2 { background: #d9d4cf; }
.dot-3 { background: #c1b8ad; }

.browser-body {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 470px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #f4dfc1;
  border-radius: 12px;
  color: #171714;
  font-size: 0.85rem;
  font-weight: 800;
}

.dash-sidebar span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-main {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.1rem;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.pill {
  display: inline-block;
  height: 12px;
  border-radius: 999px;
}

.pill.light {
  width: 70px;
  background: rgba(255, 255, 255, 0.75);
}

.pill.dark {
  width: 110px;
  background: rgba(255, 255, 255, 0.18);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card.large {
  grid-column: 1 / -1;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.22), rgba(255, 255, 255, 0.06));
}

.metric-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.metric-card strong {
  color: #f7f0e9;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.chart-card {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.chart-lines {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.7rem;
  height: 100%;
}

.chart-lines span {
  display: block;
  width: 100%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(29, 53, 87, 0.95));
}

.chart-lines span:nth-child(1) { height: 44%; }
.chart-lines span:nth-child(2) { height: 72%; }
.chart-lines span:nth-child(3) { height: 96%; }

.value-strip {
  padding-top: 0;
  padding-bottom: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(23, 23, 20, 0.06);
  border-radius: 26px;
}

.value-item {
  padding: 1.2rem 1rem;
  border: 1px solid rgba(23, 23, 20, 0.04);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.value-index {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.value-item h3 {
  font-size: 1.04rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-copy p {
  max-width: 62ch;
}

.about-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.member-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 23, 20, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.member-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.member-meta {
  padding: 1rem 1rem 1.2rem;
}

.member-meta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.member-meta p {
  margin-top: 0.3rem;
  color: var(--color-accent-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.3rem;
}

.services-grid,
.project-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card,
.project-card,
.reason-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(23, 23, 20, 0.06);
  border-radius: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.project-card:hover,
.reason-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 53, 87, 0.18);
  box-shadow: var(--shadow-card);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--color-accent-soft);
  color: var(--color-text);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card p,
.reason-card p,
.project-card p {
  margin-top: 0.8rem;
  line-height: 1.7;
}

.reason-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reason-number {
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(195, 165, 133, 0.7), rgba(118, 101, 82, 0.18));
  overflow: hidden;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.project-visual::before {
  width: 70%;
  height: 70%;
  right: -10%;
  top: -18%;
}

.project-visual::after {
  width: 48%;
  height: 48%;
  left: -8%;
  bottom: -12%;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  padding: 1.35rem 1.2rem 1.5rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(29, 53, 87, 0.09);
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 700;
}

.project-category {
  margin-top: 0.35rem;
  color: var(--color-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.15rem;
}

.link-arrow {
  color: var(--color-text);
  font-weight: 700;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(23, 23, 20, 0.04);
  font-size: 1.1rem;
}

.faq-section {
  padding-top: 6.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 1.2rem 1.3rem;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.08);
  color: var(--color-accent);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.3rem 1.2rem;
  color: var(--color-muted);
}

.faq-answer p {
  margin: 0;
  line-height: 1.8;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.booking-card {
  padding: clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(245, 241, 235, 0.75));
  border: 1px solid rgba(23, 23, 20, 0.07);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.booking-dialog {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 2rem);
  background: rgba(23, 23, 20, 0.52);
  backdrop-filter: blur(4px);
}

.booking-dialog[hidden] {
  display: none;
}

.booking-dialog-content {
  width: min(100%, 940px);
  overflow-y: auto;
  max-height: calc(100dvh - clamp(1.5rem, 4vw, 4rem));
  padding: clamp(1rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: 0 28px 90px rgba(17, 12, 8, 0.25);
  scrollbar-gutter: stable;
}

.booking-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.booking-dialog-header .eyebrow {
  margin-bottom: 0.65rem;
}

.booking-dialog-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.booking-dialog-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-text);
  font-size: 1.8rem;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}

.booking-dialog-close:hover,
.booking-dialog-close:focus-visible {
  transform: translateY(-1px);
  background: #fff;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.booking-row-single {
  grid-template-columns: 1fr;
}

.booking-row-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
}

.booking-field input,
.booking-field select {
  min-height: 52px;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-text);
  font-size: max(1rem, 16px);
}

.booking-field input:focus-visible,
.booking-field select:focus-visible {
  outline: 3px solid rgba(197, 125, 60, 0.5);
  outline-offset: 1px;
}

.booking-field input:disabled,
.booking-field select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.6rem;
  min-height: 52px;
}

.time-slot-hint,
.time-slot-empty,
.time-slot-error {
  margin: 0;
  font-size: 0.9rem;
}

.time-slot-error {
  color: #b3341f;
}

.time-slot {
  min-height: 44px;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition),
    color var(--transition);
}

.time-slot:hover,
.time-slot:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-accent);
}

.time-slot.is-selected {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.time-slot:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
}

.booking-actions .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.booking-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-status.is-success {
  color: #2f7d4f;
}

.booking-status.is-error {
  color: #b3341f;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  text-align: left;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--color-text);
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem 2rem;
  width: min(900px, calc(100% - 2rem));
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border-strong);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(17, 12, 8, 0.16);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-backdrop {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(23, 23, 20, 0.24);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cookie-consent-backdrop[hidden] {
  display: none;
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-copy .eyebrow {
  margin-bottom: 0.45rem;
}

.cookie-consent-copy h2 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.cookie-consent-copy p:last-child {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-consent-actions .button,
.cookie-settings .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.cookie-settings {
  display: none;
  grid-column: 1 / -1;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cookie-consent.is-open .cookie-settings {
  display: grid;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-text);
  font-size: 0.88rem;
}

.cookie-option input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
}

.cookie-option span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cookie-option small {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.cookie-settings-link {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(17, 12, 8, 0.1);
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  background: #fff;
}

.cta-band {
  padding-top: 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1.6rem, 3vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(245, 241, 235, 0.75));
  border: 1px solid rgba(23, 23, 20, 0.07);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cta-text {
  max-width: 500px;
  font-size: 1.05rem;
}

.site-footer {
  background: rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(23, 23, 20, 0.08);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  flex: 1 1 260px;
  max-width: 340px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-cols > div {
  flex: 0 0 auto;
  min-width: 110px;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 360px;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.footer-links a,
.footer-links span {
  color: var(--color-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: min(var(--container-width), calc(100% - 2rem));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(23, 23, 20, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(23, 23, 20, 0.07);
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(17, 12, 8, 0.08);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .booking-row,
  .booking-row-triple {
    grid-template-columns: 1fr;
  }

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

  .footer-cols {
    gap: 2rem 3rem;
  }

  .services-grid,
  .reasons-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .device-shell {
    min-height: 420px;
  }

  .browser-body {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .services-grid,
  .reasons-grid,
  .project-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    text-align: center;
  }

  .cookie-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: calc(100% - 1.5rem);
    padding: 1.15rem;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions .button:last-child {
    grid-column: 1 / -1;
  }

  .cookie-settings-link {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .booking-actions {
    justify-content: stretch;
  }

  .booking-actions .button {
    width: 100%;
  }

  .booking-dialog {
    padding: 0;
  }

  .booking-dialog-content {
    width: 100%;
    max-height: 100dvh;
    padding: 1rem;
    border-radius: 0;
  }

  .booking-dialog-header h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .booking-dialog-close {
    width: 40px;
    height: 40px;
  }

  .booking-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .time-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .time-slot {
    min-height: 42px;
    padding: 0.45rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px), (max-height: 620px) {
  .booking-dialog {
    padding: 0;
  }

  .booking-dialog-content {
    max-height: 100dvh;
    padding: 0.85rem;
    border-radius: 0;
  }

  .booking-dialog-header {
    margin-bottom: 0.85rem;
  }

  .booking-dialog-header .eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.65rem;
  }

  .booking-card {
    padding: 0.85rem;
  }

  .booking-form {
    gap: 0.85rem;
  }

  .booking-row-triple {
    gap: 0.85rem;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
