/* outfit-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/outfit-v15-latin-300.woff2") format("woff2");
}

/* outfit-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/outfit-v15-latin-regular.woff2") format("woff2");
}

/* outfit-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/outfit-v15-latin-500.woff2") format("woff2");
}

/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/cormorant-garamond-v21-latin-300.woff2") format("woff2");
}

/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/cormorant-garamond-v21-latin-regular.woff2") format("woff2");
}

/* cormorant-garamond-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/cormorant-garamond-v21-latin-italic.woff2") format("woff2");
}

/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/cormorant-garamond-v21-latin-600.woff2") format("woff2");
}

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --gold: #c9a84c;
  --gold-light: #d4b95f;
  --gold-pale: #e8d59a;
  --gold-dark: #a8893d;
  --white: #f5f0e8;
  --white-pure: #ffffff;
  --grey: #a39e98;
  --grey-light: #c7c4c1;
  --grey-dark: #2a2825;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --transparent: rgba(0, 0, 0, 0.63);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black);
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
p,
blockquote {
  letter-spacing: 0.06rem;
}
::selection {
  background: var(--gold);
  color: var(--black);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.2rem;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: var(--grey-dark);
  border-radius: 1px;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  animation: preload 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes preload {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(350%);
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem clamp(2rem, 4vw, 4.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 1.2rem clamp(2rem, 4vw, 4.8rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.36rem;
  text-decoration: none;
}
.nav-logo img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.nav.scrolled .nav-logo img {
  width: 8rem;
  height: 8rem;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.8vw, 3.72rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text span {
  color: var(--gold);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: clamp(1.6rem, 2vw, 4rem);
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey-light);
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  font-weight: 400;
  letter-spacing: clamp(0.06em, 0.1vw, 0.12em);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: clamp(0.7rem, 0.8vw, 0.96rem) clamp(1.4rem, 2vw, 2.56rem) !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  cursor: pointer;
  transition: all 0.4s ease;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 10s ease;
}
.hero-slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 35%,
    rgba(10, 10, 10, 0.15) 55%,
    rgba(10, 10, 10, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 8rem 8rem;
  max-width: 850px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.152rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.5s forwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.16rem, 5.5vw, 6.72rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.7s forwards;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3.6rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.9s forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 1);
}
.hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.btn-primary {
  padding: 1.44rem 3.6rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.248rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-secondary {
  padding: 1.44rem 3.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.248rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--grey-dark);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-controls {
  position: absolute;
  bottom: 8rem;
  right: 8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.hero-dots {
  display: flex;
  gap: 0.8rem;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: var(--grey-dark);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 48px;
}
.hero-counter {
  font-family: var(--font-display);
  font-size: 1.44rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.hero-counter .current {
  color: var(--gold);
  font-weight: 600;
}

/* FEATURES BAR */
.features-bar {
  display: flex;
  justify-content: center;
  gap: 6.4rem;
  padding: 3.2rem 4.8rem;
  background: var(--black-light);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.feature-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.feature-item span {
  font-size: 1.248rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
}
/* SECTIONS */
.section {
  padding: 11.2rem 8rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 3.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.gold-accent {
  color: var(--gold);
}
.section-desc {
  font-size: 1.52rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 90vw;
  line-height: 1.7;
}

/* ABOUT */
.about {
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-top: 4.8rem;
}
.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
  transition: all 0.6s ease;
}
.about-image-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.about-image-frame {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.3;
}
.about-text p {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--grey-dark);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.64rem;
}
.stat-label {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* QUALITY PRODUCTS */
.quality-section {
  background: var(--black);
  position: relative;
  padding: 8rem;
}
.quality-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}
.quality-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quality-card p {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* PORTFOLIO */
.portfolio {
  background: var(--black);
  overflow: hidden;
}
.portfolio-header {
  margin-bottom: 4.8rem;
}
/* PROCESS */
.process {
  background: var(--black-light);
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 5.6rem;
}
.process-step {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 3.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover::before {
  transform: scaleX(1);
}
.process-step:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.step-number {
  font-family: var(--font-display);
  font-size: 6.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 2.4rem;
  transition: opacity 0.4s ease;
}
.process-step:hover .step-number {
  opacity: 0.45;
}
.step-title {
  font-family: var(--font-display);
  font-size: 2.08rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.36rem;
  line-height: 1.3;
}
.step-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.4;
  transition:
    width 0.4s ease,
    opacity 0.4s ease;
}
.process-step:hover .step-divider {
  width: 80px;
  opacity: 0.8;
}
.step-desc {
  font-size: 1.312rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}
/* TESTIMONIALS */
.testimonials-section {
  background: var(--black);
  padding: 11.2rem 8rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  margin-top: 4.8rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 4rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6.4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1.6rem;
  left: 2.4rem;
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.84rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  padding-top: 1.6rem;
}
.testimonial-card .t-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.6rem;
}
.testimonial-card .t-author {
  font-size: 1.312rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.testimonial-card .t-location {
  font-size: 1.248rem;
  font-weight: 300;
  color: var(--grey);
  margin-top: 0.32rem;
}

/* FAQ */
.faq-section {
  background: var(--black-light);
  padding: 11.2rem 8rem;
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}
.faq-list {
  max-width: 800px;
  margin: 4.8rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--grey-dark);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 1.84rem;
  font-weight: 400;
  color: var(--white);
}
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1.6rem;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
}
.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 2.4rem;
}
.faq-answer p {
  font-size: 1.44rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
}

/* CONTACT */
.contact-section {
  background: var(--black);
  padding: 11.2rem 8rem;
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-top: 4.8rem;
}
.contact-info-text {
  font-size: 1.52rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 3.2rem;
}
.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--grey-dark);
  transition: border-color 0.3s ease;
  text-decoration: none;
}
.contact-detail-row:hover {
  border-color: var(--gold);
}
.contact-detail-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-detail-row .detail-label {
  font-size: 1.088rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact-detail-row .detail-value {
  font-size: 1.52rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 0.24rem;
}

/* Contact form */
.contact-form label {
  display: block;
  font-size: 1.088rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.8rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.44rem;
  font-weight: 300;
  padding: 1.36rem 1.6rem;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 2rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey-dark);
}
.contact-form textarea {
  height: 140px;
  resize: vertical;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8580' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
}
.contact-form select option {
  background: var(--black-card);
  color: var(--white);
}
.form-submit {
  padding: 1.44rem 4rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.248rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* CTA */
.cta-section {
  position: relative;
  padding: 11.2rem 8rem;
  background: var(--black-light);
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4vw, 5.12rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 3.2rem;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 6.4rem 8rem 3.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4.8rem;
  margin-bottom: 4.8rem;
}
.footer-brand img {
  width: 100px;
  /* height: 56px; */
  border-radius: 50%;
  margin-bottom: 1.6rem;
}
.footer-brand p {
  font-size: 1.36rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 500px;
  line-height: 1.7;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.76rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.96rem;
}
.footer a {
  text-decoration: none;
  color: var(--grey);
  font-size: clamp(1.4rem, 1.4vw, 1.2rem);
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  font-size: 1.312rem;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 0.64rem;
}
.footer-contact-item strong {
  color: var(--grey-light);
  font-weight: 400;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.2rem;
  border-top: 1px solid var(--grey-dark);
}
.footer-bottom p {
  font-size: 1.152rem;
  font-weight: 300;
  color: var(--grey);
}
.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  /* border: 1px solid var(--grey-dark); */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--grey);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transform: scale(1);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}
.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* STICKY CONTACT BUTTON */
.sticky-cta {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 900;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    background 0.3s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 0;
  transform: translateY(1.6rem);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  background: #d4b355;
  transform: scale(1.08);
}
.sticky-cta svg {
  width: 2.4rem;
  height: 2.4rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section,
  .quality-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 8rem 4.8rem;
  }
  .hero-content {
    padding: 0 4.8rem 6.4rem;
  }
  .hero-controls {
    right: 4.8rem;
    bottom: 6.4rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-bar {
    gap: 3.2rem;
    flex-wrap: wrap;
  }
  .showcase {
    aspect-ratio: 16/9;
  }
  .thumb-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .showcase-overlay {
    padding: 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
@media (max-width: 768px) {
  .section,
  .quality-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 6.4rem 2.4rem;
  }
  .contact-section .section-title {
    text-align: center;
  }
  .contact-section .section-tag {
    display: flex;
    justify-content: center;
  }
  .contact-items {
    text-align: left;
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    flex-wrap: wrap;
    width: 90vw;
    margin: 0 auto;
  }
  .nav {
    padding: 1.6rem 2.4rem;
  }
  .nav.scrolled {
    padding: 1.2rem 2.4rem;
  }
  .nav-logo img {
    width: 4rem;
    height: 4rem;
  }
  .hero-content {
    padding: 0 2.4rem 4.8rem;
  }
  .sticky-cta {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .hero-controls {
    right: 2.4rem;
    bottom: 4.8rem;
  }
  .hero {
    height: 75vh;
    min-height: 500px;
  }
  .hero-slide img {
    object-position: center 30%;
    transform: scale(1.03);
  }
  .hero-slide.active img {
    transform: scale(1);
  }
  #slide-1 img {
    object-position: left 30%;
  }
  .hero-slide--portrait img {
    object-position: center 45%;
    transform: scale(1.03);
  }
  .hero-slide--portrait.active img {
    transform: scale(1.03);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-subtitle {
    color: #fff;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    text-align: center;
  }
  .footer-brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .footer-brand img {
    margin-bottom: 0;
    width: 20vw;
    height: auto;
  }
  .footer-brand p {
    max-width: 36rem;
  }
  .footer-links {
    align-items: center;
  }
  .footer-grid > div:last-child {
    grid-column: span 2;
  }
  .footer-contact-inline {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
  }
  .cta-section {
    padding: 8rem 2.4rem;
  }
  .footer {
    padding: 4.8rem 2.4rem 3.2rem;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
  .features-bar {
    gap: 2.4rem;
    padding: 2.4rem;
  }
  .showcase {
    aspect-ratio: 4/3;
  }
  .thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-overlay {
    padding: 2.4rem;
  }
  .showcase-title {
    font-size: 2.08rem;
  }
  .showcase-desc {
    font-size: 1.28rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.portfolio {
  max-width: 93.5vw;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ── Header ── */
.portfolio-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.section-tag {
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

/* ── Card Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* ── Card ── */
.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* border-radius: 1.2rem; */
  background-color: #161616;
  max-width: 55rem;
  justify-self: center;
  border: 1px solid var(--grey-dark);
}

/* ── Card Image ── */
.portfolio-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.1rem;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right center;
  transition: transform 0.4s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-location {
  background-color: var(--transparent);
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
}

/* ── Card Body ── */
.portfolio-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 2.08rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.36rem;
  line-height: 1.3;
}

.portfolio-card-desc {
  font-size: 1.312rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}

.portfolio-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.portfolio-card-tag {
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    height: 65vh;
    min-height: 420px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Portrait pan — starts showing bottom, slowly pans up */
/* Portrait pan — gentle upward drift */
.hero-slide--portrait img {
  object-position: center 55%;
  transform: scale(1.05);
  transition:
    transform 15s ease,
    object-position 15s ease;
}

.hero-slide--portrait.active img {
  object-position: center 35%;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links.mobile-open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.mobile-open li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.mobile-open li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-links.mobile-open li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-links.mobile-open li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-links.mobile-open li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav-links.mobile-open li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-cta {
    margin-top: 1.6rem;
  }

  /* Hamburger to X animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* ═══════════════════════════════════════════
   SAMSUNG BROWSER WARNING
   ═══════════════════════════════════════════ */

.samsung-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 3px solid #d4a843;
  color: #f0f0f0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 20px;
  z-index: 99999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.samsung-warning strong {
  color: #d4a843;
}

.samsung-warning p {
  margin: 0 0 10px 0;
}

.samsung-warning .samsung-warning-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.samsung-warning .samsung-warning-steps {
  color: #cccccc;
  font-size: 13px;
}

.samsung-warning-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #888;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.samsung-warning-close:hover {
  color: #fff;
}
