:root {
  --bg: #fffaf6;
  --bg-soft: #f7ede5;
  --surface: rgba(255, 250, 246, 0.72);
  --surface-strong: #fffdfb;
  --text: #3d2a23;
  --text-soft: #71574d;
  --accent: #d7816a;
  --accent-deep: #a85043;
  --gold: #d9b36c;
  --line: rgba(95, 61, 48, 0.12);
  --shadow: 0 24px 60px rgba(107, 67, 49, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 179, 108, 0.20), transparent 35%),
    radial-gradient(circle at right 20%, rgba(215, 129, 106, 0.18), transparent 26%),
    linear-gradient(180deg, #fffaf6 0%, #fff5ef 48%, #fffdfb 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(61, 42, 35, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-text span:last-child {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.section {
  padding: 6.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 110px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.94;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.story-card p,
.order-copy p,
.order-points span,
.form-note,
.site-footer {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 58ch;
  margin: 1.5rem 0 0;
}

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

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

.hero-highlights div,
.process-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.72);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 1rem 1.1rem;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-highlights span {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.3rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: white;
  box-shadow: 0 14px 28px rgba(168, 80, 67, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.button-full {
  width: 100%;
}

.hero-visual {
  position: relative;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 237, 229, 0.92));
  border: 1px solid rgba(168, 80, 67, 0.12);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.floating-note {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 251, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-note span {
  font-weight: 700;
}

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

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.process-card {
  padding: 1.6rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 80, 67, 0.12), rgba(217, 179, 108, 0.2));
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card,
.gallery-card,
.order-form,
.accent-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 1.75rem;
}

.story-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(217, 179, 108, 0.16), rgba(255, 255, 255, 0.78)),
    var(--surface);
}

.accent-label {
  margin-top: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  font-size: 0.78rem;
}

.accent-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.photo-dropzone {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.3rem;
  border: 1px dashed rgba(168, 80, 67, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.78);
}

.photo-dropzone strong {
  display: block;
  margin-bottom: 0.35rem;
}

.photo-dropzone p {
  margin: 0;
  color: var(--text-soft);
}

.photo-path {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(215, 129, 106, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(107, 67, 49, 0.18);
}

.gallery-card:focus-visible {
  outline: 2px solid rgba(168, 80, 67, 0.35);
  outline-offset: 4px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-weight: 700;
}

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(61, 42, 35, 0.72);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover .gallery-zoom,
.gallery-card:focus-visible .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(32, 20, 16, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  width: min(100%, 960px);
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin-top: 0.9rem;
  text-align: center;
  color: white;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.order {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.order-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.order-points div {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.order-points strong {
  display: block;
  margin-bottom: 0.3rem;
}

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

.order-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(113, 87, 77, 0.18);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(215, 129, 106, 0.28);
  border-color: rgba(168, 80, 67, 0.3);
}

.site-footer {
  padding: 0 0 3rem;
  text-align: center;
}

.contact-strip {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.6rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.contact-link.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero,
  .order,
  .story-grid,
  .gallery-grid,
  .hero-highlights,
  .process-grid,
  .contact-panel,
  .photo-dropzone {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 3rem;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    border-radius: 24px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    max-width: 100%;
  }

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

  .gallery-zoom {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-height: 72vh;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }
}
