@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --bg: #f3ede3;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fff9ef;
  --surface-dark: #1f2327;
  --text: #22262a;
  --text-muted: #5e5d58;
  --sand: #b69265;
  --sand-deep: #8f6844;
  --stone: #5b6672;
  --stone-soft: #7a8794;
  --earth: #6f4e37;
  --charcoal: #171b1f;
  --lime-soft: #6c7f62;
  --accent: #ef8d1f;
  --accent-dark: #c56b0c;
  --white: #ffffff;
  --border: rgba(43, 43, 43, 0.1);
  --shadow-soft: 0 18px 45px rgba(20, 24, 28, 0.12);
  --shadow-card: 0 24px 60px rgba(22, 26, 30, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 146, 101, 0.16), transparent 25%),
    radial-gradient(circle at bottom right, rgba(91, 102, 114, 0.18), transparent 28%),
    linear-gradient(180deg, #f9f4eb 0%, #f0eadf 36%, #fbf8f2 100%);
}

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

section[id] {
  scroll-margin-top: 132px;
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, #262d33, #37424c 62%, #5a664e);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(249, 244, 235, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 0;
}

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

.brand img {
  width: 64px;
  height: 52px;
  padding: 0.28rem;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand strong,
.section-heading h2,
.hero h1,
.about-card h2,
.order-copy h2,
.contact-card h2,
.cta-card h2 {
  font-family: "Montserrat", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.08;
}

.brand span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-panel a:not(.button-nav) {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-panel a:not(.button-nav):hover,
.nav-panel a:not(.button-nav):focus-visible {
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(26, 31, 36, 0.16);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #d97706);
}

.button-secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.08);
}

.button-nav {
  padding-inline: 1.15rem;
}

.button-block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--sand-deep);
  background: rgba(182, 146, 101, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid,
.about-grid,
.order-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.hero-text {
  max-width: 58ch;
  margin: 0 0 1.7rem;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.trust-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--sand));
  box-shadow: 0 0 0 5px rgba(239, 141, 31, 0.14);
}

.hero-visual-frame,
.about-image-card,
.order-form-card,
.contact-card,
.map-card,
.transport-feature,
.history-card,
.cta-card,
.product-card,
.service-card,
.gallery-card,
.about-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.hero-visual-frame {
  padding: 1rem;
  border-radius: clamp(26px, 4vw, 40px);
  overflow: hidden;
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(11, 14, 17, 0.04), rgba(11, 14, 17, 0.34));
  pointer-events: none;
}

.hero-main-image {
  width: 100%;
  height: clamp(500px, 68vh, 660px);
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(160deg, rgba(91, 102, 114, 0.12), rgba(239, 141, 31, 0.12));
}

.hero-founder-frame .hero-main-image {
  object-position: center 44%;
}

.hero-floating-card {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 270px;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(28, 33, 38, 0.86);
  color: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-floating-card span,
.hero-floating-card strong {
  display: block;
}

.hero-floating-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-floating-card strong {
  margin-top: 0.5rem;
  font-size: 1.02rem;
}

.hero-floating-card ul {
  padding-left: 1rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.highlights {
  padding-bottom: 1.5rem;
}

.highlights-grid {
  display: grid;
  gap: 1rem;
}

.highlights-grid article {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 249, 239, 0.82);
  border: 1px solid rgba(43, 43, 43, 0.06);
  box-shadow: var(--shadow-soft);
}

.highlights-grid strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.55rem;
}

.highlights-grid p,
.section-heading p,
.about-card p,
.order-copy p,
.cta-card p,
.footer-grid p,
.footer-grid li,
.form-note {
  color: var(--text-muted);
}

.section {
  padding: 2.8rem 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 1.6rem;
}

.section-note {
  font-weight: 800;
}

.section-heading h2,
.about-card h2,
.order-copy h2,
.contact-card h2,
.cta-card h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.products-grid,
.services-grid,
.gallery-grid,
.about-stats {
  display: grid;
  gap: 1.1rem;
}

.product-card,
.service-card,
.gallery-card,
.about-card,
.order-form-card,
.contact-card,
.map-card,
.transport-feature,
.history-card,
.cta-card {
  border-radius: var(--radius-xl);
}

.product-card {
  overflow: hidden;
}

.product-card:hover,
.service-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
}

.product-card:hover .product-media img,
.gallery-card:hover img {
  transform: scale(1.04);
}

.product-media {
  position: relative;
  aspect-ratio: 1.15;
  overflow: hidden;
}

.product-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-body {
  padding: 1.35rem;
}

.category-chip {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(91, 102, 114, 0.12);
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-body h3,
.service-card h3,
.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.65rem;
  font-family: "Montserrat", sans-serif;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.product-actions .button {
  flex: 1 1 190px;
}

.certifications-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(91, 102, 114, 0.08));
}

.certifications-layout {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.certification-carousel {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 245, 0.9);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-card);
}

.certification-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.certification-frame {
  width: min(420px, calc(100% - 80px));
  aspect-ratio: 0.72;
  padding: 0.75rem;
  border: 1px solid rgba(28, 33, 38, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(22, 26, 30, 0.15);
  cursor: zoom-in;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 180ms ease;
}

.certification-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.certification-frame:hover,
.certification-frame:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 46px rgba(22, 26, 30, 0.2);
}

.certification-frame.is-changing img {
  opacity: 0;
  transform: scale(0.985);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(28, 33, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.carousel-control-prev {
  left: 0.2rem;
}

.carousel-control-next {
  right: 0.2rem;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 18px 28px rgba(22, 26, 30, 0.18);
}

.certification-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  text-align: center;
}

.certification-meta span {
  color: var(--sand-deep);
  font-weight: 800;
}

.certification-meta strong {
  font-family: "Montserrat", sans-serif;
}

.certification-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.certification-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(28, 33, 38, 0.18);
  border-radius: 999px;
  background: rgba(91, 102, 114, 0.22);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.certification-dot.is-active {
  width: 28px;
  background: var(--accent);
  border-color: transparent;
}

.certification-dot:hover,
.certification-dot:focus-visible {
  transform: translateY(-1px);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  padding: 1.3rem;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(239, 141, 31, 0.2), rgba(91, 102, 114, 0.18));
  color: var(--earth);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.transport-feature {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
  margin: 1.4rem 0;
  overflow: hidden;
}

.transport-media {
  min-height: 260px;
}

.transport-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.transport-copy {
  display: grid;
  align-content: center;
  padding: 1.4rem;
}

.transport-copy h3,
.history-card h3,
.map-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.transport-copy p,
.history-card p,
.contact-list p,
.map-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-card,
.about-image-card,
.order-form-card,
.contact-card,
.map-card,
.cta-card {
  padding: 1.4rem;
}

.about-stats {
  margin-top: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.about-stats article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stats strong {
  display: block;
  margin-bottom: 0.35rem;
}

.about-image-card {
  min-height: 100%;
  overflow: hidden;
}

.about-image-card img {
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(25, 29, 32, 0.82);
  color: rgba(255, 255, 255, 0.94);
}

.about-badge span,
.about-badge strong {
  display: block;
}

.about-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-badge strong {
  margin-top: 0.45rem;
}

.history-card {
  margin: 1.2rem 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 242, 0.88)),
    linear-gradient(160deg, rgba(108, 127, 98, 0.12), rgba(239, 141, 31, 0.12));
}

.history-card .eyebrow {
  margin-bottom: 0.8rem;
}

.history-card p + p {
  margin-top: 0.9rem;
}

.institution-grid,
.values-grid {
  display: grid;
  gap: 1.1rem;
}

.institution-card,
.value-card,
.quality-banner {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-card);
}

.institution-card {
  padding: 1.35rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.institution-card span,
.value-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(108, 127, 98, 0.14);
  color: var(--lime-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.institution-card h3,
.value-card h3,
.quality-banner h2 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
}

.institution-card p,
.value-card p,
.quality-banner p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  padding: 1.2rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.institution-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 141, 31, 0.2);
  box-shadow: 0 26px 58px rgba(22, 26, 30, 0.16);
}

.quality-banner {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(31, 35, 39, 0.93), rgba(87, 96, 83, 0.88)),
    linear-gradient(160deg, rgba(239, 141, 31, 0.22), rgba(182, 146, 101, 0.2));
  color: var(--white);
}

.quality-banner .eyebrow {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
}

.quality-banner h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.quality-banner p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-card-logo img {
  padding: 1.2rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.86);
}

.gallery-caption {
  padding: 1rem 1.15rem 1.2rem;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  margin-bottom: 0.35rem;
}

.gallery-caption span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.order-points article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(28, 33, 38, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: 2px solid rgba(239, 141, 31, 0.35);
  border-color: rgba(239, 141, 31, 0.55);
}

.form-note {
  margin: 0;
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  background:
    linear-gradient(120deg, rgba(27, 31, 35, 0.92), rgba(50, 58, 66, 0.88)),
    linear-gradient(160deg, rgba(239, 141, 31, 0.2), rgba(108, 127, 98, 0.18));
  color: var(--white);
}

.contact-card .eyebrow {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.contact-list p {
  margin: 0;
}

.contact-list strong {
  color: rgba(255, 255, 255, 0.95);
}

.map-card {
  display: grid;
  gap: 1rem;
  background: rgba(255, 252, 245, 0.9);
}

.map-frame {
  min-height: 310px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(28, 33, 38, 0.1);
  background: rgba(91, 102, 114, 0.12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
}

.cta-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(27, 31, 35, 0.92), rgba(50, 58, 66, 0.88)),
    linear-gradient(160deg, rgba(239, 141, 31, 0.2), rgba(108, 127, 98, 0.18));
  color: var(--white);
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding-top: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(31, 35, 39, 0.05));
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 1.5rem;
}

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

.footer-brand img {
  width: 72px;
  height: 58px;
  padding: 0.32rem;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-brand h3 {
  margin: 0;
}

.footer-rif {
  margin-top: 0.75rem;
  font-weight: 800;
  color: var(--charcoal);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  color: var(--text-muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 15, 18, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  z-index: 60;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  width: min(900px, 100%);
  margin: 0;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.97);
}

.lightbox-dialog img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-dialog figcaption {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

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

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

body.menu-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  .hero-grid,
  .about-grid,
  .order-grid,
  .certifications-layout,
  .institution-grid,
  .transport-feature,
  .contact-layout,
  .footer-grid,
  .cta-card,
  .quality-banner,
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .hero-grid,
  .about-grid,
  .order-grid {
    grid-template-columns: 1.04fr 0.96fr;
  }

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

  .cta-card {
    grid-template-columns: 1.2fr auto;
  }

  .quality-banner {
    grid-template-columns: 1.25fr auto;
  }

  .transport-feature,
  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .button-nav {
    width: 100%;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 1.4rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-main-image {
    height: clamp(430px, 72vh, 560px);
  }

  .hero-founder-frame .hero-main-image {
    object-position: center 38%;
  }

  .hero-floating-card,
  .about-badge {
    position: static;
    margin-top: 1rem;
  }

  .brand img {
    width: 56px;
    height: 46px;
  }

  .section {
    padding: 2.2rem 0;
  }

  .certification-carousel {
    padding: 0.8rem;
  }

  .certification-stage {
    min-height: 430px;
  }

  .certification-frame {
    width: min(310px, calc(100% - 58px));
    padding: 0.55rem;
    border-radius: 18px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .quality-banner .button {
    width: 100%;
  }

  .contact-card .button,
  .map-card .button {
    width: 100%;
  }

  .transport-media,
  .transport-media img,
  .map-frame,
  .map-frame iframe {
    min-height: 240px;
  }
}
