/* ============================================
   LasherStudio — Landing Page Styles
   Palette: Charcoal #1a1a1a · Cream #f5f0eb · Gold #c9a96e · Muted Rose #b8928a
   Fonts: Cormorant Garamond (serif) + DM Sans (sans-serif)
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --cream: #f5f0eb;
  --cream-dark: #e8e0d8;
  --gold: #c9a96e;
  --gold-light: #d4bb8a;
  --rose: #b8928a;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, Helvetica Neue, sans-serif;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header--scrolled {
  background: rgba(26, 26, 26, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,.15);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}

.header--scrolled .header__inner {
  height: 64px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__brand {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .03em;
}

.header__company {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 1px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.header__link:hover::after {
  width: 100%;
}

.header__link--cta {
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 24px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: background var(--transition), transform var(--transition);
}

.header__link--cta::after {
  display: none;
}

.header__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,.65) 0%,
    rgba(26,26,26,.45) 40%,
    rgba(26,26,26,.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .4s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: .95;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s .6s forwards;
}

.hero__title-line {
  display: block;
}

.hero__title-line--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,235,.85);
  letter-spacing: .04em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .9s forwards;
}

.hero__subtitle em {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s 1.1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,235,.5);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,.3);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,235,.35);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
}

/* ---------- SECTIONS COMMON ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section__label {
  font-family: var(--font-serif);
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 16px;
  font-style: italic;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 60px;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: .95rem;
}

.about__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  padding-left: 20px;
  position: relative;
  font-size: .92rem;
  color: var(--text);
}

.about__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: 5px;
}

/* Hours Card */
.hours-card {
  background: var(--charcoal);
  color: var(--cream);
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}

.hours-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--gold);
}

.hours-card__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,235,.08);
  font-size: .88rem;
}

.hours-card__row span:first-child {
  font-weight: 400;
  color: rgba(245,240,235,.6);
}

.hours-card__row span:last-child {
  font-weight: 500;
  letter-spacing: .02em;
}

.hours-card__note {
  margin-top: 20px;
  font-size: .78rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  letter-spacing: .02em;
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
  background: var(--charcoal);
}

.portfolio .section__label,
.portfolio .section__title,
.portfolio .section__title em {
  color: var(--gold);
}

.portfolio .section__title {
  color: var(--cream);
}

.portfolio .section__subtitle {
  color: rgba(245,240,235,.5);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.portfolio__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s;
  filter: grayscale(20%);
}

.portfolio__item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.portfolio__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.3), transparent);
  pointer-events: none;
  transition: opacity var(--transition);
}

.portfolio__item:hover::after {
  opacity: 0;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid rgba(26,26,26,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,26,26,.08);
}

.service-card__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color var(--transition);
}

.service-card:hover .service-card__number {
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.65;
}

.service-card__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,26,.08);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--text-light);
}

.service-card__meta span:first-child {
  font-weight: 600;
  color: var(--gold);
}

/* ---------- BANNER ---------- */
.banner {
  background: var(--charcoal);
  padding: 60px 0;
}

.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.banner__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.banner__subtitle {
  color: rgba(245,240,235,.6);
  font-size: .95rem;
}

.banner__subtitle strong {
  color: var(--gold);
}

/* ---------- CONTACT SECTIONS ---------- */
.contact,
.request {
  background: var(--cream);
}

.request {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__grid--reverse {
  direction: rtl;
}

.contact__grid--reverse > * {
  direction: ltr;
}

.contact__info p {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 420px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact__detail a,
.contact__detail span {
  font-size: .95rem;
  color: var(--charcoal);
}

.contact__detail a:hover {
  color: var(--gold);
}

/* Perks */
.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__perk-icon {
  color: var(--gold);
  font-size: .6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.contact__perk strong {
  display: block;
  font-size: .92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact__perk p {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ---------- FORMS ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form__input {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 14px 18px;
  border: 1px solid rgba(26,26,26,.12);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}

.form__input::placeholder {
  color: rgba(26,26,26,.3);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}

.form-success.active {
  display: block;
  animation: fadeUp .5s forwards;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: .92rem;
  color: var(--text-light);
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.88);
}

.footer__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,235,.1);
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.footer__brand-tagline {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 6px;
  display: block;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,240,235,.5);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,235,.1);
  margin-bottom: 40px;
}

.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col p {
  font-size: .88rem;
  color: rgba(245,240,235,.55);
  margin-bottom: 6px;
}

.footer__col a {
  color: rgba(245,240,235,.55);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal p {
  font-size: .76rem;
  color: rgba(245,240,235,.35);
  margin-bottom: 3px;
  letter-spacing: .02em;
}

.footer__legal strong {
  color: rgba(245,240,235,.5);
}

.footer__copy {
  font-size: .76rem;
  color: rgba(245,240,235,.3);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hours-card {
    position: static;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26,26,26,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__link {
    font-size: 1.1rem;
    letter-spacing: .12em;
  }

  .header__link--cta {
    margin-top: 16px;
    padding: 14px 40px;
  }

  .contact__grid,
  .contact__grid--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__item--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__middle {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .service-card {
    padding: 28px 24px;
  }
}
