*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --taupe: #A89882;
  --taupe-light: #C4B8A5;
  --sage: #7A8B6F;
  --sage-deep: #5C6B52;
  --terracotta: #B8694A;
  --hunter: #2D3B2A;
  --charcoal: #3A3632;
  --warm-black: #2A2522;
  --gold-accent: #C4A96A;
  --text-primary: #3A3632;
  --text-secondary: #6B6560;
  --text-light: #9B9590;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  background-color: rgba(42, 37, 34, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 2rem;
}

.header__nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.header__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.header__link:hover {
  opacity: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero__bg img.active {
  opacity: 1;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  padding: 1rem 0.75rem;
  cursor: pointer;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.hero__arrow:hover {
  opacity: 0.5;
}

.hero__arrow--prev {
  left: 1.25rem;
}

.hero__arrow--next {
  right: 1.25rem;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(42, 37, 34, 0.35) 0%,
    rgba(42, 37, 34, 0.40) 50%,
    rgba(42, 37, 34, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__logo {
  max-width: min(65vw, 720px);
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin-top: 1.5rem;
}

.hero__divider {
  width: 50px;
  height: 1px;
  background-color: var(--cream);
  opacity: 0.35;
  margin: 2rem auto 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover {
  opacity: 0.7;
}

.hero__scroll span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── About ── */
.about {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.about__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}

.about__image-wrap img.active {
  opacity: 1;
}

.about__image-wrap::before {
  content: '';
  display: block;
  padding-top: 125%;
}

.about__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.about__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--taupe-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about__dot.active {
  background-color: var(--sage-deep);
  transform: scale(1.3);
}

.about__text-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
}

.about__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
}

.about__name em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-size: 1.1em;
  color: var(--sage-deep);
}

.about__bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about__quote {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--sage);
  line-height: 1.4;
  padding-left: 1.5rem;
  border-left: 2px solid var(--taupe-light);
}

.about__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.about__social a {
  color: var(--taupe);
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
  display: flex;
}

.about__social a:hover {
  opacity: 1;
  color: var(--sage-deep);
}

/* ── Visual Break ── */
.visual-break {
  position: relative;
  height: clamp(250px, 30vw, 380px);
  overflow: hidden;
}

.visual-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.visual-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--warm-white) 0%,
    transparent 12%,
    transparent 88%,
    var(--cream) 100%
  );
}

/* ── Gallery ── */
.gallery {
  background-color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.gallery__header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.gallery__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.gallery__grid {
  columns: 3;
  column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  break-inside: avoid;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}


/* ── Consultation CTA ── */
.consult {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  background-color: var(--warm-white);
}

.consult__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.consult__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.consult__subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form__input,
.form__textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--taupe-light);
  border-radius: 2px;
  background-color: var(--warm-white);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
}

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

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--sage);
}


.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background-color: var(--hunter);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 0.5rem;
  align-self: center;
}

.form__submit:hover {
  background-color: var(--charcoal);
}

.form__submit:active {
  transform: scale(0.98);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(30, 27, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  padding: 1rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  line-height: 1;
  z-index: 1001;
}

.lightbox__arrow:hover {
  opacity: 0.9;
}

.lightbox__arrow--prev {
  left: 1rem;
}

.lightbox__arrow--next {
  right: 1rem;
}

/* ── Footer ── */
.footer {
  padding: 3rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--warm-black);
  color: var(--taupe-light);
  gap: 1.25rem;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  max-width: 160px;
  height: auto;
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer__social a {
  color: var(--taupe-light);
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
  display: flex;
}

.footer__social a:hover {
  opacity: 1;
  color: var(--cream);
}

.footer__email {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--taupe-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--cream);
}

.footer__legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer__legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer__legal a:hover {
  opacity: 1;
}

.footer__divider {
  color: var(--text-light);
  opacity: 0.3;
  font-size: 0.7rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0.4;
}

.footer__credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-light);
  opacity: 0.3;
}

.footer__credit a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__credit a:hover {
  opacity: 1;
  color: var(--taupe-light);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
    cursor: default;
  }

  .about__text-side {
    text-align: center;
  }

  .about__quote {
    border-left: none;
    padding-left: 0;
    border-top: none;
    padding-top: 0;
  }

  .about__social {
    justify-content: center;
  }

  .hero__divider {
    display: none;
  }

  .gallery__grid {
    columns: 2;
  }

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

@media (max-width: 640px) {
  .hero__scroll {
    display: none;
  }

  .hero__arrow {
    display: none;
  }

  .hero__logo {
    max-width: 85vw;
  }

  .hero__tagline {
    letter-spacing: 0.08em;
  }

  .gallery__grid {
    columns: 2;
  }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.form__input:focus-visible,
.form__textarea:focus-visible {
  outline: none;
  border-color: var(--sage);
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
