:root {
  --ink: #171628;
  --ink-soft: #2a2944;
  --gold: #c9a44e;
  --gold-deep: #9d7726;
  --cream: #faf6ef;
  --sand: #efe4d2;
  --white: #ffffff;
  --line: rgba(23, 22, 40, 0.12);
  --muted: #5e5a72;
  --shadow: 0 22px 48px -28px rgba(23, 22, 40, 0.42);
  --shadow-strong: 0 26px 62px -30px rgba(23, 22, 40, 0.58);
  --radius: 28px;
  --radius-sm: 18px;
  --display: 'Cormorant Garamond', serif;
  --body: 'Manrope', sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 164, 78, 0.17), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 56%, #f7f0e2 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 164, 78, 0.14), transparent 12%),
    radial-gradient(circle at 88% 10%, rgba(23, 22, 40, 0.08), transparent 12%),
    radial-gradient(circle at 84% 74%, rgba(201, 164, 78, 0.12), transparent 16%);
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 164, 78, 0.9);
  outline-offset: 4px;
}

.wrap {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.section--tight {
  padding: 68px 0;
}

.section--flush-top {
  padding-top: 0;
}

.section--deep {
  background: linear-gradient(180deg, rgba(239, 228, 210, 0.74), rgba(255, 255, 255, 0.66));
  border-top: 1px solid rgba(23, 22, 40, 0.06);
  border-bottom: 1px solid rgba(23, 22, 40, 0.06);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow i {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #d8b567);
  box-shadow: 0 14px 34px -18px rgba(157, 119, 38, 0.8);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
}

.btn-outline {
  border-color: rgba(23, 22, 40, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-whatsapp {
  color: #0d2617;
  background: #25d366;
  box-shadow: 0 14px 34px -18px rgba(37, 211, 102, 0.72);
}

.btn-whatsapp:hover {
  background: #1fb85a;
}

.btn-mini {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.page-error {
  overflow-x: hidden;
}

.error-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

.error-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 22, 40, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(239, 228, 210, 0.9)),
    var(--white);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.error-brand {
  display: inline-block;
  margin-bottom: 22px;
}

.error-brand img {
  width: min(100%, 280px);
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(201, 164, 78, 0.16);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.error-text {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.error-actions .btn {
  min-width: 220px;
}

.error-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(250, 246, 239, 0.84);
  border-bottom: 1px solid rgba(23, 22, 40, 0.07);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.site-brand img {
  width: auto;
  height: 70px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(23, 22, 40, 0.08);
  color: var(--ink);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(23, 22, 40, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 64px 0 44px;
}

.hero-inner,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
}

.hero h1 em,
.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-arrow {
  font-size: 0.88rem;
  opacity: 0.78;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card,
.page-card,
.service-visual,
.gallery-card,
.gallery-item,
.team-photo,
.form-card,
.contact-info,
.cta-section {
  border-radius: var(--radius);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-card--logo {
  inset: 14px 58px 82px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 228, 210, 0.88)),
    var(--white);
}

.hero-card--logo img {
  width: min(100%, 420px);
}

.hero-card--accent {
  top: 0;
  right: 0;
  width: 180px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(160deg, var(--ink), #23213d);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-card--note {
  right: 22px;
  bottom: 20px;
  width: 240px;
  padding: 24px;
  background: linear-gradient(140deg, rgba(201, 164, 78, 0.96), rgba(157, 119, 38, 0.9));
  color: var(--ink);
}

.hero-card--note span,
.hero-note strong,
.service-tag,
.cat-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card--note span {
  background: rgba(23, 22, 40, 0.14);
}

.hero-card--note p,
.hero-note p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.event-strip {
  margin-top: 14px;
  padding: 18px 0 0;
  position: relative;
  z-index: 1;
}

.event-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.place-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(23, 22, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.place-tag:hover {
  border-color: rgba(201, 164, 78, 0.4);
  background: rgba(201, 164, 78, 0.14);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.services-grid,
.process,
.values-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.stat-card,
.value-card,
.process-step {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
}

.service-icon,
.process-icon,
.value-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(201, 164, 78, 0.14);
  color: var(--gold-deep);
  font-size: 1.15rem;
}

.service-tag,
.cat-badge {
  background: rgba(201, 164, 78, 0.14);
  color: var(--gold-deep);
}

.service-card h3,
.process-step h3,
.value-card h3,
.service-content h3,
.team-name,
.form-card h2,
.info-block h3,
.faq-item summary,
.gallery-card .cat-caption,
.stat-number {
  font-family: var(--display);
}

.service-card h3,
.process-step h3,
.value-card h3 {
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card p,
.process-step p,
.value-card p,
.gallery-item,
.team-info p,
.story-text p,
.service-content > p,
.faq-item p,
.footer-grid p,
.info-row span,
.info-row a,
.area-box,
.form-note,
.contact-copy {
  color: var(--muted);
}

.process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-label,
.team-role {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(180px, auto));
  gap: 16px;
}

.gallery-item {
  display: flex;
  align-items: end;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(23, 22, 40, 0.82)),
    linear-gradient(135deg, rgba(201, 164, 78, 0.26), rgba(23, 22, 40, 0.16));
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.gallery-item--a {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--b,
.gallery-item--e {
  grid-column: span 2;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  padding: 38px;
  background: linear-gradient(145deg, rgba(23, 22, 40, 0.97), rgba(44, 41, 68, 0.94));
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.cta-section h2 span {
  color: #f2d48f;
}

.cta-section p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 340px);
  margin-left: auto;
}

.cta-actions .btn {
  width: 100%;
  min-height: 64px;
  padding: 16px 22px;
  justify-content: center;
  border-radius: 22px;
  box-shadow: none;
}

.cta-actions .btn-content {
  justify-content: center;
}

.cta-actions .btn-arrow {
  display: none;
}

.cta-actions .btn i {
  flex-shrink: 0;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.page-hero {
  padding: 54px 0 28px;
}

.page-hero-visual {
  display: grid;
  align-items: stretch;
}

.page-card,
.hero-note {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.page-card {
  min-height: 100%;
}

.page-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 228, 210, 0.92));
}

.page-card--logo img {
  width: min(100%, 320px);
}

.page-card--highlight {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 260px;
  background: linear-gradient(145deg, rgba(201, 164, 78, 0.92), rgba(157, 119, 38, 0.92));
  color: var(--ink);
}

.page-card--highlight strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-text {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--gold-deep);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 30px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
}

.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 228, 210, 0.88));
}

.team-photo img {
  width: min(100%, 240px);
}

.team-name {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: stretch;
}

.service-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 228, 210, 0.88)),
    var(--white);
  font-size: 4rem;
  color: rgba(157, 119, 38, 0.78);
}

.visual-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  max-width: calc(100% - 44px);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-content {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
}

.service-content h3 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.96;
  margin-bottom: 14px;
}

.service-features {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.service-features i {
  margin-top: 4px;
  color: var(--gold);
}

.service-from {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-from strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--gold-deep);
  font-size: 1rem;
  transition: transform 0.22s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 22px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0 0;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(23, 22, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-btn i {
  color: var(--gold-deep);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: rgba(201, 164, 78, 0.36);
  background: rgba(201, 164, 78, 0.16);
}

.gallery-section {
  padding: 42px 0 90px;
}

.gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}

.gallery-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(23, 22, 40, 0.12);
  cursor: zoom-in;
}

.gallery-photo::after {
  content: '\f00e';
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(23, 22, 40, 0.68);
  color: var(--white);
  font-family: 'Font Awesome 6 Free';
  font-size: 0.95rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-photo:hover img,
.gallery-photo:focus-visible img {
  transform: scale(1.035);
}

.gallery-photo:focus-visible {
  outline: 4px solid rgba(201, 164, 78, 0.42);
  outline-offset: 4px;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.28s ease;
}

.hidden-item {
  display: none;
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
  color: var(--muted);
  text-align: center;
}

.empty-state.show {
  display: block;
}

.gallery-lock {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 84px;
  background: rgba(23, 22, 40, 0.94);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.gallery-lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox-frame figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: fixed;
  z-index: 201;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 56px;
  height: 56px;
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 22px;
}

.gallery-lightbox-next {
  right: 22px;
}

.contact-section {
  padding: 40px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.contact-info,
.form-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
}

.info-block + .info-block {
  margin-top: 28px;
}

.info-block h3,
.form-card h2 {
  font-size: 2rem;
  line-height: 0.95;
  margin-bottom: 14px;
}

.info-row {
  display: flex;
  align-items: start;
  gap: 14px;
}

.info-row + .info-row {
  margin-top: 16px;
}

.info-row i,
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(201, 164, 78, 0.12);
  color: var(--gold-deep);
}

.info-row strong {
  display: block;
  margin-bottom: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 22, 40, 0.08);
  color: var(--muted);
}

.hours-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.hours-table td:last-child {
  text-align: right;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a:hover {
  background: var(--ink);
  color: var(--white);
}

.area-box,
.form-alert {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 22, 40, 0.07);
  background: linear-gradient(135deg, rgba(239, 228, 210, 0.86), rgba(255, 255, 255, 0.9));
}

.area-box {
  display: flex;
  gap: 12px;
  align-items: start;
}

.area-box i,
.form-alert i {
  color: var(--gold-deep);
  margin-top: 2px;
}

.form-alert {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.form-card > p {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 22, 40, 0.12);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.76);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 78, 0.78);
  background: rgba(255, 255, 255, 0.96);
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: start;
}

.checkbox-group input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--muted);
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(23, 22, 40, 0.1);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 36px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 22, 40, 0.07);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand img {
  width: min(100%, 260px);
}

.footer-grid h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid h4 i {
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-grid a:hover {
  color: var(--gold-deep);
}

.footer-list-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-list-link i {
  width: 14px;
  font-size: 0.78rem;
  color: var(--gold-deep);
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  width: 18px;
  color: var(--gold-deep);
}

.footer-business {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 22, 40, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-business strong {
  color: var(--ink-soft);
}

.footer-brand-block p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand-block p i {
  color: var(--gold-deep);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom i {
  color: var(--gold-deep);
}

.footer-credit {
  color: var(--ink-soft);
  font-weight: 800;
}

.footer-credit:hover {
  color: var(--gold-deep);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 12px 10px 10px;
  border-radius: 24px;
  border: 1px solid rgba(23, 22, 40, 0.08);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 22px 42px -20px rgba(23, 22, 40, 0.4);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -18px rgba(23, 22, 40, 0.46);
}

.wa-float__icon,
.wa-float__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-float__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2be06b, #25d366);
  color: #0d2617;
  box-shadow: 0 16px 30px -18px rgba(37, 211, 102, 0.85);
}

.wa-float__icon i {
  font-size: 1.3rem;
}

.wa-float__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wa-float__copy strong {
  font-size: 0.95rem;
  line-height: 1.05;
}

.wa-float__copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}

.wa-float__arrow {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.14);
  color: #18964a;
}

.wa-float__arrow i {
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .services-grid,
  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--e {
    grid-column: span 1;
    grid-row: auto;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .page-hero-grid,
  .service-block,
  .team-card,
  .contact-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-hero-visual {
    min-height: 340px;
  }

  .process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 22, 40, 0.08);
    box-shadow: var(--shadow-strong);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, var(--max-width));
  }

  .error-card {
    padding: 28px 24px;
  }

  .error-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 72px 0;
  }

  .site-brand img {
    height: 56px;
  }

  .header-cta .btn-mini {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-card--logo {
    inset: 0 22px 90px 0;
    padding: 24px;
  }

  .hero-card--accent {
    width: 154px;
    padding: 18px;
    font-size: 0.88rem;
  }

  .hero-card--note {
    width: min(100%, 220px);
    right: 10px;
    bottom: 0;
    padding: 18px;
  }

  .services-grid,
  .stats-grid,
  .values-grid,
  .gallery-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .gallery-lightbox {
    padding: 22px;
  }

  .gallery-lightbox-frame img {
    max-height: calc(100vh - 104px);
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: scale(1.04);
  }

  .gallery-lightbox-prev {
    left: 22px;
  }

  .gallery-lightbox-next {
    right: 22px;
  }

  .contact-info,
  .form-card,
  .service-content,
  .footer-grid,
  .cta-section,
  .team-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-float {
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 20px;
  }

  .wa-float__copy small {
    display: none;
  }

  .wa-float__icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .wa-float__arrow {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
