/* =========================================================
   MEENA PHOTOGRAPHY
   SERVICES PAGE
   LUXURY EDITORIAL UI
========================================================= */

:root {
  --svc-bg: #fbf7f0;
  --svc-white: #fffdf9;
  --svc-cream: #f4e8da;
  --svc-dark: #24211e;
  --svc-text: #665f57;
  --svc-gold: #c99650;
  --svc-gold-light: #dfc198;
  --svc-border: rgba(201, 150, 80, .20);
}


/* =========================================================
   PAGE
========================================================= */

.services-page {
  overflow: hidden;
  background: var(--svc-bg);
  color: var(--svc-dark);
}


.services-container {
  width: min(1380px, calc(100% - 70px));
  margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
  position: relative;

  min-height: 630px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  text-align: center;

  background:
    radial-gradient(circle at 7% 45%,
      rgba(201, 150, 80, .13),
      transparent 25%),
    radial-gradient(circle at 93% 55%,
      rgba(201, 150, 80, .10),
      transparent 27%),
    linear-gradient(135deg,
      #fffdf9,
      #f7ecdf);
}


.services-hero::before {
  content: "";

  position: absolute;
  inset: 20px;

  border: 1px solid var(--svc-border);

  pointer-events: none;
}


.services-hero::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -180px;

  width: 850px;
  height: 330px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(201, 150, 80, .07);
}


.services-hero-inner {
  position: relative;
  z-index: 2;

  width: min(900px, calc(100% - 35px));

  padding-top: 150px;
}


.services-eyebrow {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  color: var(--svc-gold);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .27em;
}


.services-eyebrow span {
  width: 45px;
  height: 1px;

  background: var(--svc-gold-light);
}


.services-hero h1 {
  margin: 20px 0 0;

  font-family:
    var(--fh,
      "Bodoni Moda",
      Georgia,
      serif);

  font-size:
    clamp(65px, 9vw, 125px);

  font-weight: 400;

  line-height: .88;

  letter-spacing: -.06em;
}


.services-hero h1 em {
  display: block;

  color: var(--svc-gold);

  font-style: normal;
}


.services-script {
  margin: 23px 0 20px;

  color: #98734d;

  font-family:
    var(--mct-script,
      cursive);

  font-size:
    clamp(28px, 4vw, 45px);

  line-height: 1;
}


.services-hero-copy {
  max-width: 590px;

  margin: auto;

  color: var(--svc-text);

  font-size: 14px;

  line-height: 1.85;
}


/* =========================================================
   DECORATION
========================================================= */

.services-hero-decoration {
  position: absolute;

  color: rgba(169, 112, 59, .18);

  font-size: 110px;

  pointer-events: none;
}


.services-decoration-left {
  left: -30px;
  top: 22%;

  transform: rotate(-25deg);
}


.services-decoration-right {
  right: -25px;
  bottom: 10%;

  transform: rotate(25deg);
}


/* =========================================================
   INTRO
========================================================= */

.services-intro {
  padding: 115px 0 85px;

  background: var(--svc-white);
}


.services-intro-grid {
  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  gap: 100px;

  align-items: end;
}


.services-label,
.service-row-label {
  display: block;

  color: var(--svc-gold);

  font-size: 16px;

  font-weight: 700;

  letter-spacing: .23em;
}


.services-label {
  margin-bottom: 20px;
}


.services-intro h2 {
  max-width: 700px;

  margin: 0;

  font-family:
    var(--fh,
      "Bodoni Moda",
      Georgia,
      serif);

  font-size:
    clamp(50px, 6vw, 80px);

  font-weight: 400;

  line-height: .95;

  letter-spacing: -.045em;
}


.services-intro h2 em {
  display: block;

  color: var(--svc-gold);

  font-style: italic;
}


.services-intro-text {
  max-width: 470px;
}


.services-intro-text p {
  margin: 0;

  color: var(--svc-text);

  font-size: 16px;

  line-height: 1.9;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.services-list {
  padding: 40px 0 120px;

  background: var(--svc-white);
}


/* =========================================================
   SERVICE ROW
========================================================= */

.service-row {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr) minmax(0, .9fr);

  gap: 90px;

  align-items: center;

  padding: 90px 0;

  border-top: 1px solid var(--svc-border);
}


.service-row:last-child {
  border-bottom: 1px solid var(--svc-border);
}


.service-row-reverse {
  grid-template-columns:
    minmax(0, .9fr) minmax(0, 1.1fr);
}


.service-row-reverse .service-row-image {
  order: 2;
}


.service-row-reverse .service-row-content {
  order: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.service-row-image {
  position: relative;

  height: 620px;

  overflow: hidden;

  background: var(--svc-cream);
}


.service-row-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      transparent 60%,
      rgba(0, 0, 0, .16));

  pointer-events: none;
}


.service-row-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s cubic-bezier(.2, .7, .2, 1);
}


.service-row:hover .service-row-image img {
  transform: scale(1.035);
}


/* NUMBER */

.service-row-number {
  position: absolute;

  left: 25px;
  top: 25px;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 50%;

  color: #fff;

  background: rgba(0, 0, 0, .12);

  backdrop-filter: blur(8px);

  font-family:
    var(--fh,
      Georgia,
      serif);

  font-size: 16px;
}


/* =========================================================
   CONTENT
========================================================= */

.service-row-content {
  max-width: 590px;
}


.service-row-label {
  margin-bottom: 20px;
}


.service-row-content h2 {
  margin: 0 0 27px;

  font-family:
    var(--fh,
      "Bodoni Moda",
      Georgia,
      serif);

  font-size:
    clamp(50px, 5vw, 75px);

  font-weight: 400;

  line-height: .92;

  letter-spacing: -.045em;
}


.service-row-content h2 em {
  display: block;

  color: var(--svc-gold);

  font-style: italic;
}


.service-row-content>p {
  max-width: 540px;

  margin: 0 0 28px;

  color: var(--svc-text);

  font-size: 16px;

  line-height: 1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.service-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px 25px;

  max-width: 500px;

  margin: 0 0 35px;

  padding: 0;

  list-style: none;
}


.service-features li {
  position: relative;

  padding-left: 18px;

  color: #5e574f;

  font-size: 16px;

  line-height: 1.6;
}


.service-features li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--svc-gold);
}


/* =========================================================
   BUTTON
========================================================= */

.service-button {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  color: var(--svc-dark);

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: .16em;
}


.service-button i {
  display: grid;

  width: 40px;
  height: 40px;

  place-items: center;

  border: 1px solid var(--svc-gold);

  border-radius: 50%;

  color: var(--svc-gold);

  font-size: 16px;

  font-style: normal;

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}


.service-button:hover i {
  background: var(--svc-gold);

  color: #fff;

  transform:
    translate(3px, -3px);
}


/* =========================================================
   CTA
========================================================= */

.services-cta {
  padding: 90px 0 120px;

  background: var(--svc-bg);
}


.services-cta-card {
  position: relative;

  min-height: 380px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 65px;

  background:
    linear-gradient(120deg,
      #f1e2d1,
      #faf1e7);

  border: 1px solid var(--svc-border);

  border-radius: 18px;
}


.services-cta-content {
  position: relative;

  z-index: 2;

  max-width: 760px;
}


.services-cta-content>span {
  display: block;

  margin-bottom: 15px;

  color: var(--svc-gold);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .22em;
}


.services-cta h2 {
  margin: 0;

  font-family:
    var(--fh,
      "Bodoni Moda",
      Georgia,
      serif);

  font-size:
    clamp(42px, 5vw, 68px);

  font-weight: 400;

  line-height: .98;
}


.services-cta h2 em {
  color: var(--svc-gold);

  font-style: italic;
}


.services-cta p {
  max-width: 520px;

  margin: 20px 0 25px;

  color: var(--svc-text);

  font-size: 13px;

  line-height: 1.8;
}


.services-cta-button {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding: 15px 23px;

  background: var(--svc-dark);

  color: #fff;

  text-decoration: none;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .15em;

  transition:
    background .25s ease,
    transform .25s ease;
}


.services-cta-button:hover {
  background: var(--svc-gold);

  transform: translateY(-2px);
}


.services-cta-button b {
  font-size: 17px;

  font-weight: 400;
}


.services-cta-decoration {
  position: absolute;

  right: -60px;
  bottom: -130px;

  width: 420px;
  height: 420px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: rgba(201, 150, 80, .18);

  font-size: 60px;

  border: 1px solid rgba(201, 150, 80, .16);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.service-row {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .7, .2, 1);
}


.service-row.service-visible {
  opacity: 1;

  transform: translateY(0);
}


.service-row:nth-child(2) {
  transition-delay: .05s;
}


.service-row:nth-child(3) {
  transition-delay: .10s;
}


.service-row:nth-child(4) {
  transition-delay: .15s;
}


.service-row:nth-child(5) {
  transition-delay: .20s;
}


.service-row:nth-child(6) {
  transition-delay: .25s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .services-container {
    width: min(calc(100% - 50px),
        850px);
  }


  .services-intro-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 70px 0;
  }


  .service-row-reverse .service-row-image {
    order: 1;
  }


  .service-row-reverse .service-row-content {
    order: 2;
  }


  .service-row-image {
    height: 560px;
  }


  .service-row-content {
    max-width: 700px;
  }


  .services-cta-card {
    padding: 50px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .services-container {
    width: calc(100% - 30px);
  }


  .services-hero {
    min-height: 500px;
  }


  .services-hero::before {
    inset: 10px;
  }


  .services-hero-inner {
    padding-top: 85px;
  }


  .services-eyebrow {
    gap: 8px;

    font-size: 8px;
  }


  .services-eyebrow span {
    width: 25px;
  }


  .services-hero h1 {
    font-size: 58px;
  }


  .services-script {
    font-size: 29px;
  }


  .services-hero-copy {
    padding: 0 15px;

    font-size: 13px;
  }


  .services-hero-decoration {
    font-size: 70px;
  }


  /* INTRO */

  .services-intro {
    padding: 75px 0 55px;
  }


  .services-intro h2 {
    font-size: 48px;
  }


  .services-intro-text p {
    font-size: 13px;
  }


  /* SERVICE */

  .services-list {
    padding: 15px 0 70px;
  }


  .service-row,
  .service-row-reverse {
    gap: 35px;

    padding: 55px 0;
  }


  .service-row-image {
    height: 440px;
  }


  .service-row-number {
    left: 15px;
    top: 15px;

    width: 42px;
    height: 42px;

    font-size: 13px;
  }


  .service-row-content h2 {
    font-size: 48px;

    margin-bottom: 22px;
  }


  .service-row-content>p {
    font-size: 13px;

    line-height: 1.8;
  }


  .service-features {
    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 28px;
  }


  .service-button {
    font-size: 9px;
  }


  .service-button i {
    width: 36px;
    height: 36px;
  }


  /* CTA */

  .services-cta {
    padding: 55px 0 80px;
  }


  .services-cta-card {
    min-height: 430px;

    padding: 40px 25px;

    align-items: flex-start;

    border-radius: 14px;
  }


  .services-cta h2 {
    font-size: 42px;
  }


  .services-cta p {
    font-size: 12px;
  }


  .services-cta-decoration {
    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -130px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .services-hero h1 {
    font-size: 50px;
  }


  .services-script {
    font-size: 26px;
  }


  .services-intro h2 {
    font-size: 42px;
  }


  .service-row-image {
    height: 390px;
  }


  .service-row-content h2 {
    font-size: 42px;
  }


  .services-cta h2 {
    font-size: 37px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .services-page *,
  .services-page *::before,
  .services-page *::after {
    animation: none !important;

    transition: none !important;
  }


  .service-row {
    opacity: 1;

    transform: none;
  }

}