:root {
  --ink: #17273f;
  --ink-soft: #41536b;
  --paper: #f7fcff;
  --white: #ffffff;
  --sky: #dff4ff;
  --sky-strong: #7ec8e3;
  --blue: #2d6f94;
  --coral: #d87070;
  --mint: #d8f3ef;
  --line: rgba(23, 39, 63, 0.14);
  --shadow: 0 22px 60px rgba(33, 83, 116, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 252, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0.72;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--sky);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  color: var(--ink);
  background: var(--sky);
}

.button--ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.13);
}

.button--small {
  min-height: 38px;
  padding: 0 15px;
  color: inherit;
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 5vw, 74px) 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 38, 61, 0.86) 0%, rgba(18, 38, 61, 0.58) 43%, rgba(18, 38, 61, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 38, 61, 0.62) 0%, rgba(18, 38, 61, 0.05) 50%),
    url("assets/gallery-wall.jpg") center 44% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--sky), var(--mint), var(--coral), var(--sky-strong));
}

.hero__content {
  position: relative;
  width: min(850px, 100%);
  padding-bottom: clamp(36px, 7vh, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro .eyebrow,
.artist .eyebrow,
.gallery .eyebrow,
.studio .eyebrow,
.shop-bridge .eyebrow,
.contact-section .eyebrow {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.intro h2,
.studio h2,
.shop-bridge h2,
.contact-section h2,
.shop-hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9.5vw, 7.4rem);
  font-weight: 700;
}

.hero__copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero__actions,
.studio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__notes {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__notes span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.section-band {
  background: var(--white);
}

.intro {
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.intro h2,
.artist h2,
.section-heading h2,
.studio h2,
.shop-bridge h2,
.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 700;
}

.intro__copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.artist {
  padding: clamp(62px, 8vw, 96px) 0;
}

.artist__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.artist__copy p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.artist-portrait {
  margin: 0;
}

.artist-portrait__placeholder {
  display: grid;
  min-height: clamp(320px, 40vw, 520px);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(223, 244, 255, 0.92), rgba(255, 255, 255, 0.86)),
    linear-gradient(45deg, transparent 0 48%, rgba(126, 200, 227, 0.28) 48% 52%, transparent 52% 100%);
  box-shadow: var(--shadow);
}

.artist-portrait__placeholder span {
  padding: 11px 14px;
  border: 1px solid rgba(45, 111, 148, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-portrait figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.gallery {
  padding: clamp(64px, 9vw, 108px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.art-card {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.art-card--wide {
  transform: translateY(28px);
}

.art-card:hover,
.art-card:focus-visible {
  box-shadow: 0 28px 70px rgba(33, 83, 116, 0.23);
}

.art-card:not(.art-card--wide):hover,
.art-card:not(.art-card--wide):focus-visible {
  transform: translateY(-4px);
}

.art-card--wide:hover,
.art-card--wide:focus-visible {
  transform: translateY(24px);
}

.art-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.art-card div {
  padding: 22px;
}

.tag {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.art-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.art-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.studio {
  padding: clamp(64px, 9vw, 108px) 0;
}

.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.studio__copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.studio-image {
  margin: 0;
}

.studio-image img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.studio-image figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.shop-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(62px, 8vw, 96px) 0;
}

.shop-bridge p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(62px, 8vw, 104px) 0;
}

.contact-section p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 39, 63, 0.26);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

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

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-secondary {
  background: transparent;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.form-status.is-success {
  color: #226f54;
}

.form-status.is-error {
  color: #9d3232;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer__grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer__grid nav {
  display: flex;
  gap: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer__grid a {
  text-decoration: none;
}

.shop-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 112px 18px 46px;
  background:
    linear-gradient(90deg, rgba(247, 252, 255, 0.96), rgba(223, 244, 255, 0.88)),
    url("assets/27ef21f7118beedcb65cdffe39189b109f7af4be-9.jpg") center / cover no-repeat;
}

.shop-panel {
  width: min(1120px, calc(100vw - 36px));
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.shop-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
}

.shop-panel p {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.shop-note {
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid rgba(45, 111, 148, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(223, 244, 255, 0.72);
  font-weight: 800;
}

.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.shop-preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.shop-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shop-preview-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.shop-preview-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.shop-preview-card p {
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header > .button {
    display: none;
  }

  .nav {
    position: absolute;
    inset: 73px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav a:hover {
    background: var(--sky);
  }

  .hero {
    min-height: 86vh;
    background:
      linear-gradient(90deg, rgba(18, 38, 61, 0.82) 0%, rgba(18, 38, 61, 0.54) 100%),
      linear-gradient(0deg, rgba(18, 38, 61, 0.65) 0%, rgba(18, 38, 61, 0.05) 52%),
      url("assets/gallery-wall.jpg") center / cover no-repeat;
  }

  .intro__grid,
  .artist__grid,
  .studio__grid,
  .shop-bridge,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .shop-preview-grid {
    grid-template-columns: 1fr;
  }

  .art-card--wide {
    transform: none;
  }

  .art-card--wide:hover,
  .art-card--wide:focus-visible {
    transform: translateY(-4px);
  }

  .art-card {
    grid-template-rows: auto auto;
  }

  .art-card img {
    height: 320px;
    min-height: 0;
  }

  .footer__grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__actions,
  .studio__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .footer__grid nav {
    flex-wrap: wrap;
  }
}
