:root {
  --ink: #111111;
  --ink-soft: #31302d;
  --paper: #ffffff;
  --cream: #f6f2eb;
  --sand: #d9c5a4;
  --gold: #a77a3e;
  --line: #e8e2d9;
  --muted: #6c6964;
  --success: #25d366;
  --shadow: 0 20px 55px rgba(18, 17, 15, 0.11);
  --radius: 18px;
  --container: 1180px;
  --hero-image: url("images/hero-contact-sheet.png");
  --services-image: url("images/services-contact-sheet.png");
  --gallery-image: url("images/gallery-contact-sheet.png");
}


.floating-call{
    position: fixed;
    right: 20px;
    bottom: 95px; /* WhatsApp button ke upar */
    z-index: 9999;
}

.floating-call a{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A66C2;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: all .3s ease;
    animation: callPulse 2s infinite;
}

.floating-call a:hover{
    background: #084b8a;
    transform: scale(1.1);
}

@keyframes callPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(10,102,194,.6);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(10,102,194,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(10,102,194,0);
    }
}

@media (max-width:768px){
    .floating-call{
        right:15px;
        bottom:85px;
    }

    .floating-call a{
        width:55px;
        height:55px;
        font-size:22px;
    }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(167, 122, 62, 0.48);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 15px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  letter-spacing: 0.01em;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__item,
.topbar__links,
.topbar__links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__links {
  gap: 18px;
}

.topbar a:hover {
  color: var(--sand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(18, 17, 15, 0.09);
}

.nav-shell {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  width: 135px;
  height: 70px;
  flex: 0 0 135px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 135px;
  height: 70px;
  display: block;
  overflow: visible;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.main-nav__link {
  position: relative;
  padding-block: 9px;
  color: #292826;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav__link::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 0.25s ease;
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.nav-cta,
.btn--dark {
  background: var(--ink);
  color: #fff;
}

.nav-cta:hover,
.btn--dark:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  transform: translateY(-2px);
  background: #8e642f;
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--light:hover {
  transform: translateY(-2px);
  background: var(--sand);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__lines::before {
  top: -6px;
}

.menu-toggle__lines::after {
  top: 6px;
}

.menu-toggle.open .menu-toggle__lines {
  background: transparent;
}

.menu-toggle.open .menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.open .menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background-color: #24211e;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: 300% auto;
  background-position: var(--hero-position, 0 0);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.91) 0%, rgba(9, 9, 9, 0.72) 47%, rgba(9, 9, 9, 0.32) 100%),
    radial-gradient(circle at 75% 30%, rgba(167, 122, 62, 0.24), transparent 34%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -220px;
  z-index: -1;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero--home {
  --hero-position: 0% 18%;
  min-height: min(760px, calc(100vh - 110px));
}

.hero--about { --hero-position: 50% 18%; }
.hero--services { --hero-position: 100% 18%; }
.hero--gallery { --hero-position: 0% 82%; }
.hero--contact { --hero-position: 100% 82%; }

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

.hero__content {
  width: min(740px, 100%);
  padding-block: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #e1c18e;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.06;
}

h1 {
  max-width: 790px;
  font-size: clamp(3.15rem, 7vw, 6rem);
  letter-spacing: -0.04em;
}

.hero--inner h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
}

.hero__lead {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero__actions,
.actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.actions--center {
  justify-content: center;
}

.hero__trust {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust i {
  color: #e1c18e;
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
}

.section--cream {
  background: var(--cream);
}

.section--ink {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  letter-spacing: -0.025em;
}

.section-heading p {
  margin-top: 17px;
  color: var(--muted);
}

.section--ink .section-heading p {
  color: rgba(255, 255, 255, 0.67);
}

.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.intro-copy h2,
.split-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}

.intro-copy p,
.split-copy p {
  color: var(--muted);
}

.intro-copy p + p,
.split-copy p + p {
  margin-top: 14px;
}

.signature {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.signature i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
}

.visual-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 140px 18px 18px 18px;
  background-color: #ddd4c6;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: auto 200%;
  box-shadow: var(--shadow);
}

.visual-panel--about { background-position: 50% 0; }
.visual-panel--studio { background-position: 50% 100%; }
.visual-panel--service { background-position: 100% 0; }

.visual-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(18, 17, 15, 0.16);
  color: var(--ink);
  font-weight: 800;
}

.visual-badge i {
  margin-right: 8px;
  color: var(--gold);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(20, 18, 15, 0.045);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card__media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #d7cdc0;
  background-image: var(--services-image);
  background-repeat: no-repeat;
  background-size: 400% 300%;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__media {
  transform: scale(1.025);
}

.service-1 { background-position: 0% 0%; }
.service-2 { background-position: 33.333% 0%; }
.service-3 { background-position: 66.666% 0%; }
.service-4 { background-position: 100% 0%; }
.service-5 { background-position: 0% 50%; }
.service-6 { background-position: 33.333% 50%; }
.service-7 { background-position: 66.666% 50%; }
.service-8 { background-position: 100% 50%; }
.service-9 { background-position: 0% 100%; }
.service-10 { background-position: 33.333% 100%; }
.service-11 { background-position: 66.666% 100%; }
.service-12 { background-position: 100% 100%; }

.service-card__body {
  padding: 25px;
}

.service-card__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.service-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 45px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
}

.service-number {
  color: #c7c0b6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.62rem;
}

.service-card p {
  min-height: 82px;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link i {
  color: var(--gold);
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.features-grid,
.process-grid,
.values-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature,
.process-step,
.value-card,
.testimonial {
  padding: 30px;
  border-radius: var(--radius);
}

.feature,
.process-step,
.value-card {
  border: 1px solid var(--line);
  background: #fff;
}

.feature i,
.process-step__number,
.value-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-size: 1.1rem;
}

.feature h3,
.process-step h3,
.value-card h3 {
  margin-bottom: 9px;
  font-size: 1.5rem;
}

.feature p,
.process-step p,
.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 55px;
  right: -20px;
  width: 40px;
  border-top: 1px dashed var(--sand);
  content: "";
}

.process-step__number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.home-service {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.home-service::after {
  position: absolute;
  right: -100px;
  top: -110px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.home-service__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.home-service h2,
.cta-band h2 {
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.home-service p {
  color: rgba(255, 255, 255, 0.7);
}

.home-service__points {
  display: grid;
  gap: 14px;
}

.home-service__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-weight: 700;
}

.home-service__points i {
  color: #e4c792;
}

.testimonial {
  background: var(--cream);
}

.testimonial__stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 3px;
}

.testimonial blockquote {
  color: #3d3b38;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.testimonial footer {
  margin-top: 19px;
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-band {
  padding-block: 64px;
  background: var(--gold);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band__copy {
  max-width: 700px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.about-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
}

.about-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-list i,
.check-list i {
  margin-top: 5px;
  color: var(--gold);
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.service-note {
  margin-top: 40px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: var(--cream);
}

.service-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.service-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-filters {
  margin-bottom: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background-color: #ded6c9;
  background-image: var(--gallery-image);
  background-repeat: no-repeat;
  background-size: 300% 300%;
  cursor: zoom-in;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.gallery-item:nth-child(1), .gallery-1 { background-position: 0% 0%; }
.gallery-item:nth-child(2), .gallery-2 { background-position: 50% 0%; }
.gallery-item:nth-child(3), .gallery-3 { background-position: 100% 0%; }
.gallery-item:nth-child(4), .gallery-4 { background-position: 0% 50%; }
.gallery-item:nth-child(5), .gallery-5 { background-position: 50% 50%; }
.gallery-item:nth-child(6), .gallery-6 { background-position: 100% 50%; }
.gallery-item:nth-child(7), .gallery-7 { background-position: 0% 100%; }
.gallery-item:nth-child(8), .gallery-8 { background-position: 50% 100%; }
.gallery-item:nth-child(9), .gallery-9 { background-position: 100% 100%; }

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, 0.78));
  content: "";
}

.gallery-item__label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #fff;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.87rem;
  font-weight: 800;
}

.gallery-item.hide {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 26px;
  display: none;
  place-items: center;
  background: rgba(8, 8, 8, 0.94);
}

.lightbox.open {
  display: grid;
}

.lightbox__visual {
  width: min(78vh, 94vw);
  aspect-ratio: 1;
  border-radius: 12px;
  background-image: var(--gallery-image);
  background-repeat: no-repeat;
  background-size: 300% 300%;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 15px;
}

.contact-card {
  padding: 21px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.contact-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-card > div,
.form-field {
  min-width: 0;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-form {
  padding: clamp(25px, 5vw, 44px);
  border-radius: 20px;
  background: var(--cream);
}

.contact-form h2 {
  margin-bottom: 9px;
  font-size: 2.4rem;
}

.contact-form > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  font-size: 0.76rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ddd5c9;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(167, 122, 62, 0.12);
}

.map-wrap {
  height: 430px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  padding-block: 70px 50px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.9fr 1.1fr;
  gap: 42px;
}

.footer-brand {
  position: relative;
  width: 130px;
  height: 72px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
}

.footer-brand .brand-logo {
  width: 126px;
  height: 68px;
}

.footer-about p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 0.87rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: #e3c58f;
}

.footer-links i {
  width: 16px;
  margin-top: 5px;
  color: #c99a55;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 1.65rem;
  animation: whatsapp-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(37, 211, 102, 0.36); }
  50% { box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 92px;
  z-index: 1400;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .topbar__item {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: -20px;
    left: -20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 38px rgba(20, 18, 15, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.23s ease, transform 0.23s ease, visibility 0.23s ease;
  }

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

  .main-nav__link {
    width: 100%;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }

  .main-nav__link::after {
    display: none;
  }

  .main-nav__link.active {
    color: var(--gold);
  }

  .main-nav .nav-cta {
    width: 100%;
    margin-top: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .services-grid,
  .features-grid,
  .values-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 470px;
    order: -1;
  }

  .home-service__grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    min-height: 31px;
  }

  .topbar__links {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .topbar__links a {
    font-size: 0.7rem;
  }

  .topbar__links a:last-child {
    display: none;
  }

  .nav-shell {
    height: 66px;
  }

  .brand {
    width: 124px;
    height: 62px;
    flex-basis: 124px;
  }

  .brand-logo {
    width: 124px;
    height: 62px;
  }

  .main-nav {
    right: -14px;
    left: -14px;
    padding-inline: 14px;
  }

  .hero,
  .hero--home,
  .hero--inner {
    min-height: 570px;
    background-size: auto 200%;
  }

  .hero--home { --hero-position: 0% 0%; }
  .hero--about { --hero-position: 50% 0%; }
  .hero--services { --hero-position: 100% 0%; }
  .hero--gallery { --hero-position: 0% 100%; }
  .hero--contact { --hero-position: 100% 100%; }

  .hero::before {
    background: linear-gradient(90deg, rgba(9, 9, 9, 0.89), rgba(9, 9, 9, 0.58));
  }

  .hero__content {
    padding-block: 65px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding-block: 72px;
  }

  .services-grid,
  .features-grid,
  .process-grid,
  .values-grid,
  .testimonials-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .home-service {
    padding: 36px 25px;
  }

  .cta-band__inner,
  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .map-wrap {
    height: 360px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 20px;
    bottom: 80px;
  }
}

@media (max-width: 380px) {
  .topbar__links a:first-child,
  .topbar__links a:last-child {
    display: none;
  }

  .topbar__links a:nth-child(2) {
    display: flex;
  }

  .brand {
    width: 116px;
    flex-basis: 116px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero__trust {
    display: grid;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
