@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Nunito:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --cream:    #F8F5F0;
  --white:    #FFFFFF;
  --charcoal: #1C1A18;
  --mid:      #6B6560;
  --border:   #E2DDD7;
  --accent:   #7A6A58;

  --script:  'Dancing Script', cursive;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Nunito', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
}

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

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

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--charcoal);
}

.nav__logo-main {
  font-family: var(--script);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(90vh - var(--nav-h));
  overflow: hidden;
  background: var(--cream);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(28, 26, 24, 0.45) 100%
  );
}

.hero__text {
  position: absolute;
  bottom: 52px;
  left: 48px;
  color: var(--white);
}

.hero__text h1 {
  font-family: var(--script);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
}

.hero__text p {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.85;
}

/* ─── Commission CTA banner ──────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner__text h2 {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.cta-banner__text p {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--mid);
  max-width: 440px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  flex-shrink: 0;
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ─── Section wrapper ────────────────────────────────────────── */
.section {
  padding: 72px 40px;
}

.section__heading {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 40px;
}

/* ─── Gallery grid ───────────────────────────────────────────── */
.gallery {
  columns: 3;
  column-gap: 20px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--cream);
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

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

/* ─── "View all" link ─────────────────────────────────────────── */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.view-all:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── Page header (inner pages) ──────────────────────────────── */
.page-header {
  padding: 64px 40px 40px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--script);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.page-header p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--mid);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Commissions ────────────────────────────────────────────── */
.commissions-body {
  padding: 56px 40px;
  max-width: 900px;
}

.commissions-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.form-embed {
  width: 100%;
  min-height: 700px;
  border: 1px solid var(--border);
  background: var(--cream);
}

.form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 400px;
  background: var(--cream);
  border: 1px dashed var(--border);
  color: var(--mid);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 40px;
}

.form-placeholder strong {
  font-family: var(--script);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── About ──────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  padding: 64px 40px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-text h1 {
  font-family: var(--script);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-text .bio {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.9;
  max-width: 520px;
}

.about-text .bio p + p {
  margin-top: 1.2em;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.instagram-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.instagram-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  margin-top: auto;
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.06em;
}

.footer a {
  color: var(--mid);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--charcoal);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }

  .gallery { columns: 2; }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .about-photo {
    position: static;
    max-width: 320px;
  }

  .hero__text { left: 24px; bottom: 36px; }
  .section    { padding: 48px 24px; }
  .page-header { padding: 48px 24px 32px; }
  .footer     { padding: 24px; }
  .commissions-body { padding: 40px 24px; }
}

@media (max-width: 540px) {
  .nav__logo-main { font-size: 1.4rem; }
  .nav__links { gap: 20px; }
  .gallery { columns: 1; }
}
