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

:root {
  --cream: #FAF4EA;
  --cream-dark: #F0E6D3;
  --rose: #C9A0A0;
  --rose-light: #EDD8D8;
  --sage: #9DAF95;
  --text: #3D2B1F;
  --text-mid: #7A6558;
  --text-light: #A89080;
  --white: #FEFCF8;
  --nav-height: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 15% 15%, rgba(201,160,160,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(157,175,149,0.07) 0%, transparent 55%);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(250,244,234,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 100;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img { height: 38px; width: auto; }

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.btn-primary { background: var(--text); color: var(--cream); border-color: var(--text); }
.btn-primary:hover { background: transparent; color: var(--text); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--cream); }

.btn-white { background: var(--white); color: var(--text); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

main { padding-top: var(--nav-height); }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--text);
  color: var(--cream);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-top: 6rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,244,234,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-social a {
  font-size: 0.85rem;
  color: rgba(250,244,234,0.7);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250,244,234,0.4);
  letter-spacing: 0.06em;
}

/* ── Shared section styles ───────────────────────── */
.section { padding: 6rem; }

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

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--text);
}

.divider {
  width: 50px; height: 1px;
  background: var(--rose);
  margin: 1.5rem auto 0;
}

/* ════════════════════════════════════════════════════
   HOME
════════════════════════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
}

.hero-text {
  padding: 5rem 4rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.85;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 10%);
  z-index: 1;
}

/* Featured strip */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.featured-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.featured-item:hover img { transform: scale(1.04); }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.featured-item:hover .featured-overlay { opacity: 1; }

.featured-label {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}

/* Testimonials */
.testimonials {
  background: var(--cream-dark);
  padding: 6rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.25rem;
  border-left: 3px solid var(--rose-light);
}

.testimonial-stars { color: var(--rose); margin-bottom: 1rem; font-size: 0.85rem; }

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}

/* CTA banner */
.cta-banner {
  background: var(--sage);
  padding: 5rem 6rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════ */

.page-header {
  padding: 5rem 6rem 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.page-header p { color: var(--text-mid); max-width: 500px; margin: 0 auto; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 3rem;
}

.gallery-tab {
  padding: 1rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-mid);
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
  margin-bottom: -1px;
}

.gallery-tab.active { color: var(--text); border-bottom-color: var(--rose); }
.gallery-tab:hover { color: var(--text); }

.gallery-section {
  padding: 0 4rem 4rem;
  display: none;
}

.gallery-section.active {
  display: block;
  animation: fadeUp 0.45s ease both;
}

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

.gallery-grid {
  columns: 4 220px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,0.12);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.zoom-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(25,15,10,0.93);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 92vw;
}

#lightbox-img {
  max-width: 82vw;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.75rem;
  background: none; border: none;
  color: rgba(250,244,234,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--cream); }

.lb-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream);
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.lb-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.about-image { position: relative; overflow: hidden; }
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
}

.about-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.about-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.about-text p:last-of-type { margin-bottom: 2rem; }

.about-values {
  background: var(--cream);
  padding: 6rem;
}

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

.value-item { text-align: center; }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-item h3 {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ════════════════════════════════════════════════════
   COMMISSIONS
════════════════════════════════════════════════════ */

.pricing-section { padding: 5rem 6rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid var(--cream-dark);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(61,43,31,0.09);
}

.pricing-size {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.pricing-extras {
  background: var(--cream-dark);
  padding: 4rem 6rem;
  text-align: center;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 560px;
  margin: 2rem auto 0;
}

.extra-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.extra-label { font-size: 0.9rem; color: var(--text-mid); }

.extra-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
}

.process-section { padding: 6rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.process-step { text-align: center; }

.step-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 auto 1.5rem;
}

.process-step h3 { font-size: 1.25rem; font-style: italic; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; }

/* FAQ */
.faq-section {
  background: var(--cream-dark);
  padding: 6rem;
}

.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item { background: var(--white); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 1.4rem 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.3s;
}

.faq-item.open .faq-question { border-bottom-color: var(--cream-dark); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--rose);
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 1.25rem 2rem 1.75rem;
}

.commissions-cta {
  background: var(--sage);
  padding: 5rem 6rem;
  text-align: center;
  color: var(--white);
}

.commissions-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.commissions-cta p { margin-bottom: 2.5rem; opacity: 0.9; }

/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */

.contact-section {
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  min-height: 70vh;
}

.contact-info h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.contact-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
  display: block;
}

.contact-info p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color 0.3s;
}
.contact-link:hover { color: var(--text); }

.contact-link-icon {
  width: 40px; height: 40px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

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

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

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.875rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 8px 24px rgba(61,43,31,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.85rem;
  }

  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 3rem 1.5rem 2.5rem; order: 2; }
  .hero-image { min-height: 60vw; order: 1; }
  .hero-image::before {
    background: linear-gradient(to bottom, transparent 80%, var(--cream) 100%);
  }

  .section { padding: 4rem 1.5rem; }

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

  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 4rem 1.5rem; }

  .page-header { padding: 3rem 1.5rem 2rem; }
  .gallery-section { padding: 0 1.25rem 3rem; }
  .gallery-grid { columns: 2 140px; }

  .about-hero { grid-template-columns: 1fr; }
  .about-image { height: 65vw; }
  .about-text { padding: 3rem 1.5rem; }
  .about-values { padding: 4rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .pricing-section { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-extras { padding: 3rem 1.5rem; }
  .extras-grid { grid-template-columns: 1fr; }

  .process-section { padding: 4rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }

  .faq-section { padding: 4rem 1.5rem; }
  .commissions-cta { padding: 4rem 1.5rem; }

  .contact-section { padding: 3rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 3rem 1.5rem; margin-top: 4rem; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
