:root {
  --black: #050505;
  --charcoal: #111111;
  --charcoal-2: #171717;
  --gold: #c99a3a;
  --light-gold: #e7c76f;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --ink: #111111;
  --line: rgba(201, 154, 58, 0.44);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: min(1140px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section-dark {
  background: var(--black);
}

.section-light {
  background: #f8f4ed;
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 18px max(24px, calc((100vw - 1140px) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.66) 72%, transparent);
  transition: background 220ms ease, min-height 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(201, 154, 58, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--light-gold);
}

.brand-right {
  justify-self: end;
}

.brand-spacer {
  width: clamp(120px, 11vw, 160px);
  justify-self: end;
}

.brand-logo-image img {
  width: clamp(120px, 11vw, 160px);
  height: auto;
  object-fit: contain;
}

.brand-mark,
.logo-orbit {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--light-gold);
  font-family: var(--serif);
  font-weight: 800;
  box-shadow: inset 0 0 0 4px rgba(201, 154, 58, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 76px;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 34%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 24%, rgba(5, 5, 5, 0.5) 52%, rgba(5, 5, 5, 0.18) 78%),
    radial-gradient(circle at 73% 41%, rgba(231, 199, 111, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), var(--black) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  display: inline-grid;
  gap: 0;
  margin-bottom: 52px;
  color: var(--white);
  font-family: var(--serif);
  text-transform: uppercase;
}

.hero-logo .logo-orbit {
  margin: 0 auto 8px;
}

.hero-logo span:not(.logo-orbit) {
  font-size: 23px;
  line-height: 1;
}

.hero-logo strong {
  color: var(--light-gold);
  font-size: 43px;
  line-height: 0.96;
}

.hero-logo small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.04;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-top: 82px;
  color: var(--white);
  font-size: clamp(54px, 8.4vw, 104px);
  font-weight: 800;
}

.hero h1 span {
  display: block;
}

.hero h1 {
  background: linear-gradient(180deg, var(--white) 0 48%, var(--light-gold) 49% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 520px;
  margin: 20px 0 18px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.32;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 475px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: break-word;
}

.order-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid rgba(231, 199, 111, 0.5);
  color: var(--light-gold);
  background: rgba(5, 5, 5, 0.54);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  max-width: 100%;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-gold {
  min-height: 58px;
  border-color: var(--gold);
  background: rgba(5, 5, 5, 0.58);
  color: var(--light-gold);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-icon {
  margin-right: 10px;
  font-size: 18px;
}

.btn-dark {
  min-width: 126px;
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover,
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--light-gold);
}

.seal-stack {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: end;
  gap: 18px;
  margin-top: 470px;
}

.luxury-seal {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--light-gold);
  background:
    radial-gradient(circle at 50% 35%, rgba(231, 199, 111, 0.12), transparent 46%),
    rgba(5, 5, 5, 0.78);
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 5px rgba(201, 154, 58, 0.09),
    inset 0 0 0 9px rgba(5, 5, 5, 0.72),
    inset 0 0 0 10px rgba(231, 199, 111, 0.22),
    var(--shadow);
}

.luxury-seal span,
.luxury-seal small {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.18;
}

.luxury-seal strong {
  display: block;
  color: var(--light-gold);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.12;
}

.quality-strip {
  padding: 35px 0 48px;
  border-top: 1px solid rgba(201, 154, 58, 0.12);
  background:
    radial-gradient(circle at 50% 0, rgba(201, 154, 58, 0.13), transparent 36%),
    linear-gradient(180deg, #0b0b0b, var(--black));
}

.section-line-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}

.section-line-title span,
.section-heading span {
  display: block;
  height: 1px;
  background: var(--gold);
}

.section-line-title h2 {
  color: var(--light-gold);
  font-size: clamp(22px, 2.8vw, 31px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.feature-block {
  min-height: 136px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 14px;
  text-align: center;
}

.feature-block + .feature-block {
  border-left: 1px solid rgba(201, 154, 58, 0.35);
}

.feature-block svg,
.serve-icons svg {
  width: 55px;
  height: 55px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-block h3 {
  max-width: 150px;
  font-family: var(--sans);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.products {
  padding: 72px 0 80px;
}

.section-heading {
  display: grid;
  place-items: center;
  gap: 14px;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading h2 {
  color: var(--light-gold);
  font-size: clamp(28px, 3.6vw, 42px);
}

.dark-heading h2 {
  color: var(--ink);
}

.section-heading span {
  width: 74px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 34px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 74px rgba(17, 17, 17, 0.24);
}

.product-card img {
  height: 222px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.product-content {
  min-height: 215px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 25px 24px 26px;
  text-align: center;
}

.product-content h3 {
  color: var(--light-gold);
  font-size: 21px;
}

.product-content p {
  min-height: 54px;
  margin: 12px 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.product-content small {
  margin-bottom: 20px;
  color: var(--light-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.serve-about {
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0.84)),
    url("assets/bg-carp.png") center right / cover;
}

.serve-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.serve-panel {
  padding-right: 42px;
  border-right: 1px solid rgba(201, 154, 58, 0.42);
}

.lead {
  max-width: 530px;
  margin: 0 auto 34px;
  color: var(--muted);
  text-align: center;
}

.serve-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.serve-icons div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.serve-icons span {
  max-width: 96px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.about-panel p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  text-align: center;
}

.about-image {
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(201, 154, 58, 0.36);
  border-radius: 8px;
}

.about-image img {
  height: 210px;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.08) brightness(0.76);
}

.enterprise {
  padding: 58px 0;
  border-top: 1px solid rgba(201, 154, 58, 0.2);
  border-bottom: 1px solid rgba(201, 154, 58, 0.2);
  background: var(--charcoal);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.enterprise h2 {
  margin-bottom: 12px;
  color: var(--light-gold);
  font-size: clamp(28px, 3.2vw, 40px);
}

.enterprise p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.contact-cta {
  padding: 62px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}

.contact-brand {
  display: block;
}

.contact-brand h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.contact-brand p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 154, 58, 0.3);
}

.contact-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: clamp(18px, 2vw, 24px);
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 154, 58, 0.25);
  background: #030303;
}

.footer-simple {
  text-align: center;
}

.footer-simple p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-simple a {
  color: var(--light-gold);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 25px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .brand {
    font-size: 11px;
  }

  .brand-logo-image img {
    width: 132px;
  }

  .brand-spacer {
    width: 132px;
  }

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

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 700px;
  }

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

  .feature-block:nth-child(4) {
    border-left: 0;
  }

  .product-grid {
    gap: 22px;
  }

  .serve-about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .serve-panel {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 154, 58, 0.35);
    padding-bottom: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 34px), 720px);
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 13px 17px;
    background: rgba(5, 5, 5, 0.94);
  }

  .brand-spacer,
  .brand-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 26px 30px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(201, 154, 58, 0.3);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 154, 58, 0.18);
    font-size: 13px;
  }

  .hero {
    min-height: 790px;
    align-items: end;
    padding: 118px 0 55px;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.4) 24%, rgba(5, 5, 5, 0.91) 61%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.15));
  }

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

  .hero-logo {
    margin-bottom: 34px;
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(42px, 10.8vw, 64px);
  }

  .seal-stack {
    width: min(100%, 320px);
    justify-self: start;
    overflow: hidden;
    margin-top: 0;
  }

  .luxury-seal {
    width: 116px;
    height: 116px;
  }

  .section-line-title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .section-line-title h2 {
    width: min(100%, 320px);
    justify-self: center;
    font-size: 20px;
    line-height: 1.2;
    text-wrap: balance;
  }

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

  .feature-block + .feature-block,
  .feature-block:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(201, 154, 58, 0.28);
  }

  .product-card img {
    height: 250px;
  }

  .serve-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .brand {
    max-width: 210px;
  }

  .hero-copy {
    width: min(100%, 330px);
  }

  .hero {
    min-height: 820px;
  }

  .hero-logo strong {
    font-size: 36px;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(36px, 9.8vw, 46px);
  }

  .hero-text {
    max-width: 330px;
    font-size: 14px;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
    font-size: 12px;
    text-align: center;
  }

  .btn-gold {
    justify-content: center;
    min-height: 56px;
    padding-inline: 12px;
    font-size: 11px;
    line-height: 1.35;
  }

  .btn-icon {
    margin-right: 7px;
  }

  .seal-stack {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .luxury-seal {
    width: 104px;
    height: 104px;
  }

  .luxury-seal strong {
    font-size: 16px;
  }

  .product-card img {
    height: 210px;
  }

  .serve-icons {
    gap: 22px 12px;
  }

  .contact-brand {
    display: block;
  }

  .contact-list a {
    display: grid;
    gap: 4px;
  }
}
