:root {
  --bg: #f5e8c8;
  --bg-soft: #fff6df;
  --accent: #D9454C;
  --accent-dark: #a92f37;
  --ink: #2f2620;
  --muted: #705f55;
  --paper: #fffaf0;
  --line: rgba(47, 38, 32, 0.14);
  --shadow: 0 24px 70px rgba(47, 38, 32, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 69, 76, 0.13), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, #f9edce 48%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(47, 38, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 38, 32, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(217, 69, 76, 0.1);
  color: var(--accent-dark);
  font-size: 0.92em;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 6rem 0;
}

.section-soft {
  background: rgba(255, 250, 240, 0.55);
  border-block: 1px solid var(--line);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.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: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 232, 200, 0.86);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(47, 38, 32, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-top: -0.25rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 22px rgba(217, 69, 76, 0.28);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a[aria-current="page"] {
  background: rgba(217, 69, 76, 0.1);
  color: var(--accent-dark);
}

.menu a:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
}

.hero-grid,
.page-hero-grid,
.contact-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-dark);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 35px rgba(217, 69, 76, 0.26);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  border-color: rgba(47, 38, 32, 0.16);
  background: rgba(255, 250, 240, 0.75);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 2.1rem 0 0;
  list-style: none;
}

.trust-list li {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 10px solid rgba(255, 250, 240, 0.88);
  border-radius: 36px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  inset: 5% 9% 10% 7%;
  transform: rotate(-3deg);
}

.photo-card-small {
  width: 44%;
  height: 34%;
  border-radius: 28px;
}

.photo-card-small.top {
  top: 1%;
  right: 0;
  transform: rotate(5deg);
}

.photo-card-small.bottom {
  left: 0;
  bottom: 0;
  transform: rotate(4deg);
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-title p,
.section-heading p,
.content-stack p,
.catalog-note p,
.cta-panel p,
.instagram-panel p {
  color: var(--muted);
}

.content-stack {
  font-size: 1.07rem;
}

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

.feature-card,
.process-card,
.catalog-card,
.contact-form,
.catalog-note,
.cta-panel,
.instagram-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 14px 40px rgba(47, 38, 32, 0.08);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.feature-card div {
  padding: 1.2rem;
}

.feature-card p,
.process-card p,
.catalog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 250, 240, 0.18), transparent 25rem),
    var(--accent);
  color: white;
}

.section-heading.light .eyebrow,
.section-heading.light p {
  color: rgba(255, 255, 255, 0.84);
}

.process-wrap {
  display: grid;
  gap: 2rem;
}

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

.process-card {
  padding: 1.4rem;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border-radius: 14px;
  background: rgba(217, 69, 76, 0.12);
  color: var(--accent-dark);
  font-weight: 900;
}

.instagram-panel,
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.contact-grid {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-link {
  width: fit-content;
  color: var(--accent-dark);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 38, 32, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: none;
  padding: 0.85rem 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 69, 76, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 69, 76, 0.13);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  padding-bottom: 3rem;
}

.page-hero h1 {
  max-width: 12ch;
}

.catalog-note {
  padding: 1.4rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-btn {
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.8);
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

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

.catalog-card {
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  padding: 0;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(47, 38, 32, 0.14);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
}

.catalog-card-body {
  padding: 1.15rem;
}

.catalog-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  background: rgba(217, 69, 76, 0.1);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 38, 32, 0.52);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(88vh, 780px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.modal-content {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
}

.site-footer {
  padding: 3rem 0 1.3rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.52);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid p {
  max-width: 38ch;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.9rem;
}

.footer-grid nav a {
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  width: min(100% - 2rem, var(--container));
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .process-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-panel,
  .cta-panel,
  .footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid nav {
    justify-content: start;
  }

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-card img {
    min-height: 280px;
    max-height: 440px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: calc(var(--header-height) + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.5rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .photo-card {
    border-width: 7px;
  }

  .photo-card-large {
    inset: 8% 5% 12% 4%;
  }

  .photo-card-small {
    width: 48%;
    height: 30%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .section-pad {
    padding: 3.5rem 0;
  }

  .hero-actions,
  .cta-actions,
  .trust-list {
    flex-direction: column;
  }

  .btn,
  .trust-list li {
    width: 100%;
  }

  .feature-grid,
  .process-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }
}
