/* ==========================================================================
   GRANVINCI — Nekilnojamojo turto vystytojas
   Architectural warm minimal aesthetic
   ========================================================================== */

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

:root {
  --bg: #F7F4EE;
  --surface: #EEE8DE;
  --card: #E6DED2;
  --text: #1F1E1A;
  --text-soft: #6E6A63;
  --border: #D6CEC2;
  --accent: #184d47;
  --accent-hover: #0f3934;
  --accent-soft: #DDE7E0;
  --bronze: #A67C52;
  --bronze-soft: #E7D8C7;

  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --container-tight: 1080px;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ------------------------------ Typography ------------------------------ */

.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.h-display {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.h-xl {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.h-lg {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.h-md {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.15;
}

.eyebrow,
.section-head .meta .index {
  display: none !important;
}

.lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 56ch;
  font-weight: 400;
}

p {
  color: var(--text-soft);
}

/* ------------------------------ Layout ------------------------------ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

.divider-thin {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ------------------------------ Buttons ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #F7F4EE;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  padding: 16px 0;
  color: var(--text);
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  right: 30px;
  bottom: 10px;
  height: 1px;
  background: var(--text);
  transition: right 0.4s var(--ease);
}

.btn-ghost:hover::after {
  right: 0;
}

.btn-on-image {
  background: rgba(247, 244, 238, 0.95);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-on-image:hover {
  background: var(--bg);
}

.btn-on-image-outline {
  background: transparent;
  border-color: rgba(247, 244, 238, 0.5);
  color: var(--bg);
}

.btn-on-image-outline:hover {
  background: rgba(247, 244, 238, 0.12);
  border-color: var(--bg);
}

.arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ------------------------------ Header ------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header.on-image {
  background: rgba(31, 30, 26, 0.18);
  border-bottom-color: rgba(247, 244, 238, 0.14);
}

.site-header.on-image .nav-link,
.site-header.on-image .logo,
.site-header.on-image .menu-toggle {
  color: var(--bg);
}

.site-header.on-image .btn-outline {
  border-color: rgba(247, 244, 238, 0.6);
  color: var(--bg);
}

.site-header.on-image .btn-outline:hover {
  background: var(--bg);
  color: var(--text);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-inner .btn-outline {
  font-size: 15px;
  padding: 14px 24px;
}

.logo {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-mark {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--text-soft);
}

.nav-primary {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.005em;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link.has-dropdown::after { display: none; }

.nav-link.has-dropdown .caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  margin-left: 4px;
  transition: transform 0.3s var(--ease);
}

.nav-item:hover .nav-link.has-dropdown .caret,
.nav-item:focus-within .nav-link.has-dropdown .caret {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 18px;
  min-width: 340px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: 0 24px 48px -16px rgba(31, 30, 26, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 110;
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Invisible bridge so the dropdown doesn't disappear when the cursor crosses the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav-dropdown-header {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  padding: 10px 14px 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.nav-dropdown-header .count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-soft);
}

.nav-dropdown-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition: background 0.25s var(--ease);
  color: var(--text);
}

.nav-dropdown-item:hover {
  background: var(--surface);
}

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav-dropdown-text .name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.nav-dropdown-text .loc {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  background: var(--surface);
  white-space: nowrap;
}

.nav-dropdown-status.live { background: var(--accent-soft); color: var(--accent); }
.nav-dropdown-status.soon { background: var(--bronze-soft); color: var(--bronze); }
.nav-dropdown-status.done { background: var(--card); color: var(--text-soft); }

.nav-dropdown-foot {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding: 12px 14px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.nav-dropdown-foot a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.nav-dropdown-foot a:hover { color: var(--accent); }

/* On-image header dropdown colors stay readable */
.site-header.on-image .nav-link.has-dropdown { color: var(--bg); }
.site-header.on-image .nav-dropdown {
  background: var(--bg);
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 200;
  flex-direction: column;
  gap: 5px;
  color: inherit;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Toggle becomes X when menu open */
body.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.mobile-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Lock scroll when mobile menu is open */
body.mobile-menu-open { overflow: hidden; }

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  padding: 96px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

body.mobile-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 32px;
}

.mobile-menu nav > a,
.mobile-menu nav > .mm-group > .mm-group-label {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.mobile-menu .mm-group { display: flex; flex-direction: column; }
.mobile-menu .mm-group-label {
  cursor: default;
}
.mobile-menu .mm-group-list {
  display: flex;
  flex-direction: column;
  padding: 12px 0 18px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mm-group-list a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-soft);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.mobile-menu .mm-group-list a:hover { color: var(--text); }
.mobile-menu .mm-group-list a small {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}
.mobile-menu-contact {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.mobile-menu-contact a { color: var(--text); text-decoration: none; }

/* ------------------------------ Hero ------------------------------ */

.hero {
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bg);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24,77,71,0.55) 0%, rgba(24,77,71,0.35) 30%, rgba(24,77,71,0.35) 55%, rgba(15,57,52,0.78) 100%),
    radial-gradient(120% 70% at 50% 0%, rgba(24,77,71,0.0) 0%, rgba(24,77,71,0.25) 100%);
  mix-blend-mode: normal;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}

.hero h1 {
  color: var(--bg);
  max-width: none;
  text-align: left;
}

.hero .lead {
  color: rgba(247, 244, 238, 0.85);
  max-width: 44ch;
  margin: 28px 0 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  text-align: right;
  color: rgba(247, 244, 238, 0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
  display: block;
  margin-bottom: 8px;
}

.hero-meta .value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bg);
  display: block;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 244, 238, 0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(247, 244, 238, 0.4);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ------------------------------ Trust marquee ------------------------------ */

.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.trust-logos {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.trust-logo:hover { opacity: 1; }

.trust-logo .small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ------------------------------ Section header ------------------------------ */

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 72px;
  padding: 0 16px;
}

.section-head .meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.section-head .meta .index {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.section-head h1,
.section-head h2 {
  margin: 0 auto;
  max-width: 22ch;
  text-align: center;
}

.section-head .head-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.section-head .lead {
  margin: 0 auto;
  max-width: 60ch;
  text-align: center;
}

.section-head.centered {
  margin-bottom: 56px;
}

.section-head.centered h2 {
  max-width: none;
}

.projects-tabs.centered {
  justify-content: center;
  border-bottom: none;
  margin-bottom: 64px;
  gap: 0;
}

.projects-tabs.centered .projects-tab {
  margin-right: 0;
  padding: 14px 28px;
}

/* ------------------------------ Projects ------------------------------ */

.projects {
  background: var(--bg);
}

.projects-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.projects-tab {
  padding: 18px 28px 18px 0;
  margin-right: 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  background: none;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.projects-tab:hover {
  color: var(--text);
}

.projects-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.projects-tab .count {
  font-family: var(--serif);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--bronze);
  font-weight: 400;
}

.projects-panel {
  display: none;
}

.projects-panel.active {
  display: block;
  animation: fadeIn 0.6s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 5 / 6;
  background: var(--card);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

/* Placeholder card */
.project-card.placeholder .project-image {
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card.placeholder .placeholder-house {
  width: 55%;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}

.project-card.placeholder:hover .placeholder-house {
  opacity: 0.85;
  transform: translateY(-4px);
}

.project-card.placeholder .name {
  color: var(--text-soft);
  font-style: italic;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.project-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.project-tag.upcoming .dot {
  background: var(--bronze);
}

.project-tag.delivered .dot {
  background: var(--text-soft);
}

.project-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 24px;
}

.project-body .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.project-body .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.005em;
}

.project-body .price {
  display: none;
}

.project-body .location {
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  line-height: 1;
  margin-top: 4px;
}

.projects-foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-foot .btn {
  padding: 12px 22px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .projects-foot {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 28px;
  }
}

/* ------------------------------ About ------------------------------ */

.about {
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.about-text .eyebrow {
  margin-bottom: 36px;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  margin: 0 0 36px;
  max-width: 18ch;
  text-align: left;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 52ch;
  text-align: left;
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
}

.stat .num sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--bronze);
  margin-left: 2px;
  font-style: normal;
}

.stat .label {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-top: 12px;
  display: block;
  max-width: 22ch;
  line-height: 1.4;
}

.about-image {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-image .caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 14px 18px;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  font-family: var(--serif);
  font-style: normal;
  font-size: 15px;
  color: var(--text);
  max-width: 26ch;
  line-height: 1.4;
}

/* ------------------------------ Services ------------------------------ */

.services {
  background: var(--bg);
}

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

.service {
  padding: 44px 36px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.4s var(--ease);
}

.service:hover {
  background: var(--surface);
}

.service-num {
  display: none;
}

.service-icon {
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 6px;
  transition: transform 0.5s var(--ease);
}

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

.service h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 24px;
  margin-bottom: 8px;
}

.service p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 36ch;
}

.service .more {
  margin-top: auto;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.service .more .arrow {
  width: 14px;
  background: currentColor;
}

/* ------------------------------ Financing ------------------------------ */

.financing {
  background: var(--accent);
  color: var(--bg);
  padding: 140px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.financing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 320px 320px;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.financing::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(247,244,238,0.10) 0%, rgba(247,244,238,0) 65%);
  pointer-events: none;
  z-index: 0;
}

.financing > .container {
  position: relative;
  z-index: 1;
}

/* Architectural sketch background */
.financing .bg-sketch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: brightness(1.3) contrast(0.9);
}

@media (max-width: 720px) {
  .financing .bg-sketch { opacity: 0.16; }
}

/* First Architekto paslaugos block: subtle sketch */
#architect-services .bg-sketch {
  opacity: 0.08;
}

@media (max-width: 720px) {
  #architect-services .bg-sketch { opacity: 0.06; }
}


.financing .eyebrow {
  color: rgba(247, 244, 238, 0.6);
}

.financing .eyebrow::before {
  background: rgba(247, 244, 238, 0.4);
}

.financing-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}

.financing h2 {
  color: var(--bg);
  font-weight: 300;
  margin: 32px 0 28px;
  max-width: none;
}

.financing p {
  color: rgba(247, 244, 238, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 50ch;
}

.financing .btn-primary {
  background: var(--bg);
  color: var(--accent);
}

.financing .btn-primary:hover {
  background: var(--bronze-soft);
}

.financing .btn-outline {
  border-color: rgba(247, 244, 238, 0.5);
  color: var(--bg);
}

.financing .btn-outline:hover {
  background: rgba(247, 244, 238, 0.08);
  border-color: var(--bg);
}

.financing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.financing-card {
  background: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: var(--r-lg);
  padding: 40px;
  backdrop-filter: blur(6px);
}

.financing-card h3 {
  color: var(--bg);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.16);
}

.financing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.financing-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  font-size: 15px;
  color: rgba(247, 244, 238, 0.88);
  line-height: 1.55;
}

.financing-list .step {
  font-family: var(--serif);
  font-style: normal;
  font-size: 16px;
  color: var(--bronze-soft);
  padding-top: 1px;
}

.financing-list.icon-list li {
  align-items: center;
}

.financing-list.icon-list .step {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.08);
  border: 1px solid rgba(247, 244, 238, 0.16);
  padding: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.financing-list.icon-list .step i {
  font-size: 15px;
  color: var(--bronze-soft);
  line-height: 1;
}

.financing-list.icon-list li:hover .step {
  background: rgba(247, 244, 238, 0.14);
  border-color: rgba(247, 244, 238, 0.28);
}

/* ------------------------------ Delivered / Proof ------------------------------ */

.delivered {
  background: var(--bg);
}

.delivered-masonry {
  column-count: 3;
  column-gap: 20px;
  margin-bottom: 80px;
}

.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,30,26,0) 50%, rgba(31,30,26,0.55) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.masonry-item:hover::after { opacity: 1; }

.masonry-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--bg);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.masonry-item:hover .masonry-caption {
  opacity: 1;
  transform: translateY(0);
}

.masonry-caption .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--bg);
}

.masonry-caption .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.85);
  margin-top: 6px;
  display: block;
}

.masonry-caption .year {
  font-family: var(--serif);
  font-style: normal;
  font-size: 16px;
  color: var(--bronze-soft);
  flex-shrink: 0;
}

/* Reviews carousel */

.reviews-carousel {
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.reviews-head {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-head h3 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.reviews-head .reviews-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 12px;
  display: block;
}

.reviews-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.reviews-stage {
  position: relative;
  padding: 0 80px;
}

.carousel-controls.side {
  display: contents;
}

.carousel-controls.side button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(31, 30, 26, 0.10);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.carousel-controls.side .prev { left: 0; }
.carousel-controls.side .next { right: 0; }

.carousel-controls.side button:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-50%) scale(1.05);
}

.carousel-controls.side button:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.carousel-controls button:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.carousel-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-controls svg {
  width: 16px;
  height: 16px;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc((100% - 24px) / 2);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.review-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  font-style: normal;
  color: var(--text);
  flex: 1;
  letter-spacing: -0.005em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.review-author .role {
  font-size: 12px;
  color: var(--text-soft);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.reviews-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.reviews-dots button {
  width: 28px;
  height: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  padding: 0;
}

.reviews-dots button.active {
  background: var(--accent);
}

/* ------------------------------ FAQ ------------------------------ */

.faq {
  background: var(--surface);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-aside {
  text-align: left;
}

.faq-aside h2 {
  margin: 18px 0 28px;
  max-width: none;
  text-align: left;
}

.faq-aside p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 36ch;
  text-align: left;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}

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

.faq-toggle {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform 0.4s var(--ease);
}

.faq-toggle::before {
  left: 0; right: 0;
  top: 50%; height: 1px;
}

.faq-toggle::after {
  top: 0; bottom: 0;
  left: 50%; width: 1px;
}

.faq-item[open] .faq-toggle::after {
  transform: scaleY(0);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 64ch;
}

/* ------------------------------ Contact ------------------------------ */

.contact {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact h2 {
  margin: 18px 0 24px;
  max-width: none;
  text-align: left;
}

.contact .intro {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 42ch;
  text-align: left;
}

.contact .contact-inner > div { text-align: left; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  font-size: 15px;
  align-items: start;
}

.detail-row .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-top: 3px;
}

.detail-row .value {
  color: var(--text);
  line-height: 1.5;
}

.detail-row .value a:hover {
  color: var(--accent);
}

.contact-map {
  margin-top: 48px;
  aspect-ratio: 16 / 9;
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-map .pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-map .pin .dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 6px 16px rgba(31,30,26,0.25);
}

.contact-map .pin .label {
  background: var(--bg);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Contact form */

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
}

.contact-form .form-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form .form-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--text-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(35, 70, 56, 0.10);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231F1E1A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
}

.field select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23234638' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.field select::-ms-expand { display: none; }

.field select option {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  padding: 12px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  margin: 4px 0 28px;
  line-height: 1.5;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.contact-form .btn {
  width: 100%;
}

/* Advisor card */
.advisor-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin: 8px 0 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.advisor-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--card);
}

.advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.advisor-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.advisor-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

.advisor-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 4px;
}

.advisor-tag {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}

.advisor-stats {
  display: flex;
  gap: 24px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.advisor-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.advisor-stats .num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.advisor-stats .lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Topic pills */
.topic-field {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.topic-field legend {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 0;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.topic-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1;
}

.topic-pill span i {
  font-size: 12px;
  color: var(--text-soft);
  transition: color 0.3s var(--ease);
}

.topic-pill span:hover {
  border-color: var(--text);
}

.topic-pill input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.topic-pill input:checked + span i {
  color: var(--bronze-soft);
}

.topic-pill input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Form footer */
.form-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  text-align: center;
}

.form-foot span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-foot i {
  color: var(--accent);
  font-size: 14px;
}

@media (max-width: 720px) {
  .advisor-card {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px;
  }
  .advisor-photo { width: 56px; height: 56px; }
  .advisor-stats {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 16px;
    margin-top: 4px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ------------------------------ Footer ------------------------------ */

.site-footer {
  background: var(--text);
  color: rgba(247, 244, 238, 0.8);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
}

.footer-brand .logo {
  color: var(--bg);
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(247, 244, 238, 0.62);
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.5);
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(247, 244, 238, 0.85);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--bronze-soft); }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(247, 244, 238, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a:hover { color: var(--bg); }

/* ==========================================================================
   INTERIOR PAGE HERO
   ========================================================================== */

.page-hero {
  padding: 200px 0 100px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.page-hero .crumb a:hover { color: var(--text); }

.page-hero h1 {
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 auto;
  max-width: none;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 300;
}

.page-hero .lead {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--text-soft);
  margin: 28px auto 0;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .page-hero { padding: 140px 0 72px; }
}

/* ==========================================================================
   PROJECT PAGE
   ========================================================================== */

.project-hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--bg);
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.project-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,30,26,0.45) 0%, rgba(31,30,26,0.0) 35%, rgba(31,30,26,0.55) 100%);
}

.project-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 10px 18px;
  background: rgba(31, 30, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 244, 238, 0.22);
  border-radius: var(--r-sm);
  align-self: flex-start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.breadcrumb a { color: rgba(247, 244, 238, 0.78); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--bg); }
.breadcrumb span:not(:has(a)):last-child { color: var(--bg); }

.project-hero h1 {
  color: var(--bg);
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1;
  max-width: 12ch;
}

.project-hero .subline {
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 24px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 9px 16px;
  background: rgba(31, 30, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 244, 238, 0.22);
  border-radius: var(--r-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.project-quick {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.quick-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}

.quick-cell:last-child { border-right: none; }

.quick-cell .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
  display: block;
}

.quick-cell .value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
}

/* Overview */

.overview-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.overview-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 60ch;
}

.overview-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--accent);
  font-weight: 300;
}

/* Highlights */

.highlights {
  background: var(--surface);
}

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

.highlight-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlight-cell:nth-child(3n) { border-right: none; }

.highlight-cell .num {
  font-family: var(--serif);
  font-style: normal;
  font-size: 16px;
  color: var(--bronze);
  margin-bottom: 28px;
  display: block;
}

.highlight-cell h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: var(--serif);
}

.highlight-cell p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Amenities */

.amenities {
  background: var(--bg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
}

.amenity {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
}

.amenity::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--bronze);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Floor plans */

.floorplans {
  background: var(--surface);
}

.fp-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.fp-tab {
  padding: 18px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.fp-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.fp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.fp-drawing {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  padding: 36px;
  position: relative;
}

.fp-drawing svg {
  width: 100%;
  height: 100%;
}

.fp-details h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.fp-details .fp-sub {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 32px;
  display: block;
}

.fp-specs {
  list-style: none;
  margin-bottom: 36px;
}

.fp-specs li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.fp-specs .key {
  color: var(--text-soft);
}

.fp-specs .val {
  color: var(--text);
  font-weight: 500;
}

/* Gallery */

.gallery {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.g1 { grid-column: span 4; grid-row: span 2; }
.g2 { grid-column: span 2; grid-row: span 1; }
.g3 { grid-column: span 2; grid-row: span 1; }
.g4 { grid-column: span 3; grid-row: span 2; }
.g5 { grid-column: span 3; grid-row: span 2; }

/* Location */

.location {
  background: var(--surface);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: stretch;
}

.location-list {
  list-style: none;
  margin-top: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 32px;
}

.location-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  align-items: center;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list .place {
  color: var(--text);
}

.location-list .place small {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 4px;
}

.location-list .dist {
  font-family: var(--serif);
  font-style: normal;
  color: var(--bronze);
  font-size: 16px;
}

.location-map {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 480px;
}

/* Progress */

.progress {
  background: var(--bg);
}

.progress-bar-wrap {
  margin: 40px 0 56px;
}

.progress-percent {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.progress-percent .num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.progress-percent .num sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--bronze);
}

.progress-percent .label {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.progress-track {
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 64%;
  background: var(--accent);
  border-radius: 999px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.timeline-step {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.timeline-step:last-child { border-right: none; }

.timeline-step.done .pulse,
.timeline-step.active .pulse {
  background: var(--accent);
}

.timeline-step .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  margin-bottom: 18px;
}

.timeline-step.active .pulse {
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.timeline-step .date {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.timeline-step h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.timeline-step.active h4 { color: var(--accent); }

/* CTA Box (single-card CTA to contact form) */

.cta-box-section {
  padding: 120px 0;
  background: var(--accent);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 16px 0;
  background: transparent;
  color: var(--bg);
  border-radius: 0;
  transition: opacity 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.cta-box:hover {
  opacity: 0.95;
}

.cta-box-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 56ch;
}

.cta-box-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.6);
  font-weight: 500;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin: 4px 0 4px;
}

.cta-box p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(247, 244, 238, 0.78);
  margin: 0;
  max-width: 50ch;
}

.cta-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--bg);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: gap 0.4s var(--ease);
}

.cta-box:hover .cta-box-btn {
  gap: 22px;
}

@media (max-width: 720px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
  .cta-box-btn { justify-content: center; }
}

/* Inquiry CTA banner (legacy, kept for other pages) */

.inquiry-banner {
  background: var(--accent);
  color: var(--bg);
  padding: 110px 0;
}

.inquiry-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.inquiry-banner h2 {
  color: var(--bg);
  font-weight: 300;
  max-width: 16ch;
}

.inquiry-banner p {
  color: rgba(247, 244, 238, 0.75);
  margin: 24px 0 36px;
  max-width: 44ch;
}

.inquiry-banner .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.inquiry-banner .btn-primary {
  background: var(--bg);
  color: var(--accent);
}

.inquiry-banner .btn-outline {
  border-color: rgba(247, 244, 238, 0.5);
  color: var(--bg);
}

.inquiry-aside {
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: var(--r-md);
  padding: 36px;
  display: grid;
  gap: 24px;
}

.inquiry-aside .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.14);
  align-items: end;
}

.inquiry-aside .row:last-child { border: none; padding-bottom: 0; }

.inquiry-aside .row .k {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
}

.inquiry-aside .row .v {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bg);
  font-weight: 300;
}

/* Project inquiry form (project page) */

.project-inquiry {
  background: var(--bg);
}

.pi-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-meta { text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .about-inner,
  .financing-inner,
  .faq-inner,
  .contact-inner,
  .overview-inner,
  .fp-grid,
  .inquiry-inner,
  .pi-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-inner { grid-template-columns: 1fr; gap: 48px; }
  .location-list { padding: 4px 24px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .delivered-masonry { column-count: 2; }
  .review-card { flex: 0 0 100%; padding: 36px; }
  .reviews-stage { padding: 0 56px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .highlight-cell:nth-child(2n) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .project-quick { grid-template-columns: repeat(2, 1fr); }
  .quick-cell { border-bottom: 1px solid var(--border); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-step { border-bottom: 1px solid var(--border); }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .location-list { padding: 0 20px; }
  .container, .container-tight, .hero-inner, .header-inner, .trust-strip-inner { padding-left: 20px; padding-right: 20px; }
  .nav-primary { display: none; }
  .menu-toggle { display: flex; }
  .header-inner .btn-outline { display: none; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 140px 20px 56px; gap: 0; }
  .h-display { font-size: clamp(38px, 11vw, 56px); }
  .h-xl { font-size: clamp(32px, 8vw, 46px); }
  .lead { font-size: 16px; max-width: 100%; }
  .hero-actions { gap: 10px; flex-wrap: wrap; }
  .hero-actions .btn { font-size: 13px; padding: 13px 20px; }

  /* Sections */
  .section-head { margin-bottom: 40px; }
  .section-head .meta { gap: 14px; }

  .projects-grid { grid-template-columns: 1fr; gap: 40px; }
  .projects-tabs { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .projects-tab { padding: 14px 18px; font-size: 12px; white-space: nowrap; flex: 0 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 32px 24px; }
  .service h3 { font-size: 22px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { min-height: 320px; }
  .about-meta { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .stat .num { font-size: 36px; }

  /* Architekto / financing green */
  .financing { padding: 72px 0; }
  .financing-inner { grid-template-columns: 1fr; gap: 32px; }
  .financing-card { padding: 28px; }
  .financing h2 { font-size: clamp(30px, 8vw, 44px); }
  .financing-actions { flex-wrap: wrap; }
  .financing-actions .btn { font-size: 13px; padding: 13px 18px; flex: 0 1 auto; }

  /* Gallery / masonry */
  .delivered-masonry { column-count: 1; column-gap: 0; }
  .masonry-item { margin-bottom: 16px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-left h2 { font-size: clamp(32px, 8vw, 44px); }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-title { font-size: 22px; }
  .advisor-card { padding: 18px; gap: 14px; }
  .advisor-stats { padding-left: 0; padding-top: 14px; border-left: none; border-top: 1px solid var(--border); width: 100%; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .contact-details { gap: 0; }

  /* Project page */
  .project-hero { min-height: 520px; height: 80vh; }
  .project-hero h1 { font-size: clamp(48px, 12vw, 72px); }
  .project-hero .subline { font-size: 11px; padding: 7px 12px; }
  .breadcrumb { font-size: 10px; padding: 8px 14px; gap: 8px; flex-wrap: wrap; }
  .project-quick { grid-template-columns: 1fr; }
  .quick-cell { border-right: none; }
  .overview-inner { grid-template-columns: 1fr; gap: 28px; }

  /* Project page gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 12px; }
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* CTA box (the green one) */
  .cta-box { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .cta-box h2 { font-size: clamp(24px, 6vw, 32px); }
  .cta-box-btn { width: 100%; justify-content: center; }

  /* Testimonial / reviews */
  .review-card { padding: 28px; }
  .review-quote { font-size: 19px; }
  .reviews-foot { flex-direction: column-reverse; gap: 20px; }
  .reviews-stage { padding: 0; }
  .carousel-controls.side button { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-cell:nth-child(2n) { border-right: 1px solid var(--border); }
  .testimonial { grid-template-columns: 1fr; padding: 56px 0; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; }
}

/* Very small phones */
@media (max-width: 480px) {
  .container, .container-tight, .hero-inner, .header-inner { padding-left: 16px; padding-right: 16px; }
  section { padding: 56px 0; }
  .h-display { font-size: 36px; line-height: 1.05; }
  .h-xl { font-size: 30px; }
  .hero-inner { padding-top: 120px; padding-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .about-meta { grid-template-columns: 1fr; gap: 24px; }
  .form-foot { font-size: 11px; }
  .header-inner { padding: 16px; }
  .logo { font-size: 22px; }
}
