:root {
  color-scheme: light;
  --ink: #102031;
  --muted: #667485;
  --paper: #ffffff;
  --soft: #f2f8fd;
  --ice: #e8f3fb;
  --line: rgba(16, 32, 49, 0.14);
  --blue: #073f86;
  --blue-dark: #082a55;
  --sea: #0e6d7a;
  --accent: #2f80d8;
  --accent-dark: #0a5fb5;
  --accent-soft: #b9ddff;
  --whatsapp: #25d366;
  --shadow: 0 22px 70px rgba(16, 32, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 128, 216, 0.36);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 58px;
  color: #fff;
  background: rgba(8, 42, 85, 0.36);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 38px rgba(16, 32, 49, 0.1);
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: opacity 180ms ease, height 180ms ease;
}

.brand-logo-white {
  opacity: 1;
}

.brand-logo-blue {
  position: absolute;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-blue {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo {
  height: 46px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 850;
}

.site-header.is-scrolled .site-nav {
  border-top-color: var(--line);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.88;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-backdrop {
  display: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  background: rgba(14, 109, 122, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.site-header.is-scrolled .header-action {
  border-color: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.icon-whatsapp {
  border: 0;
  border-radius: 999px;
  background:
    #fff url("assets/icons/whatsapp.svg") center / contain no-repeat;
}

.icon-whatsapp::before {
  content: none;
}

.icon-whatsapp::after {
  content: none;
}

.icon-instagram {
  border: 0;
  border-radius: 6px;
  background:
    #fff url("assets/icons/instagram.svg") center / contain no-repeat;
}

.icon-instagram::before {
  content: none;
}

.icon-instagram::after {
  content: none;
}

.icon-grid {
  background:
    linear-gradient(currentColor 0 0) left top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 7px 7px no-repeat;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  padding: 156px 82px 70px;
  color: #fff;
  background: var(--blue-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/gurmare/hero-bg.jpg");
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 22, 43, 0.92) 0%, rgba(4, 22, 43, 0.66) 42%, rgba(4, 22, 43, 0.18) 78%),
    linear-gradient(0deg, rgba(4, 22, 43, 0.78) 0%, rgba(4, 22, 43, 0.06) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-soft);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 76px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
}

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

.button-light,
.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 12px 0 0;
}

.hero-metrics div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 24px;
  padding: 34px 82px;
  color: #fff;
  background: var(--blue-dark);
}

.intro-band h2 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.08;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.category-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 96px 82px;
}

.products-section {
  background: var(--soft);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading h2,
.cold-copy h2,
.order-copy h2,
.about-copy h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.cold-copy p,
.order-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-highlights {
  display: grid;
  gap: 16px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
  border-radius: 0 8px 8px 0;
}

.about-highlights strong {
  font-size: 17px;
  color: var(--ink);
}

.about-highlights span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
}

.about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}

.product-tabs button.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

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

.product-card,
.order-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(16, 32, 49, 0.08);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ice);
}

.product-card-body {
  display: grid;
  gap: 15px;
  padding: 18px;
  align-content: start;
}

.product-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: var(--sea);
  font-size: 12px;
  font-weight: 900;
}

.product-card .button {
  justify-self: start;
  min-height: 42px;
}

.variant-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
}

.variant-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.variant-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
}

.cold-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 40px;
  align-items: center;
  padding: 96px 82px;
  color: #fff;
  background: var(--blue-dark);
}

.cold-image {
  overflow: hidden;
  border-radius: 8px;
}

.cold-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cold-copy {
  display: grid;
  gap: 18px;
}

.cold-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 10px;
  min-height: 170px;
  border-left: 4px solid var(--accent);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.process-list span {
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 950;
}

.process-list strong {
  font-size: 19px;
}

.process-list small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.instagram-section {
  background: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.instagram-grid a {
  position: relative;
  display: block;
  min-height: 180px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
}

.instagram-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.9;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.instagram-grid a:hover img {
  opacity: 0.72;
  transform: scale(1.04);
}

.instagram-grid span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 34px;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(8, 42, 85, 0.76);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(47, 128, 216, 0.14), transparent 38%),
    var(--ice);
}

.order-copy {
  display: grid;
  gap: 14px;
}

.contact-panel {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 18px;
}

.contact-panel strong {
  font-size: 18px;
}

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

.contact-title,
.social-link,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 750;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 120px;
  padding: 13px;
  resize: vertical;
}

.order-form .button {
  justify-self: start;
}

.order-result {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(16, 32, 49, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  line-height: 1.5;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.result-actions .button {
  min-height: 42px;
}

.quick-actions {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(16, 32, 49, 0.2);
  font-size: 13px;
  font-weight: 950;
}

.quick-action .icon {
  width: 22px;
  height: 22px;
}

.quick-action.whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: #fff;
}

.quick-action.call {
  min-width: 72px;
  background: var(--sea);
}

.quick-action.instagram {
  border: 1px solid rgba(214, 36, 159, 0.34);
  background: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 82px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-dark);
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #fff;
  font-weight: 850;
}

@media (max-width: 1120px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    padding: 10px 24px;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    z-index: 31;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    width: min(360px, 84vw);
    padding: 96px 22px 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(16, 32, 49, 0.09);
    padding: 15px 4px;
    font-size: 18px;
  }

  .site-nav a::after {
    bottom: 10px;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(4, 22, 43, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 32;
    display: block;
    justify-self: end;
  }

  .header-action {
    justify-self: end;
  }

  .hero,
  .section,
  .cold-section,
  .intro-band,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .intro-band,
  .cold-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .category-strip {
    justify-content: flex-start;
  }

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    grid-template-columns: 42px auto;
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .site-nav {
    width: min(330px, 86vw);
    padding-top: 88px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 118px;
    padding-bottom: 46px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics,
  .product-grid,
  .process-list,
  .instagram-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .cold-section,
  .intro-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading h2,
  .cold-copy h2,
  .order-copy h2 {
    font-size: 34px;
  }

  .section-heading p:not(.section-kicker),
  .cold-copy p,
  .order-copy p {
    font-size: 16px;
  }

  .cold-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .cold-image img {
    aspect-ratio: 4 / 3;
  }

  .order-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quick-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-action {
    min-width: 0;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 28px 18px 92px;
  }
}
