@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F1EA;
  --taupe: #CBBBAA;
  --greige: #B2A79B;
  --black: #1E1E1E;
  --brass: #B08D57;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --nav-height: 80px;
  --top-bar: 3px;
  --section-padding: clamp(4rem, 8vw, 6rem);
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TOP ACCENT BAR ===== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--brass);
  z-index: 101;
}

/* ===== NAVIGATION ===== */

.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  z-index: 100;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}

.nav--scrolled {
  box-shadow: 0 1px 0 var(--taupe);
  border-bottom-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 45px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  cursor: pointer;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brass);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + var(--top-bar));
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  z-index: 99;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1rem;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--top-bar));
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero__content {
  padding-right: 2rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1rem;
  color: #7a6f64;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.hero__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.1);
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background-color: var(--taupe);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--greige);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn--outline:hover {
  background-color: var(--black);
  color: var(--cream);
}

/* ===== SECTIONS ===== */

.section {
  padding: var(--section-padding) 0;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: block;
}

.section__title {
  margin-bottom: 1rem;
}

.section__divider {
  width: 60px;
  height: 2px;
  background-color: var(--brass);
  margin: 1.5rem auto 0;
}

/* ===== FILTER ===== */

.filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter__btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--taupe);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter__btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.filter__btn--active {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

.filter__btn--active:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

/* ===== PORTFOLIO GRID ===== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.portfolio-item--hidden {
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.portfolio-item__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-item__image {
  transform: scale(1.03);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 30, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__label {
  transform: translateY(0);
}

/* ===== SERVICES ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(203, 187, 170, 0.35);
  background-color: rgba(255, 253, 250, 0.5);
  box-shadow: 0 2px 12px rgba(178, 167, 155, 0.06);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(176, 141, 87, 0.12);
}

.service-card__icon {
  width: 40px;
  height: 1px;
  background-color: var(--brass);
  margin: 0 auto 2rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card__description {
  font-size: 0.9rem;
  color: #7a6f64;
  line-height: 1.7;
}

/* ===== PROCESS TIMELINE ===== */

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  background-color: rgba(255, 253, 250, 0.7);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(203, 187, 170, 0.35);
  box-shadow: 0 4px 20px rgba(178, 167, 155, 0.08);
}

.process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--brass);
}

.process::before {
  content: '';
  position: absolute;
  top: calc(3rem + 24px);
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background-color: var(--taupe);
}

.process__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process__number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: var(--brass);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background-color: #f7f3ed;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.process__content {
  padding: 0 0.25rem;
}

.process__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.process__text {
  font-size: 0.8rem;
  color: #7a6f64;
  line-height: 1.6;
}

.process__icon {
  width: 36px;
  height: 36px;
  margin: 0.6rem 0 0.4rem;
  color: var(--black);
  opacity: 0.5;
}

/* ===== PRICING ===== */

.pricing {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(203, 187, 170, 0.35);
  padding: 3rem 3rem 2.5rem;
  background-color: rgba(255, 253, 250, 0.7);
  box-shadow: 0 4px 20px rgba(178, 167, 155, 0.08);
  position: relative;
}

.pricing__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--brass);
}

.pricing__intro {
  font-size: 0.9rem;
  color: #7a6f64;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing__item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(203, 187, 170, 0.3);
}

.pricing__item:first-child {
  border-top: 1px solid rgba(203, 187, 170, 0.3);
}

.pricing__left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pricing__service {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
}

.pricing__desc {
  font-size: 0.8rem;
  color: #7a6f64;
  line-height: 1.5;
}

.pricing__line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--taupe) 0, var(--taupe) 2px, transparent 2px, transparent 6px);
  margin: 0 1.5rem;
  opacity: 0.4;
  min-width: 2rem;
}

.pricing__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.pricing__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a6f64;
}

.pricing__label--custom {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
}

.pricing__note {
  font-size: 0.8rem;
  color: #7a6f64;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* ===== PROCESS DETAIL (full page) ===== */

.process-detail {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 253, 250, 0.7);
  padding: 3rem 3.5rem;
  border: 1px solid rgba(203, 187, 170, 0.35);
  box-shadow: 0 4px 20px rgba(178, 167, 155, 0.08);
  position: relative;
}

.process-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--brass);
}

.process-detail__item {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(203, 187, 170, 0.3);
}

.process-detail__item:last-child {
  border-bottom: none;
}

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

.process-detail__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
}

.process-detail__text {
  font-size: 0.9rem;
  color: #7a6f64;
  line-height: 1.8;
  padding-top: 0.75rem;
}

@media (max-width: 768px) {
  .process-detail__item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
}

/* ===== EDITORIAL BAND ===== */

.editorial-band {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

.editorial-band__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.editorial-band__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.editorial-band__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 2rem;
}

.editorial-band__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--cream);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.editorial-band__link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ===== ABOUT ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(30, 30, 30, 0.08);
}

.about__content {
  padding: 2rem 0;
}

.about__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: block;
}

.about__title {
  margin-bottom: 2rem;
}

.about__text {
  font-size: 0.95rem;
  color: #7a6f64;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.about-grid--reversed {
  direction: ltr;
}

.about-grid--reversed .about__content {
  order: 1;
}

.about-grid--reversed .about__image {
  order: 2;
}

/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact__info {
  padding: 2rem 0;
}

.contact__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: block;
}

.contact__title {
  margin-bottom: 2rem;
}

.contact__text {
  font-size: 0.95rem;
  color: #7a6f64;
  margin-bottom: 2rem;
  max-width: 400px;
}

.contact__detail {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

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

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--taupe);
  background: transparent;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s ease;
}

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

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

/* ===== FOOTER ===== */

.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--taupe);
  margin-top: var(--section-padding);
  background-color: rgba(203, 187, 170, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--greige);
  cursor: pointer;
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: var(--black);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--greige);
}

/* ===== PAGE HERO (for inner pages) ===== */

.page-hero {
  padding-top: calc(var(--nav-height) + var(--top-bar) + 3rem);
  padding-bottom: 2.5rem;
  text-align: center;
}

.page-hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: block;
}

.page-hero__title {
  margin-bottom: 1.5rem;
}

.page-hero__divider {
  width: 60px;
  height: 2px;
  background-color: var(--brass);
  margin: 0 auto;
}

/* ===== REVEAL ANIMATION ===== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .process::before {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__content {
    padding-right: 0;
    text-align: center;
    order: 2;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image {
    height: 300px;
    order: 1;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--top-bar) + 2rem);
    padding-bottom: 3rem;
  }

  .hero__image {
    height: 400px;
  }

  .pricing {
    padding: 2.5rem 1.5rem 2rem;
  }

  .pricing__item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pricing__line {
    display: none;
  }

  .pricing__left {
    width: 100%;
  }

  .pricing__service {
    font-size: 1.1rem;
  }

  .pricing__right {
    align-items: flex-start;
  }

  .pricing__price {
    font-size: 1.3rem;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-left: 2rem;
  }

  .process::before {
    top: 0;
    bottom: 0;
    left: calc(2rem + 20px);
    right: auto;
    width: 1px;
    height: auto;
  }

  .process__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .process__number {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .process__content {
    padding-top: 0.5rem;
  }

  .filter {
    gap: 0.4rem;
  }

  .filter__btn {
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-grid--reversed .about__content {
    order: 2;
  }

  .about-grid--reversed .about__image {
    order: 1;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
