:root {
  --cream: #faf8f3;
  --white: #ffffff;
  --black: #111111;
  --soft-black: #1d1d1d;
  --gray: #7a7a7a;
  --light-gray: #ededed;
  --gold: #c6a56c;
  --gold-soft: #e6d5b1;
  --border: rgba(198, 165, 108, 0.22);
  --radius: 34px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.container {
  width: min(92%, 1380px);
  margin: 0 auto;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.site-header.scrolled {
  top: 0;
}

@media (max-width: 768px) {
  :root {
    --announcement-height: 38px;
  }
}
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  overflow: hidden;
}

.brand-logo img {
  height: 100%;
}

.brand-text {
  line-height: 1;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  color: #333;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-light {
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: var(--black);
}

.btn-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Nav CTA — animated pulse button */
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.35s ease;
  text-decoration: none;
  animation: pulse-ring 2.8s ease-out infinite;
}

/* Gold sweep */
.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  z-index: 0;
}

.nav-btn:hover::before {
  transform: translateX(100%);
}

/* Gold border glow */
.nav-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-btn:hover::after {
  opacity: 1;
}

.nav-btn:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 165, 108, 0.35);
  animation: none;
}

.nav-btn span,
.nav-btn svg {
  position: relative;
  z-index: 1;
}

.nav-btn .arrow {
  display: inline-block;
  font-style: normal;
  transition: transform 0.3s ease;
}

.nav-btn:hover .arrow {
  transform: translateX(4px);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 165, 108, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(198, 165, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 165, 108, 0);
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 248, 243, 0.88) 0%,
    rgba(250, 248, 243, 0.55) 55%,
    rgba(250, 248, 243, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
  max-width: 620px;
}

.hero-bottom {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
}

.slide-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #111;
  font-style: italic;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.86;
  letter-spacing: -4px;
  margin: 22px 0 28px;
  color: #fff;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-text {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* ============================================================
   SERVICES (STICKY)
   ============================================================ */
.services-sticky {
  padding: 110px 0;
  background: var(--white);
}

.sticky-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}

.sticky-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -2px;
  max-width: 720px;
}

.sticky-head p {
  max-width: 420px;
  color: var(--gray);
  line-height: 1.8;
}

.sticky-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.sticky-image-wrap {
  position: sticky;
  top: 120px;
  height: calc(100vh - 160px);
  min-height: 520px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--light-gray);
}

.sticky-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.7s ease,
    transform 1.2s ease;
}

.sticky-image.active {
  opacity: 1;
  transform: scale(1);
}

.sticky-image img {
  height: 100%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-item {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
  padding: 54px 0;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}

.service-number {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.service-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.service-item p {
  max-width: 580px;
  color: #555;
  font-size: 17px;
  line-height: 1.85;
}

.service-item:hover h3 {
  color: var(--gold);
  transform: translateX(12px);
}

/* ============================================================
   EDITORIAL
   ============================================================ */
.editorial {
  padding: 120px 0;
  background: var(--cream);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.editorial-image {
  height: 680px;
  border-radius: 46px;
  overflow: hidden;
}

.editorial-image img {
  height: 100%;
  transition: 0.7s ease;
}
.editorial-image:hover img {
  transform: scale(1.05);
}

.editorial-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 20px 0 26px;
}

.editorial-content p {
  color: #555;
  line-height: 1.9;
  font-size: 17px;
  max-width: 540px;
}

.features {
  margin-top: 44px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.feature {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  transition: 0.3s ease;
}

.feature:hover {
  color: var(--gold);
  padding-left: 14px;
}

/* ============================================================
   GALLERY (marquee)
   ============================================================ */
.gallery {
  background: var(--soft-black);
  color: var(--white);
  padding: 110px 0;
  overflow: hidden;
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 54px;
}

.gallery h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

.gallery p {
  color: #bdbdbd;
  max-width: 430px;
  line-height: 1.8;
}

.gallery-track {
  display: flex;
  gap: 24px;
  animation: slide 26s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-card {
  width: 370px;
  height: 500px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  background: #222;
}

.gallery-card img {
  height: 100%;
  transition: 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card::after {
  content: attr(data-title);
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(16px);
  transition: 0.35s ease;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0 70px;
  background: var(--cream);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(17, 17, 17, 0.08);
}

.contact-content {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  margin: 20px 0 28px;
}

.contact-info {
  display: grid;
  gap: 22px;
  margin: 36px 0;
}

.contact-info div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding-bottom: 18px;
}

.contact-info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-image {
  min-height: 620px;
}
.contact-image img {
  height: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0e0c0a;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
}

.footer-brand p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  padding: 8px 16px;
  border: 1px solid rgba(198, 165, 108, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: #0e0c0a;
  border-color: var(--gold);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: 0.3s ease;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .sticky-layout,
  .editorial-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 620px;
  }

  .sticky-image-wrap {
    position: relative;
    top: auto;
    height: 600px;
  }

  .sticky-head {
    flex-direction: column;
    align-items: start;
  }

  .service-item {
    min-height: auto;
  }

  .contact-content {
    padding: 46px;
  }
}

@media (max-width: 650px) {
  .hero {
    padding-top: 125px;
  }

  .brand-title {
    font-size: 24px;
  }

  .hero-title {
    letter-spacing: -2px;
  }

  .hero-slider,
  .sticky-image-wrap,
  .editorial-image,
  .contact-image {
    min-height: auto;
    height: 430px;
    border-radius: 30px;
  }

  .service-item {
    padding: 46px 0;
  }

  .gallery-card {
    width: 280px;
    height: 390px;
  }

  .contact-content {
    padding: 34px 24px;
  }
}

.signature-services {
  padding: 120px 0;
  background: #f8f7f4;
}

.services-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.services-heading h2 {
  font-size: 72px;
  line-height: 0.95;
  margin: 18px 0;
}

.services-heading p {
  color: #555;
  max-width: 560px;
  line-height: 1.9;
}

/* FEATURED */

.featured-services {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.featured-card {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  min-height: 560px;
  cursor: pointer;
}

.big-card {
  min-height: 620px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.featured-content {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 2;
  color: #fff;
}

.featured-content h3 {
  font-size: 58px;
  margin: 18px 0 12px;
}

.featured-content p {
  max-width: 420px;
  line-height: 1.7;
}

.badge {
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 10px 18px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
}

.badge.dark {
  background: #111;
  color: #fff;
}

/* ALL SERVICES */

.all-services-box {
  background: #fff;
  border-radius: 42px;
  padding: 50px;
}

.all-services-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.all-services-header h3 {
  font-size: 36px;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-list-grid div {
  padding: 22px;
  border: 1px solid #ececec;
  border-radius: 22px;
  transition: 0.3s ease;
  background: #fafafa;
}

.services-list-grid div:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: #d7d7d7;
}

.services-cta {
  margin-top: 40px;
  display: inline-flex;
  background: #111;
  color: #fff;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .services-heading h2 {
    font-size: 48px;
  }

  .featured-services {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .big-card {
    min-height: 420px;
  }

  .featured-content h3 {
    font-size: 42px;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .all-services-box {
    padding: 28px;
  }

  .all-services-header {
    flex-direction: column;
    gap: 8px;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.06);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    right: 16px;
    bottom: 16px;
  }
}

.announcement-bar {
  background: #111;
  color: #f6f3ee;
  height: 42px;
  overflow: hidden;
  position: relative;
  z-index: 9999;
}

.announcement-slider {
  position: relative;
  height: 100%;
}

.announcement-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease;
  text-align: center;
}

.announcement-item.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .announcement-bar {
    height: 38px;
  }

  .announcement-item {
    font-size: 12px;
    padding: 0 12px;
  }
}

.contact-image iframe {
  border-radius: 0 48px 48px 0;
  overflow: hidden;
}
