:root {
  --bg-dark: #f6f5f1;
  --bg-secondary: #ffffff;
  --bg-soft: #eeece6;
  --silver: #737983;
  --silver-light: #4d535d;
  --dark-gray: #30343b;
  --text: #25272b;
  --text-gray: #68707a;
  --border: rgba(37, 39, 43, 0.12);
  --shadow: 0 30px 70px rgba(37, 39, 43, 0.12);
  --radius: 22px;
  --hero-heading-size: clamp(2.8rem, 4vw, 4.8rem);
  --hero-heading-size-mobile: clamp(2.5rem, 10vw, 3.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, .brand-name, .brand-sub {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
}

.section-spacing {
  padding: 110px 0;
}

.bg-dark-soft {
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
}

.section-tag {
  display: inline-block;
  color: var(--silver-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--silver);
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.9);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.about h2,
.faq h2,
.cta-box h2,
.contact h2,
.page-banner-content h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.2;
  margin: 0 0 18px;
}

.about h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-page .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.topbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  color: var(--text-gray);
  font-size: 0.8rem;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled,
.inner-header {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border);
}

.navbar {
  padding: 18px 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(37, 39, 43, 0.05);
  padding: 6px;
}

.navbar-brand .brand-logo {
  width: 78px;
  height: 78px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.15em;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--silver-light);
  letter-spacing: 0.22em;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: rgba(37, 39, 43, 0.8) !important;
  font-weight: 500;
  padding: 10px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark-gray) !important;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--silver), #dfe3e8);
  border: none;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(115, 121, 131, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(138, 143, 152, 0.35);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  color: white;
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 42vw;
  height: 100%;
  right: 0;
  top: 0;
  background: #e2dfd7;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  color: var(--silver-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 26px;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px;
  background: var(--silver);
}

.hero-section h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-section h1 em {
  color: var(--silver);
  font-style: normal;
}

.hero-subtitle {
  color: var(--text-gray);
  max-width: 510px;
  margin-bottom: 34px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.hero-actions .btn i,
.hero-text-link i {
  margin-left: 8px;
  font-size: 0.8em;
}

.hero-text-link {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
}

.hero-text-link:hover {
  color: var(--silver);
  border-color: var(--silver);
}

.hero-meta {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  min-width: 112px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-meta span {
  color: var(--text-gray);
  margin-top: 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 52px 34px;
}

.hero-image {
  width: 100%;
  height: min(65vh, 560px);
  min-height: 430px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(260px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.hero-caption span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.hero-caption p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.about-image-wrap {
  position: relative;
  display: inline-block;
}

.main-image {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.experience-badge strong {
  font-size: 2.2rem;
}

.about p,
.info-panel p,
.service-detail-content p,
.feature-box p,
.blog-card-body p,
.contact-card,
.privacy {
  color: var(--text-gray);
}

.stats-grid {
  margin-top: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-box strong {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  color: var(--silver-light);
}

.stat-box span {
  color: var(--text-gray);
}

.service-card,
.feature-box,
.portfolio-item,
.testimonial-card,
.blog-card,
.service-detail-card,
.contact-card,
.contact-form-box,
.info-panel,
.recognition-box,
.mini-feature,
.team-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(37, 39, 43, 0.08);
}

.service-card {
  padding: 28px 22px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover,
.feature-box:hover,
.blog-card:hover,
.team-card:hover,
.recognition-box:hover,
.mini-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(138, 143, 152, 0.45);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(138, 143, 152, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--silver-light);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.service-card a {
  color: var(--silver-light);
  font-weight: 600;
}

.feature-box {
  padding: 32px 26px;
  height: 100%;
}

.why-us {
  position: relative;
  overflow: hidden;
  background: #eeece6;
}

.why-us::after {
  content: 'LB';
  position: absolute;
  right: -18px;
  bottom: -82px;
  color: rgba(115, 121, 131, 0.08);
  font-family: 'Cinzel', serif;
  font-size: 20rem;
  line-height: 1;
  pointer-events: none;
}

.why-us-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.why-us-intro {
  position: sticky;
  top: 120px;
  max-width: 400px;
}

.why-us-intro h2 {
  max-width: 390px;
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.why-us-intro p {
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--text-gray);
}

.why-us-intro .hero-text-link {
  display: inline-block;
}

.why-us-list {
  border-top: 1px solid rgba(37, 39, 43, 0.2);
}

.why-us-item {
  display: grid;
  grid-template-columns: 42px 42px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(37, 39, 43, 0.2);
  transition: padding 0.3s ease, background 0.3s ease;
}

.why-us-item:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.why-us-number {
  padding-top: 4px;
  color: var(--silver);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.why-us-item > i {
  padding-top: 4px;
  color: var(--silver);
  font-size: 1.15rem;
}

.why-us-item h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
}

.why-us-item p {
  max-width: 520px;
  margin: 0;
  color: var(--text-gray);
  font-size: 0.92rem;
}

.feature-box i,
.recognition-box i {
  font-size: 2rem;
  color: var(--silver-light);
  margin-bottom: 16px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(138, 143, 152, 0.12);
  border-color: rgba(138, 143, 152, 0.35);
  color: var(--text);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.portfolio-overlay span {
  color: var(--silver-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-step {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
}

.process-step span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(138, 143, 152, 0.12);
  color: var(--silver-light);
  font-weight: 700;
  margin-bottom: 18px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.testimonial-slider {
  padding-bottom: 36px;
}

.testimonial-card {
  padding: 28px 22px;
  height: 100%;
}

.testimonial-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.testimonial-header span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.stars {
  color: #f4c95d;
  margin-bottom: 12px;
}

.swiper-pagination-bullet {
  background: rgba(37, 39, 43, 0.35);
}

.swiper-pagination-bullet-active {
  background: var(--silver-light);
}

.stats-band {
  background: linear-gradient(180deg, #eeece6, #ffffff);
  padding: 80px 0;
}

.stat-band-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 18px;
}

.stat-band-box strong {
  display: block;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: var(--silver-light);
}

.accordion-item {
  background: transparent;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  border-radius: 14px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 600;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--text);
  background: rgba(115, 121, 131, 0.12);
  box-shadow: none;
}

.accordion-body {
  background: transparent;
  color: var(--text-gray);
  padding: 16px 20px 20px;
}

.cta-box {
  background: linear-gradient(135deg, #ffffff, #eeece6);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 46px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-gray);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: #e9e7e0;
  padding-top: 90px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.site-footer h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
  color: var(--text-gray);
}

.site-footer a {
  color: var(--text-gray);
}

.site-footer a:hover {
  color: var(--silver-light);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
}

.newsletter {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--text);
}

.copyright {
  text-align: center;
  padding: 24px 0 30px;
  color: var(--text-gray);
  border-top: 1px solid var(--border);
  margin-top: 26px;
}

.page-banner {
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-banner-content {
  padding: 100px 0 30px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.about-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #e2dfd7;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.about-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 86px;
  padding-bottom: 86px;
}

.about-hero-copy {
  max-width: 560px;
}

.about-hero-copy .section-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--silver);
}

.about-hero h1 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.about-hero h1 em {
  color: var(--silver);
  font-style: normal;
}

.about-hero-copy > p {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-hero-copy .btn i {
  margin-left: 8px;
  font-size: 0.8em;
}

.about-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.about-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 145px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.about-hero-stats div:last-child {
  border-right: 0;
}

.about-hero-stats strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.about-hero-stats span {
  margin-top: 7px;
  color: var(--text-gray);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 48px 34px;
}

.about-hero-visual img {
  width: 100%;
  height: min(64vh, 520px);
  min-height: 420px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.about-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.about-hero-note span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.about-hero-note p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.about-intro {
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 10vw, 160px);
  align-items: start;
}

.about-intro-lead h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
}

.about-intro-copy {
  max-width: 650px;
}

.about-intro-copy p {
  color: var(--text-gray);
}

.about-intro-copy .about-lead {
  margin-bottom: 22px;
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  line-height: 1.55;
}

.services-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.services-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #e2dfd7;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.services-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 86px;
  padding-bottom: 86px;
}

.services-hero-copy {
  max-width: 560px;
}

.services-hero-copy .section-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--silver);
}

.services-hero h1 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.services-hero h1 em {
  color: var(--silver);
  font-style: normal;
}

.services-hero-copy > p {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-hero-copy .btn i {
  margin-left: 8px;
  font-size: 0.8em;
}

.services-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.services-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.services-hero-stats div:last-child {
  border-right: 0;
}

.services-hero-stats strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.services-hero-stats span {
  margin-top: 7px;
  color: var(--text-gray);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 48px 34px;
}

.services-hero-visual img {
  width: 100%;
  height: min(64vh, 520px);
  min-height: 420px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.services-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.services-hero-note span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.services-hero-note p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.portfolio-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #e2dfd7;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.portfolio-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 86px;
  padding-bottom: 86px;
}

.portfolio-hero-copy {
  max-width: 560px;
}

.portfolio-hero-copy .section-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--silver);
}

.portfolio-hero h1 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.portfolio-hero h1 em {
  color: var(--silver);
  font-style: normal;
}

.portfolio-hero-copy > p {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.portfolio-hero-copy .btn i {
  margin-left: 8px;
  font-size: 0.8em;
}

.portfolio-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.portfolio-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.portfolio-hero-stats div:last-child {
  border-right: 0;
}

.portfolio-hero-stats strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.portfolio-hero-stats span {
  margin-top: 7px;
  color: var(--text-gray);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 48px 34px;
}

.portfolio-hero-visual img {
  width: 100%;
  height: min(64vh, 520px);
  min-height: 420px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.portfolio-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.portfolio-hero-note span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.portfolio-hero-note p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.blog-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #e2dfd7;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.blog-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 86px;
  padding-bottom: 86px;
}

.blog-hero-copy {
  max-width: 560px;
}

.blog-hero-copy .section-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--silver);
}

.blog-hero h1 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.blog-hero h1 em {
  color: var(--silver);
  font-style: normal;
}

.blog-hero-copy > p {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-hero-copy .btn i {
  margin-left: 8px;
  font-size: 0.8em;
}

.blog-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.blog-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.blog-hero-stats div:last-child {
  border-right: 0;
}

.blog-hero-stats strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.blog-hero-stats span {
  margin-top: 7px;
  color: var(--text-gray);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 48px 34px;
}

.blog-hero-visual img {
  width: 100%;
  height: min(64vh, 520px);
  min-height: 420px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.blog-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.blog-hero-note span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.blog-hero-note p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f6f2 0%, #eeece6 100%);
}

.contact-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #e2dfd7;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 86px;
  padding-bottom: 86px;
}

.contact-hero-copy {
  max-width: 560px;
}

.contact-hero-copy .section-tag span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--silver);
}

.contact-hero h1 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: var(--hero-heading-size);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.contact-hero h1 em {
  color: var(--silver);
  font-style: normal;
}

.contact-hero-copy > p {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-hero-actions .btn i {
  margin-left: 8px;
  font-size: 0.8em;
}

.contact-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 58px;
}

.contact-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}

.contact-hero-stats div:last-child {
  border-right: 0;
}

.contact-hero-stats strong {
  font-size: 1.9rem;
  line-height: 1.1;
}

.contact-hero-stats span {
  margin-top: 7px;
  color: var(--text-gray);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 48px 34px;
}

.contact-hero-visual img {
  width: 100%;
  height: min(64vh, 520px);
  min-height: 420px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(115, 121, 131, 0.2);
}

.contact-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 58%);
  padding: 18px 20px;
  background: var(--text);
  color: #ffffff;
}

.contact-hero-note span {
  color: #c6cbd2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.contact-hero-note p {
  margin: 8px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.info-panel,
.contact-card,
.contact-form-box,
.blog-card,
.service-detail-card,
.team-card,
.recognition-box,
.mini-feature {
  padding: 28px 22px;
}

.founder-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.founder-image {
  width: 40%;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content {
  width: 60%;
  padding: 40px;
}

.founder-content p {
  color: var(--text-gray);
  font-size: 1.08rem;
}

.team-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.team-card h3 {
  margin: 0 0 8px;
}

.team-card span {
  color: var(--silver-light);
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body span {
  color: var(--silver-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card-body h3 {
  margin: 12px 0;
  font-size: 1.3rem;
}

.blog-card-body a {
  color: var(--silver-light);
  font-weight: 600;
}

.service-detail-card {
  overflow: hidden;
  padding: 0;
}

.service-detail-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-detail-content {
  padding: 24px 22px 28px;
}

.service-detail-content ul {
  padding-left: 18px;
  color: var(--text-gray);
}

.mini-feature {
  text-align: center;
  min-height: 160px;
}

.mini-feature span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  place-items: center;
  background: rgba(138,143,152,0.12);
  color: var(--silver-light);
  font-weight: 700;
  margin-bottom: 16px;
}

@media (max-width: 991.98px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .about-hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .about-hero-copy {
    max-width: 720px;
  }

  .about-hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .services-hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .services-hero-copy {
    max-width: 720px;
  }

  .services-hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .portfolio-hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .portfolio-hero-copy {
    max-width: 720px;
  }

  .portfolio-hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .blog-hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .blog-hero-copy {
    max-width: 720px;
  }

  .blog-hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .contact-hero-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
  }

  .contact-hero-copy {
    max-width: 720px;
  }

  .contact-hero-visual {
    width: min(100%, 680px);
    margin-left: auto;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-intro {
    position: static;
    max-width: 620px;
  }

  .navbar-toggler {
    border: 1px solid rgba(37, 39, 43, 0.18);
    width: 50px;
    height: 42px;
    padding: 0;
    margin-left: auto;
    border-radius: 10px;
  }

  .navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-top: 18px;
    padding: 18px;
  }

  .portfolio-grid,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-box {
    flex-direction: column;
  }

  .founder-image,
  .founder-content {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }

  .section-spacing {
    padding: 80px 0;
  }

  .portfolio-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .hero-section::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-visual {
    padding-left: 18px;
    padding-bottom: 44px;
  }

  .hero-image {
    height: 420px;
    min-height: 0;
  }

  .about-hero::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .about-hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .about-hero h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .about-hero-visual {
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .about-hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .about-hero-stats {
    margin-top: 44px;
  }

  .services-hero::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .services-hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .services-hero h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .services-hero-visual {
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .services-hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .portfolio-hero::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .portfolio-hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .portfolio-hero h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .portfolio-hero-visual {
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .portfolio-hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .blog-hero::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .blog-hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .blog-hero h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .blog-hero-visual {
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .blog-hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .contact-hero::before {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .contact-hero-shell {
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .contact-hero h1 {
    font-size: var(--hero-heading-size-mobile);
  }

  .contact-hero-visual {
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .contact-hero-visual img {
    height: 400px;
    min-height: 0;
  }

  .why-us::after {
    font-size: 13rem;
    bottom: -42px;
  }

  .why-us-item {
    grid-template-columns: 34px 32px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }

  .why-us-item:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    min-width: auto;
  }
}
