:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --ink: #050505;
  --muted: #666666;
  --accent: #dfa14a;
  --accent-2: #e3a64f;
  --border: #e8e2d8;
  --dark: #111111;
  --soft: #f4efe7;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1440px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(223, 161, 74, 0.42);
  outline-offset: 4px;
}

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

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(232, 226, 216, 0.9);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(17, 17, 17, 0.06);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 56px;
  position: relative;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-header .brand-mark img {
  transform: translateY(-31px);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.btn span {
  margin-left: 8px;
}

.btn:hover,
.icon-button:hover,
.hero-arrow:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(223, 161, 74, 0.28);
}

.btn-gold:hover {
  background: var(--accent-2);
  box-shadow: 0 18px 40px rgba(223, 161, 74, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.icon-button,
.menu-toggle {
  border: 0;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.whatsapp-mini {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
}

.whatsapp-mini svg,
.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  padding: 0 13px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 10px;
  transition: transform 220ms ease;
}

.hero {
  padding-top: 58px;
  padding-bottom: 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  max-width: 720px;
  font-size: clamp(58px, 5.35vw, 78px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 610px;
  margin: 42px 0 0;
  padding: 0;
}

.stats-row div {
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.stats-row dt,
.dark-stats dt {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.stats-row dd,
.dark-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-row svg,
.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-row a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 161, 74, 0.7);
  background: #fff8ec;
  color: var(--accent);
}

.text-link:hover,
.site-footer a:hover {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 30px 0 0;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--dark);
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.14);
}

.hero-image-wrap::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-image-wrap img {
  filter: saturate(0.94) contrast(1.08);
}

.category-stack {
  position: absolute;
  right: 0;
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  z-index: 3;
}

.category-stack span {
  min-width: 124px;
  padding: 13px 15px;
  border: 1px solid rgba(232, 226, 216, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.hero-arrow {
  position: absolute;
  right: 44px;
  bottom: -22px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 31px;
  font-weight: 700;
  box-shadow: 0 22px 42px rgba(223, 161, 74, 0.36);
  transition: transform 220ms ease;
}

.gold-outline {
  position: absolute;
  border: 1px solid rgba(223, 161, 74, 0.48);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.outline-one {
  inset: -18px 16px 34px -18px;
}

.outline-two {
  inset: 42px 0 -16px 40px;
}

.services-card,
.about-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.services-card {
  padding: clamp(32px, 5vw, 70px);
}

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

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 161, 74, 0.5);
  background: #fff8ec;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.07);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 161, 74, 0.42);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
}

.portfolio {
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 56px;
  align-items: center;
}

.portfolio-copy {
  max-width: 520px;
}

.portfolio-copy p {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 33%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.portfolio-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--dark);
  scroll-snap-align: start;
}

.portfolio-card img,
.blog-card img {
  transition: transform 600ms ease;
}

.portfolio-card:hover img,
.blog-card:hover img {
  transform: scale(1.06);
}

.portfolio-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.equipment-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 236, 0.46) 100%);
  overflow: hidden;
}

.equipment-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.equipment-copy {
  position: sticky;
  top: 112px;
}

.equipment-details {
  max-width: 650px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.equipment-details.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.equipment-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.equipment-detail-category {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.equipment-details h2 {
  max-width: 650px;
  margin-bottom: 24px;
}

.equipment-details p {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.equipment-spec-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-spec-list li {
  position: relative;
  padding-left: 20px;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.45;
}

.equipment-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.equipment-spec-toggle {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(223, 161, 74, 0.72);
  text-underline-offset: 5px;
}

.equipment-carousel {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.equipment-stage {
  position: relative;
  min-height: 510px;
  perspective: 1200px;
}

.equipment-card {
  position: absolute;
  top: 20px;
  left: 50%;
  display: grid;
  align-content: end;
  width: min(320px, 52vw);
  height: 450px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.78);
  transition: transform 520ms ease, opacity 520ms ease, border-color 520ms ease, box-shadow 520ms ease;
}

.equipment-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.94) contrast(1.05);
  transition: transform 700ms ease;
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 18%, rgba(0, 0, 0, 0.86) 100%);
}

.equipment-card-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: #ffffff;
}

.equipment-card-content span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.equipment-card-content h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-card-content button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.equipment-card-active {
  z-index: 4;
  border: 2px solid var(--accent);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 34px 78px rgba(17, 17, 17, 0.2), 0 18px 42px rgba(223, 161, 74, 0.18);
  transform: translateX(-50%) translateZ(54px) scale(1);
}

.equipment-card-active:hover img {
  transform: scale(1.06);
}

.equipment-card-prev,
.equipment-card-next {
  z-index: 2;
  opacity: 0.55;
  filter: grayscale(0.18);
}

.equipment-card-prev {
  transform: translateX(calc(-50% - 210px)) rotateY(16deg) scale(0.86);
}

.equipment-card-next {
  transform: translateX(calc(-50% + 210px)) rotateY(-16deg) scale(0.86);
}

.equipment-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.equipment-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.equipment-nav:hover,
.equipment-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(223, 161, 74, 0.72);
  background: #fff8ec;
}

.equipment-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.equipment-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7d0c4;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.equipment-dots button.is-active {
  width: 30px;
  background: var(--accent);
}

.about-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr 0.7fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 5vw, 72px);
}

.about-intro p {
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 18px;
  align-content: center;
}

.feature-list article {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
}

.feature-list h3 {
  margin-bottom: 10px;
}

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

.dark-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  padding: 1px;
  border-radius: 28px;
  background: var(--dark);
  color: #ffffff;
}

.dark-stats div {
  display: grid;
  align-content: center;
  min-height: 168px;
  padding: 30px;
  background: #151515;
}

.dark-stats dt {
  color: var(--accent);
}

.dark-stats dd {
  color: rgba(255, 255, 255, 0.66);
}

.centered {
  text-align: center;
}

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

.testimonial-card {
  min-height: 350px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.client-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff3dd;
  color: var(--accent);
  font-weight: 900;
}

.client-row h3 {
  margin: 0 0 3px;
}

.client-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

blockquote {
  margin: 0 0 28px;
  color: #303030;
  font-size: 17px;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.05);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(223, 161, 74, 0.54);
  box-shadow: var(--shadow);
  outline: 0;
}

.blog-card img {
  height: 250px;
}

.blog-card div {
  padding: 24px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card h3 {
  min-height: 74px;
  margin-bottom: 18px;
  font-size: 21px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-read-link {
  display: inline-flex;
  margin: 0 24px 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(223, 161, 74, 0.72);
  text-underline-offset: 5px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1fr);
  gap: 36px;
  align-items: start;
  padding: clamp(30px, 5vw, 64px);
  background: linear-gradient(135deg, #fffaf1 0%, #ffffff 58%);
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-form-wrap {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 22px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.gdpr-check,
.gdpr-link,
.contact-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row input {
  height: 58px;
  padding: 0 18px;
}

.form-row textarea {
  min-height: 142px;
  resize: vertical;
  padding: 17px 18px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9a948c;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(223, 161, 74, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(223, 161, 74, 0.13);
}

.gdpr-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gdpr-check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.gdpr-link {
  width: max-content;
  margin-top: -8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(223, 161, 74, 0.7);
  text-underline-offset: 5px;
}

.privacy-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=85");
}

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  max-width: 980px;
  padding: clamp(32px, 5vw, 72px);
}

.privacy-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  margin: 42px 0 16px;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.privacy-card ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.privacy-card li::marker {
  color: var(--accent);
}

.privacy-card .btn {
  margin-top: 36px;
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  outline: 0;
  transition: color 180ms ease;
}

.form-status.success {
  color: #2f7d46;
}

.form-status.error {
  color: #a33a2c;
}

.contact-form .btn:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-toast {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 120;
  max-width: min(360px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-toast.success {
  border-left-color: var(--accent);
}

.form-toast.error {
  border-left-color: #a33a2c;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-highlights a {
  display: grid;
  gap: 5px;
  min-height: 90px;
  padding: 18px;
  border-top: 1px solid var(--border);
  transition: transform 220ms ease, border-color 220ms ease;
}

.contact-highlights a:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 161, 74, 0.7);
}

.contact-highlights span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-highlights strong {
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-media {
  grid-column: 1;
  display: grid;
  gap: 16px;
}

.contact-media img {
  height: 300px;
  border-radius: 26px;
}

.pnrr-strip {
  padding: 40px 0;
  border-block: 1px solid var(--border);
  background: #ffffff;
}

.pnrr-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.pnrr-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pnrr-logos span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  place-items: center;
  min-height: 156px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: #252525;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.pnrr-logos img {
  width: auto;
  max-width: 120px;
  height: 58px;
  object-fit: contain;
}

.pnrr-logos .pnrr-logo-wide {
  max-width: min(280px, 90%);
  height: 62px;
}

.pnrr-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.pnrr-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.pnrr-links a,
.pnrr-links span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.pnrr-links a:hover,
.pnrr-links a:hover span {
  color: var(--accent);
}

.site-footer {
  padding: 72px 0 28px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer .footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a,
.site-footer span {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
  transition: transform 220ms ease;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 16px;
  }

  .main-nav {
    gap: 14px;
  }

  .nav-quote {
    display: none;
  }

  .portfolio-grid,
  .about-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
    gap: 34px;
  }

  h1 {
    font-size: clamp(50px, 6vw, 66px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .category-stack span {
    min-width: 112px;
    padding: 11px 13px;
    font-size: 12px;
  }

  .hero-arrow {
    right: 36px;
    width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .portfolio-copy {
    max-width: 720px;
  }

  .equipment-inner {
    grid-template-columns: 1fr;
  }

  .equipment-copy {
    position: static;
  }

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

  .pnrr-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap,
  .contact-media {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    height: 72px;
  }

  .brand-mark {
    width: 72px;
    height: 48px;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-actions {
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: auto;
    width: min(300px, calc(100% - 32px));
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .main-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .whatsapp-mini {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.02;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-wrap {
    inset: 0;
    border-radius: 30px;
  }

  .category-stack {
    right: 14px;
  }

  .category-stack span {
    min-width: 126px;
    padding: 13px 15px;
  }

  .hero-arrow {
    right: 24px;
    width: 78px;
    height: 78px;
    font-size: 31px;
  }

  .split-head {
    display: grid;
    align-items: start;
  }

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

  .gallery-strip {
    grid-auto-columns: minmax(245px, 74%);
  }

  .portfolio-card {
    height: 430px;
  }

  .equipment-stage {
    min-height: 500px;
  }

  .equipment-card-prev {
    transform: translateX(calc(-50% - 170px)) rotateY(14deg) scale(0.84);
  }

  .equipment-card-next {
    transform: translateX(calc(-50% + 170px)) rotateY(-14deg) scale(0.84);
  }

  .pnrr-logos,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .btn {
    width: 100%;
    min-height: 54px;
  }

  .button-row {
    display: grid;
  }

  .services-card,
  .about-card,
  .contact-card {
    border-radius: 28px;
  }

  .services-card,
  .about-card,
  .testimonial-card {
    padding: 24px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .category-stack {
    top: auto;
    right: 12px;
    bottom: 86px;
    transform: none;
    gap: 8px;
  }

  .category-stack span {
    min-width: 116px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .gold-outline {
    display: none;
  }

  .service-item {
    min-height: 86px;
    padding: 18px;
  }

  .equipment-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .equipment-stage {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82%);
    gap: 16px;
    min-height: auto;
    overflow-x: auto;
    padding: 4px 4px 18px;
    perspective: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .equipment-card,
  .equipment-card-active,
  .equipment-card-prev,
  .equipment-card-next {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 410px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
    scroll-snap-align: start;
  }

  .equipment-card {
    display: grid;
  }

  .equipment-card-active {
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16), 0 14px 36px rgba(223, 161, 74, 0.14);
  }

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

  .blog-card h3 {
    min-height: auto;
  }

  .contact-card {
    padding: 24px;
  }

  .dark-stats div {
    min-height: 132px;
    padding: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-media img {
    height: 240px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-card,
  .equipment-card img,
  .equipment-dots button {
    transition: none;
  }
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 680px;
  padding: 150px 0 92px;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.02);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.page-hero-content {
  color: #ffffff;
}

.page-hero-content h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 108px);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 26px);
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
}

.lead-copy {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.image-collage {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
  align-items: end;
}

.image-collage img {
  height: 520px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-collage img:first-child {
  height: 420px;
}

.premium-card-grid {
  display: grid;
  gap: 18px;
}

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

.premium-card-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.premium-info-card,
.premium-card-grid.six article,
.useful-grid article,
.contact-info-grid article,
.faq-wrap details {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.05);
}

.premium-info-card {
  padding: 30px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.premium-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 161, 74, 0.55);
  background: #fff8ec;
}

.premium-info-card h3 {
  margin: 18px 0 10px;
}

.premium-info-card p {
  margin: 0;
  color: var(--muted);
}

.useful-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.useful-grid article {
  padding: 24px;
}

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

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

.timeline span {
  position: relative;
  padding: 28px 18px 0;
  font-weight: 900;
}

.timeline span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

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

.luxury-stats div {
  padding: 34px;
  border-radius: 28px;
  background: var(--dark);
  color: #ffffff;
}

.luxury-stats strong {
  display: block;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.luxury-stats span {
  color: rgba(255, 255, 255, 0.66);
}

.page-cta,
.newsletter-card,
.map-panel,
.video-showcase {
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fffaf1 0%, #ffffff 62%);
  box-shadow: var(--shadow);
  text-align: center;
}

.page-cta h2,
.newsletter-card h2 {
  max-width: 980px;
  margin: 0 auto 28px;
}

.service-page-list {
  display: grid;
  gap: 32px;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.service-feature.is-reversed {
  grid-template-columns: 0.92fr 1fr;
}

.service-feature.is-reversed figure {
  order: -1;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-feature h2 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
}

.service-feature p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.service-feature ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding-left: 20px;
}

.service-feature li::marker {
  color: var(--accent);
}

.service-feature figure {
  height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
}

.service-feature img,
.portfolio-work-card img,
.featured-projects img,
.featured-article img {
  transition: transform 650ms ease;
}

.service-feature:hover img,
.portfolio-work-card:hover img,
.featured-projects article:hover img,
.featured-article:hover img {
  transform: scale(1.05);
}

.premium-card-grid.six article {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
}

.portfolio-filters,
.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.portfolio-filter,
.blog-category-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
  transform: translateY(-2px);
  border-color: rgba(223, 161, 74, 0.72);
  background: var(--accent);
}

.portfolio-masonry {
  columns: 3 280px;
  column-gap: 18px;
}

.portfolio-work-card {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 360px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--dark);
  cursor: pointer;
}

.portfolio-work-card.is-tall {
  height: 520px;
}

.portfolio-work-card::after,
.featured-projects article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
}

.portfolio-work-card div,
.featured-projects div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  color: #ffffff;
}

.portfolio-work-card span,
.featured-projects span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-work-card h3,
.featured-projects h3 {
  margin: 10px 0 6px;
}

.portfolio-work-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.portfolio-lightbox[aria-hidden="true"] {
  visibility: hidden;
}

.portfolio-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox > div {
  width: min(960px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
}

.portfolio-lightbox img {
  height: min(58vh, 560px);
  border-radius: 22px;
}

.portfolio-lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 28px;
}

.portfolio-lightbox h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.featured-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.featured-projects article {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--dark);
}

.video-frame {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 28px;
  border-radius: 28px;
  background: var(--dark);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: var(--dark);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.featured-article img {
  height: 440px;
  border-radius: 28px;
}

.featured-article h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.04;
}

.featured-article p:not(.eyebrow) {
  margin-bottom: 22px;
  line-height: 1.55;
}

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

.newsletter-card form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-card input {
  flex: 1;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
}

.contact-page-card {
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1fr);
}

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

.contact-info-grid article {
  padding: 28px;
}

.contact-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-info-grid strong {
  font-size: 20px;
}

.map-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 250, 241, 0.82), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, rgba(17, 17, 17, 0.08) 0 1px, transparent 1px 22px);
}

.map-panel span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-wrap {
  max-width: 920px;
}

.faq-wrap details {
  margin-top: 12px;
  padding: 22px 24px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-wrap p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.article-modal[aria-hidden="true"] {
  visibility: hidden;
}

.article-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.article-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid rgba(232, 226, 216, 0.7);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  outline: 0;
}

.article-modal-close {
  position: sticky;
  top: 18px;
  left: calc(100% - 70px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 18px 18px -66px auto;
  border: 1px solid rgba(232, 226, 216, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.article-modal-hero {
  width: 100%;
  height: 430px;
  border-radius: 28px 28px 0 0;
}

.article-modal-body {
  padding: clamp(28px, 5vw, 58px);
}

.article-modal-body h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 64px);
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-intro {
  max-width: 760px;
  margin: 28px 0 34px;
  color: #303030;
  font-size: 20px;
  line-height: 1.55;
}

.article-modal-body section {
  max-width: 760px;
  margin-top: 28px;
}

.article-modal-body section h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.article-modal-body section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.article-modal-cta {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff8ec;
}

.article-modal-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .useful-grid,
  .article-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .page-hero {
    min-height: 560px;
    padding: 130px 0 70px;
  }

  .editorial-split,
  .service-feature,
  .service-feature.is-reversed,
  .featured-article,
  .contact-page-card {
    grid-template-columns: 1fr;
  }

  .service-feature.is-reversed figure {
    order: 0;
  }

  .premium-card-grid.three,
  .luxury-stats,
  .featured-projects {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    border-top: 0;
  }

  .timeline span {
    border-left: 1px solid var(--border);
    padding: 0 0 0 28px;
  }

  .timeline span::before {
    top: 6px;
    left: -6px;
  }

  .service-feature figure,
  .featured-projects article {
    height: 380px;
  }

  .portfolio-lightbox > div {
    max-height: 88vh;
    padding: 18px;
    border-radius: 24px;
  }

  .portfolio-lightbox img {
    height: min(46vh, 420px);
  }
}

@media (max-width: 560px) {
  .page-hero-content h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .image-collage,
  .useful-grid,
  .premium-card-grid.six,
  .article-grid,
  .contact-info-grid,
  .newsletter-card form {
    grid-template-columns: 1fr;
  }

  .newsletter-card form {
    display: grid;
  }

  .image-collage img,
  .image-collage img:first-child,
  .featured-article img,
  .service-feature figure {
    height: 300px;
  }

  .article-modal {
    padding: 16px;
  }

  .article-modal-panel {
    max-height: 90vh;
    border-radius: 24px;
  }

  .article-modal-hero {
    height: 260px;
    border-radius: 24px 24px 0 0;
  }

  .article-modal-close {
    width: 46px;
    height: 46px;
    margin: 14px 14px -60px auto;
  }

  .page-hero {
    min-height: 500px;
    padding: 116px 0 58px;
  }

  .service-feature h2,
  .featured-article h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .portfolio-filters,
  .blog-category-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .portfolio-filter,
  .blog-category-row span {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .portfolio-work-card,
  .portfolio-work-card.is-tall {
    height: 380px;
  }

  .portfolio-lightbox {
    padding: 14px;
  }

  .portfolio-lightbox button {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .privacy-card p,
  .privacy-card li,
  .article-modal-body section p {
    font-size: 16px;
  }
}
