:root {
  --paper: #fff8f4;
  --paper-soft: #fff0f3;
  --petal: #f6ccd6;
  --rose: #d96f86;
  --rose-deep: #8c4153;
  --sky: #c7e1e8;
  --sage: #9eb18e;
  --butter: #efd38a;
  --cocoa: #5c4038;
  --ink: #35272b;
  --muted: #7f666b;
  --line: rgba(140, 65, 83, 0.18);
  --shadow: 0 22px 55px rgba(92, 64, 56, 0.14);
  --radius: 8px;
  --copy-serif: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10px 10px, rgba(217, 111, 134, 0.1) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, var(--paper), #fffdfb 42%, #f8fbfa);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(92, 64, 56, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 64, 56, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 36px;
  overflow: hidden;
  border-bottom: 1px solid rgba(140, 65, 83, 0.16);
  background: var(--rose-deep);
  color: #fff;
}

.announcement-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: banner-scroll 30s linear infinite;
  will-change: transform;
}

.announcement-track span {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding-inline: 28px;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes banner-scroll {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(140, 65, 83, 0.14);
  background: rgba(255, 248, 244, 0.9);
  box-shadow: 0 12px 30px rgba(53, 39, 43, 0.06);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  color: var(--rose-deep);
}

.brand-script {
  font-family: "Parisienne", cursive;
  font-size: 2.25rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--cocoa);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--rose-deep);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  padding: 168px max(24px, calc((100vw - 1180px) / 2)) 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(53, 39, 43, 0.64) 0%, rgba(53, 39, 43, 0.42) 36%, rgba(255, 248, 244, 0.1) 68%),
    url("assets/summer.png") center 28% / cover no-repeat;
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(53, 39, 43, 0.28));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #ffe2e8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  margin-bottom: 20px;
  font-family: "Parisienne", cursive;
  font-size: 8rem;
  font-weight: 400;
  line-height: 0.82;
  text-shadow: 0 10px 38px rgba(53, 39, 43, 0.28);
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--copy-serif);
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg,
.contact-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 16px 32px rgba(140, 65, 83, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #743244;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.26);
}

.intro-band {
  display: grid;
  place-items: center;
  min-height: 14svh;
  padding: 28px 24px;
  background: linear-gradient(90deg, var(--sky), var(--paper-soft) 46%, #f7efe3 100%);
  border-block: 1px solid var(--line);
}

.intro-band p {
  max-width: 960px;
  margin: 0;
  color: var(--rose-deep);
  font-family: var(--copy-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}

.art-card {
  display: block;
  margin: 0;
  margin-bottom: 14px;
  break-inside: avoid;
  border: 1px solid rgba(140, 65, 83, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.art-card.wide {
  aspect-ratio: auto;
}

.art-card.story {
  aspect-ratio: auto;
}

.art-card.tall {
  aspect-ratio: auto;
}

.art-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 1px);
  object-fit: contain;
}

.commissions-section {
  position: relative;
}

.commissions-section::before {
  position: absolute;
  inset: 40px -24px auto;
  height: 68%;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(199, 225, 232, 0.7), rgba(255, 240, 243, 0.92), rgba(239, 211, 138, 0.44));
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.commission-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(140, 65, 83, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--petal);
  color: var(--rose-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.commission-card p {
  color: var(--muted);
}

.quote-pill {
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(140, 65, 83, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(140, 65, 83, 0.18);
  border-radius: var(--radius);
  background: rgba(140, 65, 83, 0.14);
}

.process-row div {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 248, 244, 0.88);
}

.process-row strong {
  color: var(--rose-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.process-row span {
  color: var(--muted);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
  padding-top: 56px;
}

.contact-panel,
.inquiry-form {
  border: 1px solid rgba(140, 65, 83, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: flex;
  min-height: 580px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(53, 39, 43, 0.05), rgba(53, 39, 43, 0.62)),
    url("assets/phone.png") center top / cover no-repeat;
  color: #fff;
}

.contact-panel .eyebrow {
  color: #ffe2e8;
}

.contact-panel h2 {
  margin-bottom: 14px;
  color: #fff;
}

.contact-panel p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-links {
  margin-top: 16px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 253, 251, 0.9);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(140, 65, 83, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.inquiry-form input,
.inquiry-form select {
  padding: 0 13px;
}

.inquiry-form textarea {
  min-height: 152px;
  padding: 13px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(217, 111, 134, 0.15);
}

.full-span {
  grid-column: 1 / -1;
}

.form-button {
  width: fit-content;
}

.form-status {
  align-self: center;
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer a {
  color: var(--rose-deep);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(140, 65, 83, 0.16);
  border-radius: 50%;
  background: rgba(255, 248, 244, 0.72);
}

.footer-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 920px) {
  .site-header {
    padding-inline: 22px;
  }

  .brand-script {
    font-size: 2.05rem;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    min-width: auto;
  }

  .hero {
    min-height: 84svh;
    padding-top: 158px;
    background-position: 58% center;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .commission-grid,
  .process-row,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  .commission-card {
    min-height: 250px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .contact-panel {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .announcement-bar {
    height: 38px;
  }

  .announcement-track {
    animation-duration: 26s;
  }

  .announcement-track span {
    padding-inline: 22px;
    font-size: 0.78rem;
  }

  .site-header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 10px 18px 12px;
  }

  .brand-mark {
    justify-content: center;
  }

  .brand-script {
    font-size: 2rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .nav-links a {
    min-width: 0;
    padding: 6px 4px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
    padding: 188px 18px 56px;
    background-position: 60% top;
  }

  .hero::after {
    height: 42%;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-text {
    max-width: 340px;
    font-size: 1.25rem;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .intro-band p {
    max-width: 350px;
    font-size: 1.08rem;
  }

  .section {
    width: calc(100% - 24px);
    padding: 64px 0;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 12px;
  }

  .art-card {
    margin-bottom: 12px;
  }

  .commission-card,
  .contact-panel,
  .inquiry-form {
    padding: 22px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .form-button {
    width: 100%;
  }

  .form-status {
    text-align: center;
  }

  .site-footer {
    width: calc(100% - 24px);
    flex-wrap: wrap;
  }
}
