:root {
  /* ============================================
     DESIGN STUDIO
     Change these values to restyle the whole site.
     Save the file, then refresh the website.
     ============================================ */

  /* Page background and text */
  --paper: #f6efe6;
  --paper-deep: #efe4d6;
  --ink: #2c241c;
  --ink-soft: #5f554a;

  /* Brand accents */
  --blush: #b76e79;
  --blush-soft: #e8cfc7;
  --sage: #6f7f62;
  --gold: #c4a574;
  --white: #fffcf8;

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Helvetica Neue", sans-serif;

  /* Layout */
  --wide: 1120px;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 207, 199, 0.55), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(111, 127, 98, 0.12), transparent 30%),
    var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
}

.shell {
  width: min(var(--wide), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 239, 230, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 28, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  color: var(--sage);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--blush);
}

.nav-order {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(44, 36, 28, 0.2);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
}

.hero,
.page-intro,
.band {
  padding: 4.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.hero-meta,
.footer-tag,
.form-fineprint,
.field-help,
.optional {
  color: var(--ink-soft);
}

.hero-card,
.card,
.empty-state,
.order-form,
.admin-shell {
  background: var(--white);
  border: 1px solid rgba(44, 36, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(44, 36, 28, 0.06);
}

.hero-card {
  padding: 1.75rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-list a,
.footer-contact a,
.footer-links a {
  text-decoration: none;
}

.band-soft {
  background: rgba(255, 252, 248, 0.55);
}

.section-head {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.5rem;
}

.card.product {
  background:
    linear-gradient(180deg, rgba(183, 110, 121, 0.08), transparent 42%),
    var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  color: var(--white);
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.button-quiet {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(44, 36, 28, 0.22);
}

.center-cta {
  text-align: center;
  margin: 2.25rem 0 0;
}

.gallery-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-grid img,
.admin-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
}

.form-wrap {
  max-width: 780px;
}

.order-form {
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

legend {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(44, 36, 28, 0.18);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: var(--paper);
  color: var(--ink);
}

.fields.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--paper);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.choice input {
  width: auto;
}

.line-item {
  display: grid;
  grid-template-columns: 1fr 90px 1.4fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-banner {
  background: #f6e1e1;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.form-banner-ok {
  background: #e4ecdd;
}

.optional {
  font-size: 0.8rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(44, 36, 28, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-note {
  width: min(var(--wide), calc(100% - 2rem));
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.admin-shell {
  width: min(900px, calc(100% - 2rem));
  margin: 3rem auto;
  padding: 2rem;
}

.admin-grid li {
  display: grid;
  gap: 0.5rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 4.4rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 30px rgba(44, 36, 28, 0.12);
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .card-grid.three,
  .fields.two,
  .footer-grid,
  .line-item {
    grid-template-columns: 1fr;
  }
}
