:root {
  --ink: #272329;
  --paper: #fffdfb;
  --rose: #8f294c;
  --rose-dark: #5e1731;
  --gold: #b78a43;
  --sage: #567265;
  --sky: #48758d;
  --line: #ddd5cf;
  --soft: #f3eeea;
  --lavender-paper: #fff4f6;
  --lavender-frame: #d18a95;
  --lavender-wash: linear-gradient(
    90deg,
    rgba(255, 244, 246, 0.72) 0%,
    rgba(255, 244, 246, 0.58) 38%,
    rgba(255, 244, 246, 0.22) 62%,
    rgba(255, 244, 246, 0.04) 100%
  );
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--rose-dark);
}

.visually-hidden {
  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: sticky;
  top: 0;
  z-index: 5000;
  border-bottom: 1px solid var(--line);
  background: #fffdfb;
  box-shadow: 0 2px 12px rgba(39, 35, 41, 0.08);
  isolation: isolate;
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: #8f2f55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  position: relative;
}

.site-nav a,
.nav-dropdown summary {
  padding: 0.45rem 0.65rem;
  color: #7f3e1d;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"],
.nav-dropdown summary:hover,
.nav-dropdown summary:focus {
  color: #b78a43;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: " v";
  color: var(--gold);
  font-size: 0.75rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 7000;
  min-width: 270px;
  padding: 0.45rem;
  display: grid;
  gap: 0.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdfb;
  box-shadow: 0 16px 34px rgba(39, 35, 41, 0.16);
}

.nav-dropdown-menu a {
  padding: 0.6rem 0.7rem;
  white-space: nowrap;
}

.hero {
  min-height: clamp(430px, 40vw, 640px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-inner,
.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: auto;
}

.hero-copy {
  max-width: 610px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin: 0;
  color: var(--rose-dark);
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  font-weight: 500;
}

.hero h1 {
  max-width: 8ch;
}

.lead {
  max-width: 620px;
  margin: 1.25rem 0 0;
  font-size: 1.15rem;
}

.actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 46px;
  padding: 0.7rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rose);
  border-radius: 5px;
  color: #fff;
  background: var(--rose);
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--rose-dark);
  background: transparent;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--rose-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.section-heading p {
  margin-bottom: 0;
}

.brand-grid,
.service-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  min-height: 310px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-top: 5px solid var(--rose);
  border-radius: 6px;
  background: #fff;
}

.brand-card:nth-child(2) {
  border-top-color: var(--gold);
}

.brand-card:nth-child(3) {
  border-top-color: var(--sky);
}

.brand-card h3,
.service h3 {
  margin: 0;
  font-size: 1.45rem;
}

.brand-card a {
  color: var(--rose-dark);
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.sub-hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.sub-hero h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

.brand-banner {
  width: min(820px, 100%);
  max-height: 250px;
  margin-bottom: 2rem;
  object-fit: contain;
  object-position: left center;
}

.voiceovers-hero {
  min-height: clamp(430px, 40vw, 640px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.voiceovers-hero-copy {
  max-width: 600px;
  padding: 5rem 0;
}

.voiceovers-hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
}

.iowarose-hero {
  min-height: clamp(430px, 40vw, 640px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.iowarose-hero .specialty-hero-copy {
  max-width: 760px;
  padding-top: 0;
  padding-bottom: 0;
}

.iowarose-hero h1 {
  display: inline-block;
  margin: 0;
  padding: 0.28rem 0.65rem 0.38rem;
  border: 2px solid var(--lavender-frame);
  color: var(--rose-dark);
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 3px 14px rgba(39, 35, 41, 0.12);
}

.iowarose-hero .eyebrow,
.iowarose-hero .hero-tagline,
.iowarose-hero .lead {
  text-shadow: 0 1px 2px rgba(255, 253, 251, 0.92);
}

.designs-hero {
  min-height: clamp(430px, 40vw, 640px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.designs-banner {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.designs-banner img {
  width: 100%;
  max-width: none;
  margin: auto;
  height: auto;
  object-fit: contain;
}

.designs-intro {
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.designs-intro h2 {
  max-width: 800px;
  margin: 0;
  color: var(--rose-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.visual-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --hero-frame-width: clamp(5px, 0.65vw, 10px);
  --hero-inner-line: 3px;
  --hero-wash: var(--lavender-wash);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #f9d9df 0%, #d18a95 42%, #f5c9d0 72%, #c97985 100%);
}

.visual-hero-image {
  position: absolute;
  inset: calc(var(--hero-frame-width) + var(--hero-inner-line));
  z-index: 0;
  width: calc(100% - ((var(--hero-frame-width) + var(--hero-inner-line)) * 2));
  height: calc(100% - ((var(--hero-frame-width) + var(--hero-inner-line)) * 2));
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.designs-brand-board-banner {
  position: relative;
  height: clamp(360px, 46vw, 610px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  --hero-frame-width: clamp(5px, 0.65vw, 10px);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #f9d9df 0%, #d18a95 42%, #f5c9d0 72%, #c97985 100%);
}

.designs-brand-board-banner img {
  display: block;
}

.brand-logo-hero.visual-hero {
  min-height: clamp(360px, 46vw, 610px);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #f9d9df 0%, #d18a95 42%, #f5c9d0 72%, #c97985 100%);
}

.brand-logo-hero .visual-hero-content {
  display: none;
}

.visual-hero-image.brand-direct-image {
  object-fit: cover;
  object-position: center;
}

.brand-logo-hero .brand-direct-image,
.designs-brand-board-banner .brand-direct-image {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(135deg, #f9d9df 0%, #efbcc5 34%, #f7d9de 62%, #d18a95 100%);
}

.visual-hero-image.veronarose-direct-header {
  object-position: center 56%;
}

.visual-hero-image.voiceovers-direct-header {
  object-position: center 55%;
}

.iowarose-hero .brand-direct-image {
  object-position: center 61%;
}

.designs-brand-board-banner .brand-direct-image {
  position: absolute;
  inset: var(--hero-frame-width);
  z-index: 0;
  width: calc(100% - (var(--hero-frame-width) * 2));
  height: calc(100% - (var(--hero-frame-width) * 2));
  max-width: none;
  object-fit: fill;
  object-position: center;
}

@media (min-width: 821px) {
  .brand-logo-hero.visual-hero,
  .designs-brand-board-banner {
    width: min(var(--max), calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
  }
}

.designs-brand-board-banner::after {
  content: "";
  position: absolute;
  inset: var(--hero-frame-width);
  z-index: 2;
  border: 3px solid rgba(255, 252, 251, 0.95);
  box-shadow:
    inset 0 0 0 2px rgba(180, 110, 84, 0.68),
    0 0 0 var(--hero-frame-width) rgba(209, 138, 149, 0.92);
  pointer-events: none;
}

.brand-logo-hero::before {
  display: none;
}

.visual-hero::before {
  content: "";
  position: absolute;
  inset: calc(var(--hero-frame-width) + var(--hero-inner-line));
  z-index: 1;
  background: var(--hero-wash);
  pointer-events: none;
}

.veronarose-hero {
  --hero-wash: linear-gradient(
    90deg,
    rgba(248, 242, 251, 0.38) 0%,
    rgba(248, 242, 251, 0.24) 38%,
    rgba(248, 242, 251, 0.08) 68%,
    rgba(248, 242, 251, 0) 100%
  );
}

.visual-hero::after {
  content: "";
  position: absolute;
  inset: var(--hero-frame-width);
  z-index: 2;
  border: 3px solid rgba(255, 252, 251, 0.95);
  box-shadow:
    inset 0 0 0 2px rgba(180, 110, 84, 0.68),
    0 0 0 var(--hero-frame-width) rgba(209, 138, 149, 0.96);
  pointer-events: none;
}

.brand-logo-hero.visual-hero::after {
  border-color: rgba(255, 252, 251, 0.95);
  box-shadow:
    inset 0 0 0 2px rgba(180, 110, 84, 0.68),
    0 0 0 var(--hero-frame-width) rgba(209, 138, 149, 0.92);
}

.veronarose-hero .hero-copy {
  color: #7d3f1d;
  text-shadow: 0 1px 14px rgba(255, 244, 236, 0.72);
}

.veronarose-hero h1 {
  color: #9b4e25;
}

.veronarose-hero .lead {
  color: #7f3e1d;
}

.veronarose-hero .eyebrow {
  color: #8f2f55;
}

.visual-hero-content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-left: calc(var(--hero-frame-width) + 1rem);
  padding-right: calc(var(--hero-frame-width) + 1rem);
  padding-top: calc(var(--hero-frame-width) + var(--hero-inner-line) + 1.5rem);
  padding-bottom: calc(var(--hero-frame-width) + var(--hero-inner-line) + 1.5rem);
}

.visual-hero h1,
.visual-hero .hero-tagline,
.visual-hero .lead {
  color: var(--lavender-frame);
}

.specialty-hero-copy {
  max-width: 610px;
  padding: 5rem 0;
}

.specialty-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
}

.hero-tagline {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.service {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.service p {
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-copy p {
  max-width: 780px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-portrait {
  width: min(320px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border: 8px solid rgba(209, 138, 149, 0.92);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #f9d9df 0%, #c97985 42%, #f5c9d0 72%, #b86472 100%);
  padding: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 252, 251, 0.95),
    0 0 0 2px rgba(180, 110, 84, 0.42),
    0 18px 34px rgba(45, 32, 51, 0.14);
  object-fit: cover;
}

.protected-photo {
  position: relative;
  width: min(320px, 100%);
  justify-self: end;
}

.protected-photo .about-portrait {
  width: 100%;
}

.protected-photo::after,
.protected-gallery .gallery-image-wrap::after {
  content: "Copyright Linda Silver / Verona Rose. No use, copy, print, AI training, resale, or reproduction.";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #fff;
  background: rgba(72, 41, 88, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.protected-gallery .gallery-image-wrap::after {
  transform: rotate(-7deg);
  bottom: 44%;
  background: rgba(72, 41, 88, 0.54);
}

.iowarose-protected-gallery .gallery-image-wrap::after {
  content: "Copyright Linda Silver / Verona Rose / Iowa Rose Productions. No use, copy, print, AI training, resale, or reproduction.";
  position: absolute;
  left: -0.35rem;
  right: -0.35rem;
  bottom: 16%;
  z-index: 3;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #fff;
  background: rgba(72, 41, 88, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-6deg);
  transform-origin: center;
}

.preview-note {
  margin-top: 1rem;
  color: var(--rose-dark);
  font-weight: 700;
}

.rights-notice {
  margin: 1rem 0 0;
  padding: 1rem;
  border-left: 5px solid var(--lavender-frame);
  color: var(--rose-dark);
  background: #fff;
  font-weight: 700;
}

.intro-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.intro-panel h2 {
  margin-top: 0;
  color: var(--rose-dark);
}

.workstation-card {
  min-height: 260px;
}

.status-note {
  margin: 1rem 0 0;
  color: var(--rose-dark);
  font-weight: 800;
}

.policy-sections {
  display: grid;
  gap: 1.25rem;
}

.policy-block {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.policy-block h2 {
  margin-top: 0;
  color: var(--rose-dark);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.policy-block p:last-child,
.policy-block ul:last-child {
  margin-bottom: 0;
}

.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.stripe-cart-app {
  margin-top: 2rem;
}

.stripe-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.25rem;
  align-items: start;
}

.stripe-product-list,
.stripe-cart-panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.stripe-cart-heading h3,
.stripe-cart-panel h3 {
  margin: 0;
  color: var(--rose-dark);
}

.stripe-cart-heading p:last-child {
  margin-bottom: 0;
}

.stripe-product-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stripe-product-card {
  min-height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--lavender-paper);
}

.stripe-product-card h3 {
  margin: 0.45rem 0 0;
  color: var(--rose-dark);
  font-size: 1.05rem;
}

.stripe-product-category,
.stripe-product-price {
  margin: 0.35rem 0 0;
  color: var(--lavender-frame);
  font-weight: 800;
}

.stripe-product-card button[disabled] {
  opacity: 0.65;
  cursor: default;
}

.stripe-cart-panel {
  position: sticky;
  top: 92px;
}

.stripe-cart-items {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.stripe-cart-items li {
  padding: 0.65rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.stripe-cart-items span {
  min-width: 0;
}

.stripe-cart-remove {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--rose-dark);
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.stripe-cart-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--rose-dark);
  font-size: 1.1rem;
}

.stripe-checkout-button {
  width: 100%;
}

.stripe-cart-note {
  margin-bottom: 0;
  color: #665e59;
  font-size: 0.9rem;
}

.shop-preview-section {
  margin-top: 2rem;
}

.shop-preview-section > h3 {
  margin: 0 0 1rem;
  color: var(--rose-dark);
  font-size: 1.35rem;
}

.shop-preview-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.shop-preview-card h3 {
  margin: 0;
  color: var(--rose-dark);
}

.shop-preview-meta {
  margin: 0;
  color: var(--lavender-frame);
  font-weight: 800;
}

.shop-preview-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.shop-preview-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shop-preview-status {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background: var(--lavender-frame);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.agreement-preview {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 2px solid var(--lavender-frame);
  border-radius: 6px;
  background: #fff;
}

.agreement-preview h3 {
  margin: 0 0 0.75rem;
  color: var(--rose-dark);
}

.agreement-preview ul {
  margin: 0.75rem 0;
  padding-left: 1.2rem;
}

.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0;
  color: var(--rose-dark);
  font-weight: 800;
}

.agreement-check input {
  margin-top: 0.2rem;
  transform: scale(1.15);
}

.media-frame {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #9e9188;
  border-radius: 6px;
  background: #f8f5f2;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder {
  max-width: 260px;
  padding: 1rem;
  color: #635b57;
  text-align: center;
}

.section-links {
  margin: 0 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.section-links a {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--rose);
  border-radius: 5px;
  color: var(--rose-dark);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.section-links a:hover,
.section-links a:focus {
  color: #fff;
  background: var(--rose-dark);
}

.gallery-group {
  padding: 0 0 4rem;
  scroll-margin-top: 100px;
}

.gallery-group:last-child {
  padding-bottom: 0;
}

.gallery-heading {
  margin-bottom: 1.3rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.gallery-heading h3 {
  margin: 0 0 0.8rem;
  color: var(--rose-dark);
  font-size: 2rem;
}

.gallery-heading p {
  margin: 0 0 0.8rem;
  color: #665e59;
}

.gallery-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-single-preview {
  grid-template-columns: minmax(280px, min(100%, 720px));
  justify-content: center;
}

.design-notice {
  max-width: 760px;
  margin: -0.5rem 0 2rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid #9b74a2;
  background: #fff;
  color: #463744;
  font-weight: 700;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.gallery-image-wrap {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8e2dd;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.iowarose-protected-gallery .gallery-image-wrap {
  min-height: 0;
  display: block;
  background: #fff;
}

.iowarose-protected-gallery .gallery-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}

.preview-mark {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  max-width: calc(100% - 1.3rem);
  padding: 0.32rem 0.5rem;
  border-radius: 3px;
  color: #fff;
  background: rgba(94, 23, 49, 0.82);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.iowarose-protected-gallery .preview-mark {
  position: static;
  display: block;
  max-width: none;
  padding: 0.45rem 0.65rem;
  border-radius: 0;
  color: #fff;
  background: rgba(94, 23, 49, 0.9);
  text-align: center;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.restoration-label {
  display: block;
  margin-top: 0.25rem;
  color: #6e4e82;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-shell {
  max-width: 900px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b181b;
}

.video-shell video {
  width: 100%;
  max-height: 620px;
  display: block;
  background: #000;
}

.video-caption {
  padding: 1.15rem 1.35rem;
  color: var(--ink);
  background: #fff;
}

.video-caption h3,
.video-caption p {
  margin: 0;
}

.video-caption p {
  margin-top: 0.35rem;
}

.audio-list {
  max-width: 850px;
}

.audio-row {
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.audio-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

audio {
  width: 100%;
}

.note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: #fff8e9;
}

.contact-band {
  color: #fff;
  background: var(--rose-dark);
}

.contact-band h2 {
  color: #fff;
}

.contact-band a {
  color: #fff;
}

.site-footer {
  padding: 2rem 0;
  color: #4d4648;
  background: #e8e1dc;
  font-size: 0.9rem;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .nav-wrap {
    padding: 0.8rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .hero {
    min-height: 500px;
    background-position: 38% center;
  }

  .voiceovers-hero {
    min-height: 520px;
  }

  .hero-copy {
    max-width: 70%;
  }

  .voiceovers-hero-copy {
    max-width: 70%;
  }

  .specialty-hero-copy {
    max-width: 70%;
  }

  .visual-hero-image {
    object-position: 38% center;
  }

  .brand-grid,
  .service-grid,
  .about-layout,
  .stripe-cart-layout,
  .shop-preview-grid {
    grid-template-columns: 1fr;
  }

  .stripe-cart-panel {
    position: static;
  }

  .stripe-product-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    justify-self: start;
  }

  .protected-photo {
    justify-self: start;
  }

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

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .brand-card {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .site-nav a,
  .nav-dropdown summary {
    padding-left: 0;
    padding-right: 0.8rem;
  }

  .nav-dropdown-menu a {
    padding-left: 0.7rem;
  }

  .hero-copy,
  .section,
  .sub-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero {
    min-height: 520px;
    background-position: 32% center;
  }

  .voiceovers-hero {
    min-height: 540px;
  }

  .hero-copy {
    max-width: 76%;
  }

  .voiceovers-hero-copy {
    max-width: 78%;
  }

  .specialty-hero-copy {
    max-width: 78%;
  }

  .visual-hero-image {
    object-position: 30% center;
  }

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

  .voiceovers-hero h1 {
    font-size: 2.7rem;
  }

  .specialty-hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .voiceovers-hero .lead {
    font-size: 1rem;
  }

  .gallery-image-wrap {
    min-height: 230px;
  }

  .preview-mark {
    font-size: 0.62rem;
  }

  .audio-row {
    grid-template-columns: 1fr;
  }
}
