:root {
  --bg: #f4eddd;
  --bg-warm: #fbf6eb;
  --surface: rgba(255, 250, 242, 0.76);
  --surface-strong: #fffaf2;
  --surface-border: rgba(29, 49, 74, 0.1);
  --text: #1d314a;
  --text-soft: rgba(29, 49, 74, 0.76);
  --text-faint: rgba(29, 49, 74, 0.58);
  --gold: #c8a56a;
  --gold-deep: #a98147;
  --beige: #e1d3bb;
  --beige-deep: #ccb89a;
  --navy-deep: #12263f;
  --navy-overlay: rgba(18, 38, 63, 0.76);
  --shadow-soft: 0 22px 70px rgba(29, 49, 74, 0.1);
  --shadow-card: 0 18px 48px rgba(18, 38, 63, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container-wide: 1280px;
  --transition: all 0.45s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 165, 106, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(29, 49, 74, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f1e4 0%, var(--bg) 32%, #f7efe0 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::selection {
  background: rgba(200, 165, 106, 0.28);
}

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

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

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

main {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  background: var(--navy-deep);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-loader {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 38, 63, 0.96), rgba(29, 49, 74, 0.84)),
    radial-gradient(circle at center, rgba(200, 165, 106, 0.24), transparent 40%);
  display: grid;
  place-items: center;
  z-index: 4000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.loader-mark__monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
}

.loader-mark__monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3rem;
}

.loader-mark__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.72);
}

.loader-line {
  width: 180px;
  height: 1px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.16);
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 2500;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  transition: var(--transition);
}

.site-header .navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.is-scrolled .navbar {
  padding: 0.55rem 0;
  background: rgba(251, 246, 235, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29, 49, 74, 0.08);
  box-shadow: 0 12px 28px rgba(18, 38, 63, 0.08);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(200, 165, 106, 0.24), rgba(255, 255, 255, 0.1)),
    rgba(18, 38, 63, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 24px rgba(18, 38, 63, 0.22);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.brand-mark--image {
  width: 68px;
  height: 68px;
  padding: 0.4rem;
  overflow: hidden;
  background: rgba(18, 38, 63, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(18, 38, 63, 0.18);
}

.brand-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav-link,
.dropdown-item {
  color: var(--text);
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.95rem;
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--gold-deep);
}

.dropdown-menu {
  border: 1px solid rgba(29, 49, 74, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
  background: rgba(255, 251, 244, 0.94);
  backdrop-filter: blur(22px);
}

.dropdown-item {
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 38, 63, 0.92);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 38, 63, 0.18);
}

.nav-cta:hover {
  background: var(--gold-deep);
  color: #fff;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-secondary {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: rgba(18, 38, 63, 0.06);
  border: 1px solid rgba(29, 49, 74, 0.1);
  transition: var(--transition);
}

.nav-secondary:hover {
  color: #fff;
  background: #1ca45b;
  border-color: transparent;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.section-space {
  padding: 6rem 0;
}

.section-space-lg {
  padding: 8rem 0;
}

.section-shell {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(29, 49, 74, 0.08);
  box-shadow: 0 8px 24px rgba(29, 49, 74, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--text-soft);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.section-title,
.display-title,
.page-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.display-title {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.section-title {
  font-size: clamp(2.35rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.section-copy {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 620px;
}

.body-large {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.btn-luxe,
.btn-outline-luxe {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-luxe::before,
.btn-outline-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.45s ease;
}

.btn-luxe:hover::before,
.btn-outline-luxe:hover::before {
  transform: translateX(0);
}

.btn-luxe > span,
.btn-outline-luxe > span,
.btn-luxe > i,
.btn-outline-luxe > i {
  position: relative;
  z-index: 1;
}

.btn-luxe {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), #264260);
  box-shadow: 0 16px 28px rgba(18, 38, 63, 0.18);
}

.btn-luxe::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.btn-luxe:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-luxe {
  color: var(--text);
  border: 1px solid rgba(29, 49, 74, 0.16);
  background: rgba(255, 250, 242, 0.72);
}

.btn-outline-luxe::before {
  background: rgba(18, 38, 63, 0.06);
}

.btn-outline-luxe:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 49, 74, 0.24);
}

.soft-panel {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.72));
  border: 1px solid rgba(29, 49, 74, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-section {
  padding: 7.5rem 0 2.5rem;
  position: relative;
}

.hero-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: calc(100vh - 9rem);
  box-shadow: 0 28px 80px rgba(18, 38, 63, 0.18);
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slide {
  min-height: calc(100vh - 9rem);
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(18, 38, 63, 0.78), rgba(18, 38, 63, 0.32) 52%, rgba(18, 38, 63, 0.14)),
    radial-gradient(circle at top right, rgba(200, 165, 106, 0.18), transparent 34%);
  z-index: 1;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 700px;
  color: #fff;
  padding: 3rem 0;
}

.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-copy .display-title {
  color: #fff;
  margin: 1.4rem 0 1.2rem;
}

.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.8rem;
  max-width: 560px;
}

.hero-metric {
  padding: 1.05rem 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-metric strong {
  font-size: 1.35rem;
  display: block;
}

.hero-metric span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-floating {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 5;
  max-width: 320px;
  padding: 1.4rem;
  border-radius: 30px;
  color: #fff;
  background: rgba(18, 38, 63, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-floating__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-floating h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0.8rem 0 0.55rem;
}

.hero-floating p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.hero-floating__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-social {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.85rem;
}

.hero-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-social a:hover {
  transform: translateY(-4px);
  background: rgba(200, 165, 106, 0.34);
}

.hero-slider .swiper-pagination {
  width: auto;
  left: auto;
  right: 1.5rem;
  bottom: 1.5rem;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--gold);
}

.intro-layout,
.editorial-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}

.editorial-image-stack {
  position: relative;
  min-height: 520px;
}

.editorial-image-main,
.editorial-image-accent {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.editorial-image-main img,
.editorial-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image-main {
  height: 520px;
}

.editorial-image-accent {
  position: absolute;
  right: -3rem;
  bottom: 3rem;
  width: 48%;
  height: 260px;
  border: 10px solid rgba(251, 246, 235, 0.95);
}

.signature-card,
.luxury-note,
.counter-card,
.service-card,
.project-card,
.product-card,
.testimonial-card,
.contact-card,
.faq-card,
.blog-card,
.team-card,
.detail-card,
.pill-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(29, 49, 74, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.8));
  box-shadow: var(--shadow-soft);
}

.signature-card,
.luxury-note,
.counter-card,
.service-card,
.testimonial-card,
.contact-card,
.faq-card,
.blog-card,
.team-card,
.detail-card,
.pill-card {
  padding: 1.8rem;
}

.signature-card::after,
.luxury-note::after,
.counter-card::after,
.service-card::after,
.project-card::after,
.product-card::after,
.testimonial-card::after,
.contact-card::after,
.faq-card::after,
.blog-card::after,
.team-card::after,
.detail-card::after,
.pill-card::after {
  content: "";
  position: absolute;
  inset: auto -35% 65% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 165, 106, 0.14), transparent 68%);
  pointer-events: none;
}

.signature-card small,
.luxury-note small,
.counter-card small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--text-faint);
}

.signature-card h3,
.luxury-note h3,
.service-card h3,
.project-card h3,
.product-card h3,
.testimonial-card h3,
.blog-card h3,
.team-card h3,
.detail-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  margin: 0.8rem 0 0.6rem;
}

.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: linear-gradient(135deg, rgba(200, 165, 106, 0.24), rgba(18, 38, 63, 0.08));
  font-size: 1.3rem;
}

.services-grid,
.pill-grid,
.contact-grid,
.blog-grid,
.team-grid,
.shop-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  height: 100%;
  transition: var(--transition);
}

.service-card:hover,
.project-card:hover,
.product-card:hover,
.blog-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.service-card p,
.project-card p,
.product-card p,
.testimonial-card p,
.blog-card p,
.team-card p,
.detail-card p,
.contact-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.service-card__footer,
.card-inline-meta,
.product-card__meta,
.blog-meta,
.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  background: rgba(18, 38, 63, 0.06);
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

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

.counter-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--navy-deep);
  margin-top: 0.8rem;
}

.counter-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-soft);
}

.timeline-panel {
  padding: 2rem;
}

.timeline-panel ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.timeline-panel li {
  padding: 1rem 0 1rem 1.2rem;
  border-left: 1px solid rgba(29, 49, 74, 0.14);
  position: relative;
}

.timeline-panel li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: -5px;
  top: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.portfolio-grid,
.social-grid,
.project-gallery,
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.portfolio-grid .project-card:nth-child(1) {
  grid-column: span 7;
}

.portfolio-grid .project-card:nth-child(2),
.portfolio-grid .project-card:nth-child(3) {
  grid-column: span 5;
}

.portfolio-grid .project-card:nth-child(4) {
  grid-column: span 6;
}

.portfolio-grid .project-card:nth-child(5) {
  grid-column: span 6;
}

.project-card {
  min-height: 360px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.project-card__image,
.product-card__image,
.blog-card__image,
.page-hero__image,
.detail-gallery__item,
.instagram-card__image {
  position: relative;
  overflow: hidden;
}

.project-card__image,
.project-card__overlay {
  position: absolute;
  inset: 0;
}

.project-card__image img,
.product-card__image img,
.blog-card__image img,
.page-hero__image img,
.detail-gallery__item img,
.instagram-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card__overlay {
  background:
    linear-gradient(180deg, rgba(18, 38, 63, 0.08), rgba(18, 38, 63, 0.82)),
    radial-gradient(circle at top right, rgba(200, 165, 106, 0.26), transparent 38%);
}

.project-card:hover img,
.product-card:hover img,
.blog-card:hover img,
.instagram-card:hover img,
.detail-gallery__item:hover img {
  transform: scale(1.08);
}

.project-card__content {
  position: relative;
  z-index: 1;
  padding: 1.8rem;
}

.project-card__content h3 {
  color: #fff;
}

.project-card__content p {
  color: rgba(255, 255, 255, 0.78);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.product-card__image,
.blog-card__image {
  height: 280px;
}

.product-card__body,
.blog-card__body {
  padding: 1.6rem;
}

.price-tag {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-deep);
}

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

.process-step {
  position: relative;
  padding: 1.7rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(29, 49, 74, 0.08);
  box-shadow: var(--shadow-soft);
  min-height: 220px;
}

.process-step__number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  color: var(--gold-deep);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1rem 0 0.65rem;
}

.process-step p {
  color: var(--text-soft);
  line-height: 1.75;
}

.testimonials-shell {
  position: relative;
}

.testimonial-card {
  height: auto;
}

.testimonial-stars {
  display: flex;
  gap: 0.35rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.35;
  margin: 0 0 1.3rem;
  color: var(--navy-deep);
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-person span {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.swiper-pagination.testimonial-pagination {
  position: relative;
  margin-top: 1.5rem;
}

.swiper-pagination.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(29, 49, 74, 0.22);
}

.swiper-pagination.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--gold-deep);
}

.instagram-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.instagram-card__image,
.instagram-card__overlay {
  position: absolute;
  inset: 0;
}

.instagram-card__overlay {
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 38, 63, 0.08), rgba(18, 38, 63, 0.72));
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}

.instagram-card:hover .instagram-card__overlay {
  opacity: 1;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 3rem;
  background:
    linear-gradient(120deg, rgba(18, 38, 63, 0.94), rgba(25, 43, 67, 0.84)),
    radial-gradient(circle at top right, rgba(200, 165, 106, 0.36), transparent 36%);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -5rem -6rem auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 165, 106, 0.22), transparent 72%);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
}

.page-hero {
  padding: 9.5rem 0 4rem;
}

.page-hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 470px;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow-card);
}

.page-hero__image,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__overlay {
  background:
    linear-gradient(120deg, rgba(18, 38, 63, 0.78), rgba(18, 38, 63, 0.22)),
    radial-gradient(circle at top right, rgba(200, 165, 106, 0.24), transparent 40%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2.5rem;
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  color: #fff;
  margin: 1rem 0 1rem;
}

.page-hero__content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.milestone-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.milestone-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(29, 49, 74, 0.08);
  box-shadow: var(--shadow-soft);
}

.milestone-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}

.coverage-grid,
.service-detail-grid,
.detail-meta-grid,
.form-grid,
.contact-layout,
.article-feature,
.project-story-grid {
  display: grid;
  gap: 1.4rem;
}

.coverage-grid,
.detail-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-detail {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 32px;
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}

.service-detail__media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-list,
.detail-list,
.contact-list,
.faq-list,
.expectation-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.benefit-list li,
.detail-list li,
.contact-list li,
.faq-list li,
.expectation-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.7;
}

.benefit-list i,
.detail-list i,
.contact-list i,
.faq-list i,
.expectation-list i {
  color: var(--gold-deep);
  margin-top: 0.25rem;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.filter-toolbar button {
  border: 1px solid rgba(29, 49, 74, 0.12);
  background: rgba(255, 250, 242, 0.72);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.filter-toolbar button.active,
.filter-toolbar button:hover {
  background: rgba(18, 38, 63, 0.92);
  color: #fff;
  border-color: transparent;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.filter-item.is-hidden {
  display: none;
}

.project-thumb,
.detail-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.detail-gallery__item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-deep);
}

.booking-form,
.contact-form {
  padding: 2rem;
}

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

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
}

.form-control,
.form-select {
  border-radius: 18px;
  border: 1px solid rgba(29, 49, 74, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  padding: 0.95rem 1rem;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(200, 165, 106, 0.72);
  background: #fff;
}

.form-response {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(200, 165, 106, 0.12);
  color: var(--navy-deep);
  display: none;
}

.form-response.is-visible {
  display: block;
}

.expectation-card {
  padding: 1.6rem;
}

.contact-layout {
  grid-template-columns: 0.88fr 1.12fr;
}

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

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 30px;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(29, 49, 74, 0.08);
  background: transparent;
}

.accordion-button {
  background: transparent;
  box-shadow: none !important;
  padding: 1.2rem 0;
  font-weight: 700;
  color: var(--text);
}

.accordion-button:not(.collapsed) {
  color: var(--gold-deep);
  background: transparent;
}

.accordion-button::after {
  background-size: 1rem;
}

.article-feature {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.article-feature__media {
  border-radius: 36px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-card);
}

.article-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 5rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(18, 38, 63, 0.98), rgba(23, 40, 62, 0.94)),
    radial-gradient(circle at top right, rgba(200, 165, 106, 0.28), transparent 36%);
  color: #fff;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  gap: 1.4rem;
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.85rem;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-list a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: var(--transition);
}

.social-list a:hover {
  background: rgba(200, 165, 106, 0.28);
  transform: translateY(-3px);
}

.floating-actions {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2200;
  display: grid;
  gap: 0.7rem;
}

.floating-action {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.floating-action--whatsapp {
  background: linear-gradient(135deg, #1fbf68, #119f54);
}

.floating-action--top {
  background: linear-gradient(135deg, var(--navy-deep), #29425f);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.floating-action--top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-action:hover {
  transform: translateY(-4px);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 30, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 3500;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  max-width: min(1120px, 100%);
  width: 100%;
  position: relative;
}

.lightbox__inner img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 28px;
}

.lightbox__close {
  position: absolute;
  top: -0.85rem;
  right: -0.85rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--navy-deep);
  font-size: 1.2rem;
}

.parallax-layer {
  will-change: transform;
}

.reveal-divider {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.3rem 0 1.2rem;
}

@media (max-width: 1199px) {
  .services-grid,
  .pill-grid,
  .team-grid,
  .shop-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-grid .project-card:nth-child(1),
  .portfolio-grid .project-card:nth-child(2),
  .portfolio-grid .project-card:nth-child(3),
  .portfolio-grid .project-card:nth-child(4),
  .portfolio-grid .project-card:nth-child(5) {
    grid-column: span 6;
  }

  .footer-grid,
  .contact-layout,
  .choose-grid,
  .article-feature,
  .intro-layout,
  .editorial-split,
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail__media {
    order: 0;
  }

  .hero-floating {
    max-width: 280px;
  }

  .nav-actions {
    margin-top: 1rem;
  }
}

@media (max-width: 991px) {
  .hero-shell,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    min-height: 760px;
  }

  .hero-floating {
    position: static;
    margin: 1.25rem;
    max-width: none;
  }

  .hero-social {
    left: 1.25rem;
    bottom: 8rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .coverage-grid,
  .milestone-band,
  .filter-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid .project-card:nth-child(1),
  .portfolio-grid .project-card:nth-child(2),
  .portfolio-grid .project-card:nth-child(3),
  .portfolio-grid .project-card:nth-child(4),
  .portfolio-grid .project-card:nth-child(5) {
    grid-column: span 12;
  }

  .project-card {
    min-height: 320px;
  }

  .editorial-image-stack {
    min-height: auto;
  }

  .editorial-image-main {
    height: 440px;
  }

  .editorial-image-accent {
    width: 45%;
    height: 220px;
    right: 0;
  }

}

@media (max-width: 767px) {
  .section-space,
  .section-space-lg {
    padding: 4.6rem 0;
  }

  .hero-section {
    padding-top: 6.9rem;
  }

  .hero-slide {
    min-height: 720px;
  }

  .hero-copy {
    padding-bottom: 8rem;
  }

  .hero-social {
    display: none;
  }

  .brand-mark--image {
    width: 56px;
    height: 56px;
    padding: 0.35rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.68rem;
  }

  .page-hero__content,
  .cta-banner,
  .booking-form,
  .contact-form {
    padding: 1.5rem;
  }

  .services-grid,
  .pill-grid,
  .team-grid,
  .shop-grid,
  .blog-grid,
  .coverage-grid,
  .milestone-band,
  .filter-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid,
  .counters-grid,
  .value-grid,
  .detail-meta-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card__image,
  .blog-card__image {
    height: 240px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
