/* =========================================
   ROOT
========================================= */

:root {
  --black: #11100f;
  --dark: #181716;
  --cream: #f4f0e8;
  --ivory: #faf8f3;
  --gold: #b99a62;
  --gold-light: #d4bc8c;
  --text: #272522;
  --muted: #77736c;
  --border: rgba(39, 37, 34, 0.14);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1240px;
  --transition: 0.4s ease;
}

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(90%, var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

/* =========================================
   HEADER
========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 24px 0;

  color: white;

  transition:
    background 0.4s ease,
    padding 0.4s ease,
    color 0.4s ease;
}

.header.scrolled {
  background: rgba(250, 248, 243, 0.96);
  color: var(--text);
  padding: 16px 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  z-index: 1001;
}

.logo span {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 3px;
}

.logo small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 4px;
  text-align: center;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 13px 20px;
  border: 1px solid currentColor;

  font-size: 11px;
  letter-spacing: 0.7px;

  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

/* Mobile menu */

.menu-btn {
  display: none;

  border: 0;
  background: transparent;
  color: inherit;

  font-size: 26px;
  cursor: pointer;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  color: white;

  background-image: url("https://img.magnific.com/premium-photo/beautiful-girl-posing-confidently-landscape-waving-dupatta-wearing-desi-dress-garden_658768-471.jpg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(10, 9, 8, 0.82),
    rgba(10, 9, 8, 0.35),
    rgba(10, 9, 8, 0.1)
  );
}

.hero-content {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 720px;
  padding-top: 70px;
}

.eyebrow {
  display: block;

  margin-bottom: 25px;

  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-light);
}

.hero h1 {
  font-family: var(--serif);

  font-size: clamp(55px, 7vw, 100px);

  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero h1 span {
  display: block;
  color: #ddd2bc;
  font-style: italic;
}

.hero p {
  max-width: 550px;

  margin: 30px 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 15px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 25px;

  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: white;
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 35px;
  right: 0;

  display: flex;
  align-items: center;
  gap: 15px;

  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transform: rotate(-90deg);
  transform-origin: right;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.section-label {
  display: block;

  margin-bottom: 20px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 3px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 60px;
}

.section-heading h2,
.intro h2,
.about h2,
.services h2,
.appointment h2 {
  font-family: var(--serif);

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 400;
  line-height: 1.05;
}

.section-heading h2 em,
.intro h2 em,
.about h2 em,
.services h2 em,
.appointment h2 em {
  color: var(--gold);
}

.section-heading > p {
  max-width: 380px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}

.centered {
  display: block;
  text-align: center;
}

.centered > p {
  margin: 20px auto 0;
}

/* =========================================
   INTRO
========================================= */

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 120px 1fr;

  gap: 80px;
}

.intro-number {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.intro-number span {
  font-family: var(--serif);
  font-size: 20px;
}

.intro-number div {
  width: 60px;
  height: 1px;

  margin-top: 14px;

  background: var(--gold);
}

.intro-content {
  max-width: 820px;
}

.intro-content p {
  max-width: 680px;

  margin-top: 25px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;

  border-bottom: 1px solid var(--gold);

  padding-bottom: 7px;

  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: var(--transition);
}

.text-link:hover {
  color: var(--gold);
}

/* =========================================
   COLLECTIONS
========================================= */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.collection-card {
  cursor: pointer;
}

.collection-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 0.74;
}

.collection-image img {
  height: 100%;
  object-fit: cover;

  transition: transform 0.8s ease;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-number {
  position: absolute;
  top: 20px;
  left: 20px;

  color: white;

  font-family: var(--serif);
  font-size: 18px;
}

.image-arrow {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  background: white;
  color: var(--black);

  font-size: 18px;

  opacity: 0;
  transform: translateY(10px);

  transition: var(--transition);
}

.collection-card:hover .image-arrow {
  opacity: 1;
  transform: translateY(0);
}

.collection-info {
  padding-top: 20px;
}

.collection-info span {
  color: var(--gold);

  font-size: 9px;
  letter-spacing: 2px;
}

.collection-info h3 {
  margin: 8px 0;

  font-family: var(--serif);

  font-size: 27px;
  font-weight: 400;
}

.collection-info p {
  color: var(--muted);
  font-size: 12px;
}

/* =========================================
   ABOUT
========================================= */

.about {
  background: var(--black);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 110px;

  align-items: center;
}

.about-images {
  position: relative;

  min-height: 650px;
}

.about-image-large {
  width: 75%;
  height: 600px;
}

.about-image-large img {
  height: 100%;
  object-fit: cover;
}

.about-image-small {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 48%;
  height: 330px;

  border: 8px solid var(--black);
}

.about-image-small img {
  height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;

  left: -35px;
  bottom: 45px;

  width: 90px;
  height: 90px;

  display: grid;
  place-items: center;

  border: 1px solid var(--gold);

  color: var(--gold);

  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
}

.about-content .section-label {
  color: var(--gold-light);
}

.about-content h2 {
  max-width: 600px;
}

.about-lead {
  margin: 30px 0 20px;

  color: #eee;

  font-size: 17px;
  line-height: 1.8;
}

.about-content > p:not(.about-lead) {
  margin-bottom: 15px;

  max-width: 570px;

  color: #99948c;

  font-size: 14px;
  line-height: 1.8;
}

.designer-signature {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
}

.designer-signature span {
  font-family: var(--serif);

  color: var(--gold-light);

  font-size: 32px;
  font-style: italic;
}

.designer-signature small {
  margin-top: 5px;

  color: #777;

  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================
   SERVICES
========================================= */

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card {
  position: relative;

  min-height: 390px;

  padding: 40px 30px;

  border-right: 1px solid var(--border);

  transition: var(--transition);
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  background: var(--ivory);
  transform: translateY(-5px);
}

.service-number {
  position: absolute;

  top: 25px;
  right: 25px;

  color: var(--gold);

  font-family: var(--serif);
}

.service-card > i {
  display: block;

  margin-top: 50px;
  margin-bottom: 25px;

  color: var(--gold);

  font-size: 32px;
}

.service-card h3 {
  margin-bottom: 15px;

  font-family: var(--serif);

  font-size: 26px;
  font-weight: 400;
}

.service-card p {
  color: var(--muted);

  font-size: 13px;
  line-height: 1.8;
}

.service-card a {
  position: absolute;

  left: 30px;
  bottom: 35px;

  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--black);

  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================
   LOOKBOOK
========================================= */

.lookbook-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  grid-auto-rows: 330px;

  gap: 20px;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
}

.lookbook-item.tall {
  grid-row: span 2;
}

.lookbook-item.wide {
  grid-column: span 2;
}

.lookbook-item img {
  height: 100%;
  object-fit: cover;

  transition: transform 0.8s ease;
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-item span {
  position: absolute;

  left: 20px;
  bottom: 20px;

  color: white;

  font-family: var(--serif);

  font-size: 18px;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {
  background: var(--cream);
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 40px;
}

.testimonial-slider {
  position: relative;

  width: min(700px, 100%);
  min-height: 310px;
}

.testimonial {
  display: none;

  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-icon {
  color: var(--gold);

  font-size: 45px;
}

.testimonial p {
  margin: 20px 0 30px;

  font-family: var(--serif);

  font-size: clamp(25px, 3vw, 36px);

  line-height: 1.4;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.client strong {
  font-family: var(--serif);
  font-size: 17px;
}

.client span {
  color: var(--muted);

  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.slider-btn {
  flex-shrink: 0;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);

  background: transparent;

  cursor: pointer;

  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--black);
  color: white;
}

.slider-dots {
  display: flex;
  justify-content: center;

  gap: 8px;

  margin-top: 15px;
}

.slider-dot {
  width: 5px;
  height: 5px;

  border: 0;

  background: #bbb;

  cursor: pointer;
}

.slider-dot.active {
  background: var(--gold);

  width: 25px;
}

/* =========================================
   APPOINTMENT
========================================= */

.appointment {
  position: relative;

  min-height: 620px;

  display: grid;
  place-items: center;

  color: white;

  text-align: center;

  background: var(--black);
}

.appointment-bg {
  position: absolute;
  inset: 0;

  opacity: 0.3;

  background-image: url("https://images.unsplash.com/photo-1550614000-4b9519e0927e?auto=format&fit=crop&w=2000&q=85");

  background-size: cover;
  background-position: center;
}

.appointment-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
}

.appointment-content h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.appointment-content p {
  max-width: 600px;

  margin: 25px auto 35px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.8;
}

.btn-light {
  background: white;
  color: var(--black);
}

.btn-light:hover {
  background: var(--gold-light);
}

/* =========================================
   FOOTER
========================================= */

.footer {
  padding: 80px 0 25px;

  background: var(--black);

  color: white;
}

.footer-main {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.3fr;

  gap: 60px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 300px;

  color: #777;

  font-size: 13px;
  line-height: 1.8;
}

.socials {
  display: flex;
  gap: 10px;

  margin-top: 25px;
}

.socials a {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #aaa;

  transition: var(--transition);
}

.socials a:hover {
  background: white;
  color: var(--black);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column h4 {
  margin-bottom: 8px;

  color: var(--gold-light);

  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #777;

  font-size: 12px;
  line-height: 1.7;

  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-appointment {
  color: var(--gold-light) !important;

  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 25px;

  color: #555;

  font-size: 10px;
}

/* =========================================
   BACK TO TOP
========================================= */

.back-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 0;

  background: var(--gold);
  color: var(--black);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: var(--transition);

  z-index: 900;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {
  .nav {
    gap: 20px;
  }

  .nav-cta {
    display: none;
  }

  .about-grid {
    gap: 60px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 80px 0;
  }

  /* Mobile nav */

  .menu-btn {
    display: block;
    z-index: 999;
    color: #000;
  }

  .nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: min(85%, 350px);
    height: 100vh;

    padding: 100px 35px 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: var(--ivory);
    color: var(--black);

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);

    transition: right 0.4s ease;
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-cta {
    display: inline-block;

    margin-top: 15px;
  }

  /* Hero */

  .hero {
    background-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(10, 9, 8, 0.85),
      rgba(10, 9, 8, 0.5)
    );
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  /* Intro */

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro-number {
    display: none;
  }

  /* Heading */

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  /* Collections */

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-image {
    aspect-ratio: 0.8;
  }

  /* About */

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 500px;
  }

  .about-image-large {
    width: 78%;
    height: 470px;
  }

  .about-image-small {
    height: 270px;
  }

  .about-stamp {
    left: -10px;
  }

  /* Services */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  /* Lookbook */

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .lookbook-item.tall {
    grid-row: span 1;
  }

  .lookbook-item.wide {
    grid-column: span 1;
  }

  /* Testimonials */

  .testimonial-wrapper {
    gap: 10px;
  }

  .testimonial p {
    font-size: 25px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  /* Footer */

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-column:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 450px) {
  .container {
    width: 88%;
  }

  .logo span {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-heading h2,
  .intro h2,
  .about h2,
  .services h2 {
    font-size: 43px;
  }

  .about-images {
    min-height: 400px;
  }

  .about-image-large {
    height: 390px;
  }

  .about-image-small {
    height: 220px;
  }

  .about-stamp {
    width: 70px;
    height: 70px;
    font-size: 8px;
  }

  .testimonial-wrapper {
    gap: 5px;
  }

  .testimonial p {
    font-size: 22px;
  }
}
