:root {
  --coral: #f46f58;
  --coral-dark: #c94635;
  --ink: #172321;
  --slate: #344542;
  --muted: #6a7774;
  --line: #dde7e2;
  --sage: #dfeee5;
  --sky: #d8e8f4;
  --cream: #fff8ee;
  --gold: #f4c95d;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(23, 35, 33, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdfa 0%, #f7faf6 46%, var(--white) 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(221, 231, 226, 0.86);
  backdrop-filter: blur(14px);
}

.promo-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  text-align: center;
}

.nav {
  display: flex;
  max-width: 1200px;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 22px;
}

.brand img {
  width: 184px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: var(--ink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a { transition: color 160ms ease; }
.nav-menu a:hover, .nav-menu .active { color: var(--coral-dark); }

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--coral);
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(244, 111, 88, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244, 111, 88, 0.34);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 110px);
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.9), rgba(23, 35, 33, 0.62) 38%, rgba(23, 35, 33, 0.18) 72%),
    url("../assets/brand/hero-brand.webp") center / cover;
  animation: heroBreath 10s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.12) 43%, transparent 62%);
  content: "";
  transform: translateX(-70%);
  animation: lightSweep 7.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 12vh 22px 12vh;
  margin-left: max(22px, calc((100vw - 1200px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1, .page-hero h1, .section-heading h2, .split-copy h2, .final-cta h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 { font-size: clamp(2.55rem, 6.8vw, 5.7rem); }
.hero p:not(.eyebrow), .page-hero p, .split-copy p, .final-cta p, .feature-grid p, .image-card p, .product-card p, .blog-grid p, .contact-panel span {
  color: var(--muted);
  line-height: 1.62;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  color: var(--white);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary { background: var(--coral); border-color: var(--coral); color: var(--white); }
.button.secondary { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button.ghost { border-color: rgba(255, 255, 255, 0.72); color: var(--white); }

.button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 35, 33, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-strip div {
  padding: 24px max(22px, calc((100vw - 1200px) / 2));
  border-right: 1px solid var(--line);
}

.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { margin-bottom: 6px; }
.trust-strip span { color: var(--muted); line-height: 1.45; }

.section, .split-section, .final-cta, .contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 22px;
}

.brand-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 22px;
}

.brand-story-copy {
  position: relative;
}

.brand-story-copy::before {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
}

.brand-story-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.02;
}

.brand-story-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.brand-story-media {
  position: relative;
}

.brand-story-media::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(244, 111, 88, 0.28);
  border-radius: var(--radius);
  content: "";
  z-index: -1;
}

.brand-story-media img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section.tinted {
  max-width: none;
  background: #f4f7f2;
}

.section.tinted > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2, .split-copy h2, .final-cta h2, .page-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--coral-dark);
  font-weight: 900;
}

.feature-grid, .service-preview-grid, .testimonial-grid, .product-grid, .blog-grid, .process-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid.four, .blog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-preview-grid, .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-grid article, .process-grid article, .difference-list article, .blog-grid article, .product-card, .contact-form, .contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-grid article, .process-grid article, .difference-list article {
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-grid article:hover, .process-grid article:hover, .difference-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 111, 88, 0.38);
  box-shadow: 0 20px 45px rgba(23, 35, 33, 0.1);
}

.feature-number, .process-grid span, .product-card span, .blog-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid h3, .image-card h3, .product-card h2, .blog-grid h2, .process-grid h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.22;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(23, 35, 33, 0.16);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 320ms ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-card div { padding: 20px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p { max-width: 620px; }

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--sky);
  line-height: 1.62;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--slate);
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 92px 22px 76px;
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.86), rgba(23, 35, 33, 0.38)),
    url("../assets/brand/hero-brand.webp") center / cover;
  color: var(--white);
}

.page-hero.compact {
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.86), rgba(23, 35, 33, 0.25)),
    url("../assets/brand/inquiry-samples.webp") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.86), rgba(23, 35, 33, 0.25)),
    url("../assets/brand/brand-story.webp") center / cover;
}

.page-hero > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-button:hover { transform: translateY(-2px); border-color: var(--coral); }

.product-card {
  display: grid;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card[hidden] { display: none; }

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(244, 111, 88, 0.42);
  box-shadow: 0 24px 55px rgba(23, 35, 33, 0.13);
}

.product-card img, .blog-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card:hover img, .blog-grid article:hover img {
  transform: scale(1.035);
}

.product-card div, .blog-grid article > :not(img) {
  margin-left: 18px;
  margin-right: 18px;
}

.product-card div {
  display: grid;
  min-height: 260px;
  align-content: start;
  padding: 18px 0;
}

.product-card strong {
  margin-top: auto;
  font-size: 1.2rem;
  color: var(--slate);
}

.product-card a, .blog-grid a {
  margin-top: 12px;
  color: var(--coral-dark);
  font-weight: 900;
}

.product-card a::after, .blog-grid a::after {
  content: " →";
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid span {
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { cursor: pointer; font-weight: 900; }
.faq-section details p { color: var(--muted); line-height: 1.62; }

.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.blog-feature img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-feature h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

.blog-feature p { color: var(--muted); line-height: 1.62; }
.blog-grid article {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(23, 35, 33, 0.11);
}
.blog-grid article > :last-child { margin-bottom: 20px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-form, .contact-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-weight: 900;
}

input, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

textarea { resize: vertical; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.contact-panel a {
  color: var(--coral-dark);
  font-weight: 900;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.contact-panel iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}

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

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

@keyframes heroBreath {
  from { transform: scale(1); filter: saturate(1); }
  to { transform: scale(1.04); filter: saturate(1.08); }
}

@keyframes lightSweep {
  0%, 58%, 100% { transform: translateX(-72%); opacity: 0; }
  72% { transform: translateX(72%); opacity: 1; }
}

@keyframes whatsappBreath {
  0%, 100% { box-shadow: 0 18px 42px rgba(34, 197, 94, 0.32); transform: translateY(0); }
  50% { box-shadow: 0 18px 42px rgba(34, 197, 94, 0.5), 0 0 0 8px rgba(34, 197, 94, 0.1); transform: translateY(-2px); }
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(140px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 22px 30px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 170px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--ink);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer a, .site-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.58;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.32);
  animation: whatsappBreath 2.8s ease-in-out infinite;
}

.whatsapp-float::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .nav-menu.is-open { display: grid; }
  .trust-strip, .feature-grid.four, .product-grid, .blog-grid, .process-grid, .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid.three, .service-preview-grid, .testimonial-grid, .difference-list, .split-section, .blog-feature, .contact-layout, .brand-story-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand img { width: 150px; }
  .hero { min-height: 760px; }
  .hero-media {
    background:
      linear-gradient(0deg, rgba(23, 35, 33, 0.9), rgba(23, 35, 33, 0.36)),
      url("../assets/brand/hero-brand.webp") center / cover;
  }
  .hero-content { padding-bottom: 70px; }
  .trust-strip, .feature-grid.four, .product-grid, .blog-grid, .process-grid, .site-footer { grid-template-columns: 1fr; }
  .section, .split-section, .final-cta, .contact-layout, .brand-story-section { padding-top: 62px; padding-bottom: 62px; }
  .section-heading, .final-cta { display: block; }
  .section-heading a, .final-cta .button { margin-top: 16px; }
  .product-card div { min-height: auto; }
  .page-hero { padding-top: 72px; padding-bottom: 62px; }
  .hero-metrics { display: grid; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
