:root {
  --color-primary: #d6cd76;
  --color-secondary: #e2e24f;
  --color-tertiary: #fdf500;
  --color-text: #282828;
  --color-paper: #fffee8;
  --color-soft: #f6f3cb;
  --color-border: rgba(40, 40, 40, 0.2);
  --shadow-strong: 0 24px 50px rgba(40, 40, 40, 0.18);
  --shadow-soft: 0 10px 25px rgba(40, 40, 40, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at 10% -15%, rgba(253, 245, 0, 0.28), transparent 34%),
    radial-gradient(circle at 95% 10%, rgba(226, 226, 79, 0.3), transparent 35%),
    linear-gradient(160deg, #fffef2 0%, #f7f2c3 100%);
  min-height: 100vh;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(115deg, rgba(40, 40, 40, 0.03) 10%, transparent 10%),
    linear-gradient(295deg, rgba(40, 40, 40, 0.03) 10%, transparent 10%);
  background-size: 24px 24px;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 254, 239, 0.78);
  border-bottom: 1px solid rgba(40, 40, 40, 0.12);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  font-family: "Russo One", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.06rem;
}

.brand-text {
  padding-left: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.top-nav a {
  position: relative;
  padding: 0.2rem 0.1rem;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-text);
  transition: transform 0.2s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
}

.phone-cta {
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(40, 40, 40, 0.18);
  background: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

.section {
  padding: 4.7rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.35);
  border-block: 1px solid rgba(40, 40, 40, 0.08);
}

.eyebrow {
  margin: 0 0 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 2px;
  rotate: 45deg;
  background: var(--color-tertiary);
  box-shadow: 0 0 0 2px rgba(40, 40, 40, 0.15);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Russo One", "Segoe UI", sans-serif;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

h2 {
  font-size: clamp(1.62rem, 3vw, 2.45rem);
}

p {
  margin: 0;
  line-height: 1.6;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

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

.hero-content {
  display: grid;
  gap: 1.1rem;
}

.hero-lead {
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  border-color: rgba(40, 40, 40, 0.3);
  background: rgba(255, 255, 255, 0.42);
}

.btn-full {
  width: 100%;
}

.contact-form-card .btn-full {
  margin-top: 0;
}

.contact-form-card .btn-full:hover,
.contact-form-card .btn-full:focus-visible {
  transform: none;
}

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero-facts li {
  padding: 0.82rem 0.9rem;
  border-left: 4px solid var(--color-tertiary);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.96rem;
}

.hero-facts span {
  margin-right: 0.6rem;
  font-weight: 800;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(40, 40, 40, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  min-height: 450px;
}

.hero-photo-side {
  min-height: 300px;
  margin-top: 4rem;
}

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

.about-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(214, 205, 118, 0.35));
  display: grid;
  gap: 0.7rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.process-step {
  padding: 1rem;
  border-radius: 14px;
  background: var(--color-paper);
  border: 1px solid rgba(40, 40, 40, 0.14);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.45rem;
  height: 100%;
}

.process-step h3 {
  min-height: 0;
}

.process-step p {
  align-self: center;
}

.process-step span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--color-tertiary);
  display: grid;
  place-items: center;
  font-family: "Russo One", "Segoe UI", sans-serif;
  font-size: 0.82rem;
}

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

.gallery-item {
  grid-column: span 3;
  border-radius: var(--radius-md);
  border: 1px solid rgba(40, 40, 40, 0.14);
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.gallery-item-large {
  grid-column: span 6;
  min-height: 300px;
}

.gallery-note,
.table-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

#products .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: 1rem;
  row-gap: 0.85rem;
  align-items: start;
}

#products .section-head {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.table-illustration {
  margin: 0 0 0.9rem;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

#products .table-illustration {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.table-illustration img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.table-illustration figcaption {
  margin-top: 0.55rem;
  font-size: 0.89rem;
  line-height: 1.45;
  text-align: center;
}

.gallery-note a {
  text-decoration: underline;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

#products .table-wrap {
  grid-column: 1;
}

#products .table-note {
  grid-column: 1;
  margin-top: 0.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

thead th {
  padding: 0.92rem;
  text-align: left;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(40, 40, 40, 0.22);
}

tbody td {
  padding: 0.82rem 0.92rem;
  border-bottom: 1px solid rgba(40, 40, 40, 0.09);
}

tbody tr:nth-child(even) td {
  background: rgba(226, 226, 79, 0.18);
}

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

.contact-info,
.contact-form-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(214, 205, 118, 0.32));
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-info {
  display: grid;
  gap: 0.95rem;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.contact-row > span {
  min-width: 0;
}

.copy-action {
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-text);
  font: inherit;
  font-size: 0.9rem;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.copy-action:hover,
.copy-action:focus-visible {
  opacity: 0.78;
}

.copy-action:focus-visible {
  outline: 2px solid rgba(253, 245, 0, 0.55);
  outline-offset: 2px;
}

.contact-info a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.field,
.field-group {
  display: grid;
  gap: 0.42rem;
}

.field-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  font-weight: 700;
  font-size: 0.94rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(40, 40, 40, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(253, 245, 0, 0.55);
  border-color: rgba(40, 40, 40, 0.45);
}

textarea {
  resize: vertical;
  min-height: 118px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.captcha-field {
  margin-top: 0.15rem;
}

.captcha-container {
  min-height: 66px;
}

.form-status {
  margin-top: 0.2rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: #b3261e;
}

.form-status[data-state="success"] {
  color: #1d5f29;
}

.form-disclaimer {
  margin-top: 0.2rem;
  font-size: 0.83rem;
  line-height: 1.5;
  opacity: 0.84;
}

.form-disclaimer a {
  text-decoration: underline;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(40, 40, 40, 0.12);
  background: rgba(255, 255, 255, 0.48);
}

.footer-wrap {
  font-size: 0.94rem;
}

.footer-main {
  display: grid;
  gap: 0.55rem;
  max-width: 900px;
}

.footer-main p {
  margin: 0;
  font-weight: 400;
}

.footer-main a {
  text-decoration: none;
  border-bottom: 1px solid rgba(40, 40, 40, 0.45);
}

.footer-main a:hover,
.footer-main a:focus-visible {
  border-bottom-color: rgba(40, 40, 40, 0.8);
}

.legal-links {
  margin-top: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.legal-links a {
  font-size: 0.94rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-disclaimer {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  opacity: 0.88;
}

.legal-doc {
  padding: 3rem 0 4rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1rem;
  font-weight: 700;
  text-decoration: underline;
}

.legal-doc-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
}

.legal-doc-card h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.legal-doc-card h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.legal-doc-card p {
  margin: 0.55rem 0;
}

.legal-doc-card ul,
.legal-doc-card ol {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.legal-doc-meta {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  opacity: 0.84;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.65s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.06s; }
.reveal:nth-child(3) { animation-delay: 0.12s; }
.reveal:nth-child(4) { animation-delay: 0.18s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo-main,
  .hero-photo-side {
    min-height: 260px;
    margin-top: 0;
  }

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

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

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item-large {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  #products .container {
    display: block;
  }

  #products .section-head {
    margin-bottom: 1rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .section {
    padding: 3.7rem 0;
  }

  .top-nav {
    display: none;
  }

  .phone-cta {
    font-size: 0.9rem;
    padding: 0.54rem 0.8rem;
  }

  .brand {
    gap: 0.44rem;
  }

  .brand-text {
    padding-left: 0;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .about-grid,
  .process-grid,
  .field-group,
  .gallery-item,
  .gallery-item-large {
    grid-template-columns: 1fr;
    grid-column: span 12;
  }

  .table-illustration {
    padding: 0.5rem;
    margin-bottom: 0.7rem;
  }

  .table-illustration img {
    max-height: 260px;
  }

  .table-illustration figcaption {
    font-size: 0.82rem;
  }

  table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.86rem;
  }

  thead th,
  tbody td {
    padding: 0.52rem 0.45rem;
  }

  thead th:first-child,
  tbody td:first-child {
    width: 52%;
    text-align: left;
  }

  thead th:not(:first-child),
  tbody td:not(:first-child) {
    width: 16%;
    text-align: center;
    white-space: nowrap;
  }

  .table-note {
    font-size: 0.88rem;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .copy-action {
    align-self: flex-end;
  }

}

@media (max-width: 420px) {
  table {
    font-size: 0.8rem;
  }

  thead th,
  tbody td {
    padding: 0.44rem 0.34rem;
  }
}

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