:root {
  --background: #fffaf0;
  --foreground: #171412;
  --primary: #e4432f;
  --secondary: #f3d465;
  --accent: #1d8a86;
  --border: #e4d7be;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 18, 0.035) 1px, transparent 1px),
    var(--background);
  background-size: 34px 34px;
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--foreground);
  background: var(--secondary);
  font-size: 1.45rem;
  font-weight: 900;
}
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand small { margin-top: 3px; color: #685f55; font-size: 0.78rem; }

nav { display: flex; align-items: center; gap: 8px; color: #3f3933; font-size: 0.92rem; font-weight: 650; }
nav a { padding: 9px 11px; border-radius: 999px; }
nav a:hover { background: rgba(29, 138, 134, 0.12); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 72px) 34px;
}

.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: #1d736f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 22px; font-size: clamp(3rem, 7.8vw, 7.4rem); line-height: 0.9; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.2vw, 4.3rem); line-height: 0.95; }
h3 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1; }
.hero-text, .section-heading p, .gallery-section p, .contact-panel p {
  color: #4c453f;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 20px; }
.next-reminder {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  max-width: 660px;
  border: 1px solid rgba(182, 56, 46, 0.16);
  border-radius: 26px;
  background: rgba(255, 253, 247, 0.82);
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(59, 45, 34, 0.08);
}
.next-reminder strong, .next-reminder span { display: block; }
.next-reminder strong { margin-bottom: 4px; color: #211d1a; font-size: 1.05rem; }
.next-reminder span { color: #594f46; line-height: 1.45; }
.reminder-icon { font-size: 1.25rem; line-height: 1; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--foreground);
  border-radius: 0;
  padding: 13px 18px;
  font: inherit;
  font-weight: 850;
  box-shadow: 5px 5px 0 #171412;
  cursor: pointer;
}
.button.primary { background: var(--primary); color: #fffaf0; }
.button.secondary { background: #fff; }
.button:disabled { cursor: progress; opacity: 0.72; }

.quick-facts { display: flex; flex-wrap: wrap; gap: 9px; }
.quick-facts span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 12px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 2px solid var(--foreground);
  background: #f6edda;
  box-shadow: 10px 10px 0 #171412;
}
.hero-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 280px;
  border: 2px solid var(--foreground);
  background: #fffaf0;
  padding: 16px;
  box-shadow: 5px 5px 0 #171412;
}
.floating-note strong, .floating-note span { display: block; }
.floating-note span { margin-top: 5px; color: #594f46; line-height: 1.35; }

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--foreground);
  background: #171412;
  color: #fffaf0;
}
.intro-band div { display: grid; gap: 8px; padding: clamp(20px, 3vw, 34px); border-right: 1px solid rgba(255, 250, 240, 0.2); }
.intro-band strong { font-size: 1.15rem; }
.intro-band span { color: #e8dcc9; line-height: 1.5; }

.section { padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 850px; }
.section-heading.compact { max-width: 980px; margin-bottom: 28px; }
.split, .pricing-section, .contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}
.format-grid { display: grid; gap: 18px; }
.format-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  border: 2px solid var(--foreground);
  background: #fff;
  padding: 16px;
  box-shadow: 7px 7px 0 #171412;
}
.format-card.accent { background: #e7f6f4; }
.format-card img { width: 100%; height: 100%; min-height: 245px; object-fit: cover; border: 1px solid var(--foreground); }
.tag {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid var(--foreground);
  background: var(--secondary);
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.format-card p, .city-card p, .price-list p { color: #554d45; line-height: 1.55; }
.format-card ul { display: grid; gap: 9px; margin: 16px 0 0; padding-left: 1.2rem; font-weight: 650; }

.cities-section, .legal-section { background: #fff; border-block: 1px solid var(--border); }
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.city-card {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  border: 2px solid var(--foreground);
  background: #fffaf0;
  padding: 18px;
}
.city-card span { margin: 18px 0 8px; color: #1d736f; font-size: 0.78rem; font-weight: 850; line-height: 1.35; text-transform: uppercase; }
.city-card h3 { font-size: 1.45rem; }
.city-card a { margin-top: auto; font-weight: 850; }

.schedule-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(240, 199, 107, 0.26), transparent 24rem),
    #fffdf7;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(33, 29, 26, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 22px 65px rgba(61, 46, 33, 0.1);
}
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 17px 19px; border-bottom: 1px solid rgba(33, 29, 26, 0.1); text-align: left; vertical-align: top; }
thead th { background: rgba(44, 129, 120, 0.12); color: #1f5f59; font-size: 0.85rem; text-transform: uppercase; }
tbody th { color: #211d1a; font-weight: 900; }
tbody td { color: #51483f; font-weight: 690; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.notice-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; margin-top: 18px; }
.notice-grid article {
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 28px;
  background: rgba(251, 246, 234, 0.88);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(59, 45, 34, 0.08);
}
.notice-grid strong { display: block; margin-bottom: 8px; color: #211d1a; font-size: 1.12rem; }
.notice-grid p, .stage-note { color: #594f46; line-height: 1.6; }
.stage-section {
  background:
    linear-gradient(180deg, rgba(231, 246, 244, 0.9), rgba(255, 253, 247, 0.92)),
    #e7f6f4;
}
.stage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.stage-card {
  min-height: 310px;
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.92);
  padding: 24px;
  box-shadow: 0 18px 55px rgba(59, 45, 34, 0.1);
}
.stage-card span {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(182, 56, 46, 0.12);
  padding: 7px 11px;
  color: #9f342b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.stage-card ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.stage-card li { border-top: 1px solid rgba(33, 29, 26, 0.1); padding-top: 10px; color: #51483f; font-weight: 760; }
.stage-note { max-width: 820px; margin: 18px 0 0; font-weight: 760; }

.price-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.price-list article {
  min-height: 178px;
  border: 2px solid var(--foreground);
  background: #fff;
  padding: 20px;
  box-shadow: 5px 5px 0 #171412;
}
.price-list span, .price-list strong { display: block; }
.price-list span { color: #1d736f; font-weight: 850; }
.price-list strong { margin: 10px 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 0.95; }

.gift-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 199, 107, 0.34), transparent 28rem),
    #fffdf7;
}
.gift-card-preview { justify-self: center; width: min(420px, 100%); }
.gift-card-preview img {
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow: 0 28px 76px rgba(69, 47, 28, 0.22);
}
.gift-copy { max-width: 820px; }
.gift-copy p {
  color: #51483f;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}
.gift-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.gift-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 999px;
  background: rgba(251, 246, 234, 0.9);
  padding: 9px 13px;
  color: #423930;
  font-weight: 800;
}

.gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 199, 107, 0.2), transparent 28rem),
    linear-gradient(180deg, #1f3935 0%, #17302d 100%);
  border-block: 0;
  color: #fffdf7;
}
.gallery-heading { max-width: 1080px; margin-bottom: 32px; }
.gallery-heading p { max-width: 860px; }
.work-carousel {
  display: grid;
  grid-auto-columns: minmax(320px, 430px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  margin-inline: calc(clamp(18px, 5vw, 72px) * -1);
  padding: 8px clamp(18px, 5vw, 72px) 30px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
}
.work-carousel::-webkit-scrollbar { height: 10px; }
.work-carousel::-webkit-scrollbar-track { background: rgba(255, 253, 247, 0.14); border-radius: 999px; }
.work-carousel::-webkit-scrollbar-thumb { background: rgba(240, 199, 107, 0.78); border-radius: 999px; }
.work-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 30px;
  background: #fffdf7;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}
.work-media {
  display: grid;
  min-height: 410px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(240, 199, 107, 0.16), rgba(44, 129, 120, 0.1)),
    #fbf6ea;
}
.work-media img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  padding: 14px;
}
.work-copy {
  min-height: 180px;
  border-top: 1px solid rgba(33, 29, 26, 0.1);
  background: #fffdf7;
  padding: 22px;
}
.work-card span {
  display: block;
  margin-bottom: 9px;
  color: #211d1a;
  font-size: clamp(1.24rem, 1.8vw, 1.72rem);
  font-weight: 900;
  line-height: 1.03;
}
.work-card p {
  margin: 0;
  color: #594f46;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.48;
}

.contact-panel { background: var(--accent); color: #fff; border-block: 2px solid var(--foreground); }
.contact-intro p, .contact-intro .eyebrow { color: #e7fffb; }
.contact-form {
  border: 2px solid #171412;
  background: #fffaf0;
  color: #171412;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 8px 8px 0 #171412;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: #2a2521; font-weight: 850; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 2px solid #171412;
  border-radius: 0;
  background: #fff;
  color: #171412;
  padding: 12px 13px;
  font: inherit;
  font-weight: 600;
}
.form-note { margin: 14px 0 18px; color: #685f55; font-size: 0.95rem; line-height: 1.45; }
.form-status { margin-bottom: 16px; color: #171412; font-weight: 850; }
.form-status.success { border: 2px solid #171412; background: #dff7e8; padding: 14px 16px; }
.form-status.error { border: 2px solid #171412; background: #ffe1d9; padding: 14px 16px; }

.legal-list { display: grid; gap: 10px; max-width: 1080px; }
.legal-list details { border: 2px solid #171412; background: #fffaf0; }
.legal-list summary { cursor: pointer; padding: 18px 20px; color: #171412; font-size: 1.08rem; font-weight: 900; }
.legal-list p { margin: 0; border-top: 1px solid var(--border); padding: 0 20px 20px; color: #4c453f; line-height: 1.65; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px) 42px;
  color: #4c453f;
}
footer strong, footer span { display: block; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-weight: 750; }

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100vw - 36px));
  border: 2px solid #171412;
  background: #fffaf0;
  padding: 18px;
  box-shadow: 7px 7px 0 #171412;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: #594f46; font-size: 0.95rem; line-height: 1.45; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  min-height: 42px;
  border: 2px solid #171412;
  background: #fff;
  padding: 9px 13px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.cookie-actions button:last-child { background: var(--secondary); }

@media (max-width: 1120px) {
  .hero, .split, .pricing-section, .gift-section, .contact-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  h1 { font-size: clamp(2.55rem, 16vw, 4.4rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual, .hero-visual img { min-height: 420px; }
  .floating-note { left: 14px; right: 14px; max-width: none; }
  .gift-card-preview { width: min(340px, 100%); }
  .work-carousel { grid-auto-columns: minmax(286px, 86vw); }
  .work-card { min-height: 520px; }
  .work-media { min-height: 335px; }
  .work-media img { height: 335px; }
  .intro-band, .format-card, .city-grid, .price-list, .notice-grid, .form-grid, .cookie-banner { grid-template-columns: 1fr; }
  .intro-band div { border-right: 0; border-bottom: 1px solid rgba(255, 250, 240, 0.2); }
  footer { flex-direction: column; }
}

/* Redesign overrides: softer, more inviting visual direction. */
:root {
  --background: #fbf6ea;
  --foreground: #211d1a;
  --primary: #b6382e;
  --secondary: #f0c76b;
  --accent: #2c8178;
  --border: #decfb7;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 199, 107, 0.36), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(44, 129, 120, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #fbf6ea 52%, #f4ead9 100%);
}

.site-header {
  margin: 14px clamp(14px, 4vw, 44px) 0;
  padding: 12px 14px;
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 18px 55px rgba(63, 48, 34, 0.1);
  backdrop-filter: blur(20px);
}

.brand {
  min-width: 250px;
}

.brand-mark {
  border: 0;
  border-radius: 50%;
  background: #211d1a;
  color: #fffdf7;
}

nav {
  gap: 4px;
  color: #4f463e;
  font-weight: 720;
}

nav a {
  padding: 10px 13px;
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 100px) clamp(18px, 5vw, 74px) 52px;
}

.eyebrow {
  color: #9f342b;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 8vw, 8.2rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.75rem);
  line-height: 0.94;
}

.hero-text,
.section-heading p,
.gallery-section p,
.contact-panel p {
  color: #51483f;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.button {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(65, 46, 33, 0.14);
}

.button.secondary {
  border: 1px solid rgba(33, 29, 26, 0.12);
  background: rgba(255, 253, 247, 0.86);
}

.quick-facts span {
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: #423930;
}

.hero-visual {
  min-height: 640px;
  border: 0;
  border-radius: 42px;
  background: #fffaf0;
  box-shadow: 0 28px 80px rgba(56, 43, 31, 0.2);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.34));
  content: '';
}

.hero-visual img {
  min-height: 640px;
  object-fit: contain;
}

.floating-note {
  z-index: 2;
  right: 22px;
  bottom: 22px;
  max-width: 310px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 16px 42px rgba(33, 29, 26, 0.2);
  backdrop-filter: blur(14px);
}

.intro-band {
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 74px) clamp(50px, 6vw, 78px);
  border-block: 0;
  background: transparent;
  color: #211d1a;
}

.intro-band div {
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 18px 45px rgba(59, 45, 34, 0.08);
}

.intro-band span {
  color: #62574d;
}

.split {
  grid-template-columns: 0.72fr 1.28fr;
}

.format-card,
.city-card,
.price-list article {
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 32px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 22px 65px rgba(61, 46, 33, 0.11);
}

.format-card {
  grid-template-columns: 235px minmax(0, 1fr);
  padding: 14px;
}

.format-card.accent {
  background: rgba(231, 246, 244, 0.9);
}

.format-card img {
  min-height: 270px;
  border: 0;
  border-radius: 24px;
}

.format-card div {
  padding: 14px 12px 14px 0;
}

.tag {
  border: 0;
  border-radius: 999px;
  background: rgba(240, 199, 107, 0.76);
  color: #4d3822;
}

.cities-section,
.legal-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(244, 234, 217, 0.92)),
    #fffdf7;
}

.city-card {
  border-radius: 28px;
}

.city-card span,
.price-list span,
.city-card a {
  color: #2c8178;
}

.price-list article:nth-child(2) {
  background: rgba(240, 199, 107, 0.28);
}

.price-list article:nth-child(4) {
  background: rgba(44, 129, 120, 0.12);
}

.gallery-section {
  border-block: 0;
  background: #1f3935;
  color: #fffdf7;
}

.gallery-section img {
  border: 0;
  border-radius: 34px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.gallery-section .eyebrow,
.gallery-section p {
  color: #dcece8;
}

.gallery-section .work-card p {
  color: #f3eadc;
}

.gallery-section .work-media img {
  border-radius: 0;
  box-shadow: none;
}

.gallery-section .work-copy p {
  color: #594f46;
}

.contact-panel {
  border-block: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 199, 107, 0.26), transparent 28rem),
    #2c8178;
}

.contact-form {
  border: 1px solid rgba(33, 29, 26, 0.12);
  border-radius: 34px;
  background: #fffdf7;
  box-shadow: 0 24px 70px rgba(20, 55, 50, 0.28);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(33, 29, 26, 0.16);
  border-radius: 18px;
  background: #fbf6ea;
}

.form-status.success,
.form-status.error {
  border: 0;
  border-radius: 20px;
}

.legal-list details {
  border: 1px solid rgba(33, 29, 26, 0.12);
  border-radius: 22px;
  background: #fbf6ea;
}

.cookie-banner {
  border: 1px solid rgba(33, 29, 26, 0.14);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 22px 66px rgba(45, 35, 26, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-actions button {
  border: 1px solid rgba(33, 29, 26, 0.16);
  border-radius: 999px;
}

.artist-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 199, 107, 0.32), transparent 26rem),
    #fffdf7;
}

.artist-photo {
  position: relative;
}

.artist-photo::before {
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: 0;
  border-radius: 38px;
  background: rgba(44, 129, 120, 0.16);
  content: '';
}

.artist-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 28px 78px rgba(58, 44, 34, 0.18);
}

.artist-copy {
  max-width: 860px;
}

.artist-copy p {
  color: #51483f;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.72;
}

.artist-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.artist-stats a {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(33, 29, 26, 0.1);
  border-radius: 26px;
  background: #fbf6ea;
  padding: 20px;
  box-shadow: 0 16px 42px rgba(59, 45, 34, 0.08);
}

.artist-stats strong {
  color: #211d1a;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.artist-stats span {
  color: #665b51;
  font-weight: 760;
}

@media (max-width: 1120px) {
  .artist-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 26px;
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
    border-radius: 30px;
  }

  .artist-stats {
    grid-template-columns: 1fr;
  }
}
