:root {
  --ivory: #fffaf4;
  --warm-white: #ffffff;
  --blush: #f6d7de;
  --pale-pink: #fae9ed;
  --sage: #aebfa8;
  --sage-deep: #6c8064;
  --ink: #241f1c;
  --taupe: #756d66;
  --champagne: #c9ac72;
  --line: rgba(36, 31, 28, 0.13);
  --shadow: 0 26px 70px rgba(36, 31, 28, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 90%); margin: 0 auto; }
.section { padding: 92px 0; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.04;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.7rem); letter-spacing: -0.03em; margin-bottom: 22px; }
h3 { font-size: 1.75rem; }
p { color: var(--taupe); }
.eyebrow {
  color: var(--sage-deep);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--warm-white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .25s ease;
}
.button:hover { background: var(--sage-deep); border-color: var(--sage-deep); transform: translateY(-2px); }
.text-link {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,244,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.nav { display: flex; gap: 26px; align-items: center; }
.nav a, .header-cta {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
}
.nav a:hover, .header-cta:hover { color: var(--ink); }
.header-cta { color: var(--sage-deep); }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(246,215,222,.45), transparent 36%), radial-gradient(circle at 72% 76%, rgba(174,191,168,.3), transparent 34%);
  pointer-events: none;
}
.hero-image-wrap { min-height: 88vh; }
.hero-image-wrap img {
  height: 100%;
  min-height: 88vh;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 7vw;
  width: min(620px, 86%);
  margin: 0;
}
.hero-copy { font-size: 1.03rem; max-width: 570px; margin: 28px 0 34px; }
.hero-buttons { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.statement { background: var(--warm-white); border-bottom: 1px solid var(--line); }
.statement-inner { padding: 34px 0; text-align: center; }
.statement p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.22;
}

.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading p:last-child { max-width: 660px; margin: 0 auto; }

.works-section { background: linear-gradient(180deg, var(--ivory), var(--pale-pink)); }
.featured-work {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 38px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.featured-media {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: end;
}
.featured-media img {
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 15px 38px rgba(36,31,28,.14);
}
.featured-main { aspect-ratio: 4/5; }
.featured-detail { aspect-ratio: 3/4; }
.featured-text { padding: 18px 18px 18px 0; }
.featured-text h3 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 18px; }
.featured-text p { margin-bottom: 22px; }
.detail-list { list-style: none; display: grid; gap: 10px; margin-top: 20px; }
.detail-list li {
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  font-size: .93rem;
}
.detail-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--champagne);
}
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(36,31,28,.09);
}
.work-card img { aspect-ratio: 4/5; object-fit: cover; }
.work-card-content { padding: 24px; }
.work-label {
  color: var(--sage-deep);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.work-card h3 { margin-bottom: 10px; }
.work-card p:last-child { font-size: .92rem; }

.commission-section { background: var(--ivory); }
.commission-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(246,215,222,.78));
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 62px;
  box-shadow: var(--shadow);
}
.commission-intro { text-align: center; max-width: 850px; margin: 0 auto 38px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-step { background: var(--warm-white); border: 1px solid var(--line); border-radius: 28px; padding: 28px; }
.process-step span { display: inline-block; color: var(--champagne); font-weight: 600; letter-spacing: .14em; margin-bottom: 12px; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: .92rem; }

.artist-section { background: var(--warm-white); }
.artist-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.artist-placeholder {
  min-height: 520px;
  border-radius: 240px 240px 28px 28px;
  border: 1px solid var(--champagne);
  background: linear-gradient(145deg, var(--pale-pink), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.artist-copy p { margin-bottom: 18px; max-width: 660px; }

.contact-section { background: linear-gradient(180deg, var(--warm-white), var(--ivory)); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy p { max-width: 570px; margin-bottom: 18px; }
.small-note { font-size: .82rem; color: var(--sage-deep); }
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  color: var(--sage-deep);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ivory);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid rgba(174,191,168,.45); border-color: var(--sage); }
input[type="file"] { padding: 13px; }
.form-button { width: 100%; cursor: pointer; }
.form-fallback { font-size: .86rem; text-align: center; margin-top: 16px; }
.form-fallback a { color: var(--sage-deep); border-bottom: 1px solid var(--sage); }

.footer { background: var(--ink); color: var(--warm-white); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer p, .footer a { color: rgba(255,255,255,.76); font-size: .84rem; }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap, .hero-image-wrap img { min-height: 56vh; }
  .hero-content { padding: 58px 0 68px; width: min(90%, 760px); margin: 0 auto; }
  .featured-work, .artist-grid, .contact-grid { grid-template-columns: 1fr; }
  .featured-text { padding: 0; }
  .work-grid, .process-grid { grid-template-columns: 1fr; }
  .commission-panel { padding: 42px 26px; }
}

@media (max-width: 620px) {
  .container { width: 91%; }
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; }
  .logo { font-size: 1.5rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-content { padding: 44px 0 58px; }
  .hero-buttons { align-items: flex-start; flex-direction: column; }
  .featured-work { padding: 18px; border-radius: 28px; }
  .featured-media { grid-template-columns: 1fr; }
  .featured-main, .featured-detail { aspect-ratio: 4/5; }
  .contact-form { padding: 24px; }
  .artist-placeholder { min-height: 360px; border-radius: 180px 180px 24px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
