/* =========================================================
   LS BEAUTY & LASH STUDIO
   Main stylesheet
   ========================================================= */


/* ================= VARIABLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');


:root {
  --gold: #dbad2e;
  --gold-light: #e8c65e;
  --dark: #1b1b1a;
  --dark-soft: #292927;
  --text: #333331;
  --muted: #77756f;
  --white: #ffffff;
  --cream: #faf9f5;
  --border: #e8e5dc;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;

  --transition: 0.3s ease;
}


/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--dark);
}


/* ================= UTILITIES ================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.gold-text {
  color: var(--gold);
}

.eyebrow {
  font-size: 14px;
  font-family: "Petit Formal Script";
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
}

p {
  color: var(--muted);
}

strong {
  color: var(--text);
}


/* ================= HEADER ================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.nav-container {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-main {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.logo-sub {
  display: block;
  max-width: 105px;
  color: var(--dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav > a {
  position: relative;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 20px;
  color: var(--white) !important;
  background: var(--dark);
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 5px auto;
  background: var(--dark);
  transition: var(--transition);
}


/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 800px;
  height: 100vh;
  max-height: 950px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(20, 20, 19, 0.86) 0%,
      rgba(20, 20, 19, 0.62) 45%,
      rgba(20, 20, 19, 0.15) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  padding-top: 80px;
}

.hero .eyebrow {
  margin-bottom: 25px;
  color: var(--gold-light);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(55px, 7vw, 100px);
  color: var(--white);
}

.hero-text {
  max-width: 540px;
  margin: 28px 0 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 27px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translateX(5px);
}

.button-gold {
  background: var(--gold);
  color: var(--dark);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--dark);
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 25px;
  background: var(--gold);
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}


/* ================= SECTION LABEL ================= */

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label > div {
  width: 45px;
  height: 1px;
  background: var(--gold);
}

.centered-label {
  justify-content: center;
  margin-bottom: 30px;
}


/* ================= INTRO ================= */

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

.intro-content {
  max-width: 850px;
}

.intro-content .eyebrow {
  margin-bottom: 18px;
}

.intro-content h2 {
  margin-bottom: 35px;
}

.intro-content p {
  max-width: 760px;
  margin-bottom: 18px;
}

.intro-content .lead {
  color: var(--text);
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  gap: 15px;
  margin-top: 18px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link span {
  color: var(--gold);
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}


/* ================= IMAGE BREAK ================= */

.image-break {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.image-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 19, 0.48);
}

.image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.image-break-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 25px;
}

blockquote {
  max-width: 800px;
  margin: auto;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.2;
}


/* ================= SERVICES ================= */

.services {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 65px;
}

.section-heading.centered {
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 570px;
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 42px 35px;
  background: var(--white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #d7d4ca;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.service-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.service-card p {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.8;
}

.service-card a {
  display: inline-flex;
  gap: 10px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--gold);
  transition: transform var(--transition);
}

.service-card a:hover span {
  transform: translateX(5px);
}

.featured-service {
  background: var(--dark);
}

.featured-service h3,
.featured-service a {
  color: var(--white);
}

.featured-service p {
  color: #a7a6a0;
}

.featured-service .service-number {
  color: #4a4a47;
}


/* ================= BRANDS ================= */

.brands {
  background: var(--dark);
  color: var(--white);
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.brands h2 {
  max-width: 500px;
  margin-top: 15px;
  color: var(--white);
}

.brands .eyebrow {
  color: var(--gold);
}

.brand-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 45px;
}

.brand-list img {
    max-width: 250px;
}

.brand-name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 38px;
  text-align: center;
}

.brand-name small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.brand-divider {
  width: 1px;
  height: 65px;
  background: #555551;
}


/* ================= SKIN CARE ================= */

.skin-care {
  background: var(--white);
}

.skin-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.skin-image {
  position: relative;
}

.skin-image::after {
  position: absolute;
  content: "";
  right: -25px;
  bottom: -25px;
  z-index: -1;
  width: 70%;
  height: 70%;
  border: 1px solid var(--gold);
}

.skin-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.skin-content .section-label {
  margin-bottom: 45px;
}

.skin-content .eyebrow {
  margin-bottom: 15px;
}

.skin-content h2 {
  margin-bottom: 30px;
}

.skin-content p {
  max-width: 600px;
  margin-bottom: 17px;
}

.skin-content .lead {
  color: var(--text);
  font-size: 19px;
}

.skin-content .button {
  margin-top: 18px;
}


/* ================= PRICING ================= */

.pricing {
  background: var(--cream);
}

.price-list {
  max-width: 950px;
  margin: auto;
}

.price-category {
  margin-bottom: 55px;
}

.price-category-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark);
}

.price-category-title > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.price-category-title h3 {
  color: var(--dark);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.price-item h4 {
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
}

.price-item p {
  max-width: 650px;
  font-size: 13px;
  line-height: 1.6;
}

.price-meta {
  min-width: 145px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 20px;
  text-align: right;
}

.price-meta span {
  color: var(--muted);
  font-size: 11px;
}

.price-meta strong {
  color: var(--dark);
  font-size: 17px;
  white-space: nowrap;
}

.price-featured {
  padding: 30px;
  background: var(--dark);
}

.price-featured .price-category-title {
  border-color: #444441;
}

.price-featured .price-category-title h3,
.price-featured .price-item h4,
.price-featured .price-meta strong {
  color: var(--white);
}

.price-featured .price-item {
  border-color: #444441;
}

.price-featured .price-item p,
.price-featured .price-meta span {
  color: #a5a49e;
}


/* ================= CTA ================= */

.cta-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-background,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-background img {
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  background: rgba(20, 20, 19, 0.67);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content .eyebrow {
  margin-bottom: 20px;
  color: var(--gold-light);
}

.cta-content h2 {
  color: var(--white);
}

.cta-content > p:not(.eyebrow) {
  margin: 20px 0 35px;
  color: rgba(255, 255, 255, 0.75);
}


/* ================= CONTACT ================= */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-info .section-label {
  margin-bottom: 45px;
}

.contact-info .eyebrow {
  margin-bottom: 15px;
}

.contact-info h2 {
  margin-bottom: 25px;
}

.contact-intro {
  max-width: 520px;
  margin-bottom: 45px;
}

.contact-details {
  display: grid;
  gap: 25px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.contact-detail small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 14px;
  font-weight: 600;
}

.contact-form-wrapper {
  padding: 50px;
  background: var(--cream);
}

.contact-form-wrapper h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.contact-form-wrapper > p {
  margin-bottom: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 23px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd9cf;
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--dark);
  padding: 13px 15px;
  transition: border var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-message {
  display: none;
  margin-top: 18px;
  color: #58734b;
  font-size: 13px;
}

.form-message.visible {
  display: block;
}


/* ================= MAP ================= */

.map-section {
  height: 430px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85);
}


/* ================= FOOTER ================= */

.site-footer {
  padding: 70px 0 25px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo .logo-sub {
  color: var(--white);
}

.footer-brand > p {
  max-width: 310px;
  margin-top: 22px;
  color: #9b9a94;
  font-size: 13px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: #c3c2bd;
  font-size: 13px;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin-top: 5px;
  color: #9b9a94;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid #3a3a37;
  color: #777670;
  font-size: 11px;
}

.footer-bottom a {
  color: #aaa9a3;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* ================= ANIMATIONS ================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

  .main-nav {
    gap: 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brands h2 {
    margin-inline: auto;
  }

  .skin-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 60px;
  }

  .footer-grid {
    gap: 40px;
  }
}


@media (max-width: 760px) {

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 80px 0;
  }


  /* Mobile navigation */

  .nav-container {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a {
    padding: 14px 10px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }


  /* Hero */

  .hero {
    min-height: 700px;
    height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(20, 20, 19, 0.84),
        rgba(20, 20, 19, 0.38)
      );
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 75px);
  }

  .hero-text {
    font-size: 16px;
  }


  /* Services */

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }


  /* Brands */

  .brand-list {
    flex-direction: column;
    gap: 25px;
  }

  .brand-divider {
    width: 60px;
    height: 1px;
  }


  /* Skin */

  .skin-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .skin-image {
    margin-right: 20px;
  }


  /* Pricing */

  .price-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-meta {
    display: flex;
    justify-content: space-between;
    min-width: 0;
    text-align: left;
  }

  .price-meta strong {
    margin-left: auto;
  }

  .price-featured {
    padding: 20px;
  }


  /* Contact */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .map-section {
    height: 330px;
  }
}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

}
