@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/BodoniModa-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/BodoniModa-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d1117;
  --bg-soft: #141c26;
  --surface: #ffffff;
  --surface-soft: #f6f1e8;
  --text: #1b2230;
  --text-muted: #5e6674;
  --text-on-dark: #f4f5f7;
  --accent: #d1a84c;
  --accent-strong: #f0c660;
  --border: rgba(27, 34, 48, 0.12);
  --shadow: 0 24px 70px rgba(5, 10, 20, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1320px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(209, 168, 76, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf8f3 0%, #ffffff 42%, #f6f8fc 100%);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(13, 17, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  padding: 1rem 0;
}

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

.brand img {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  background: #0c1118;
  border: 1px solid rgba(240, 198, 96, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.15rem;
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-name {
  font-family: "Bodoni Moda", serif;
  font-size: 2rem;
  line-height: 1;
  color: #fff4c8;
  font-weight: 700;
}

.brand-tag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.social-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.social-icon-youtube svg {
  fill: #ff2f2f;
}

.social-icon-instagram svg {
  fill: #f77737;
}

.social-icon-whatsapp svg {
  fill: #25d366;
}

.social-icon-instagram {
  position: relative;
}

.social-icon-instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(254, 218, 117, 0.22) 0%, rgba(250, 126, 30, 0.22) 28%, rgba(214, 41, 118, 0.22) 58%, rgba(150, 47, 191, 0.22) 78%, rgba(79, 91, 213, 0.22) 100%);
}

.social-icon-instagram svg,
.social-icon-youtube svg {
  position: relative;
  z-index: 1;
}

.site-nav a:hover,
.contact-links a:hover,
.contact-list a:hover {
  color: var(--accent-strong);
}

.hero,
.section {
  padding: 5.5rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(920px, 100vh);
  padding-top: 5.5rem;
  padding-bottom: 7rem;
  color: var(--text-on-dark);
  background: #091019;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.86) 0%, rgba(8, 11, 18, 0.62) 42%, rgba(8, 11, 18, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.1) 0%, rgba(8, 11, 18, 0.56) 100%);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-single {
  max-width: 62rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  align-items: start;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #926d1b;
  margin: 0 0 1rem;
}

.hero .eyebrow {
  color: #f1cf7d;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Bodoni Moda", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-title {
  max-width: none;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1;
}

.hero-title-line {
  display: block;
  white-space: normal;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-text,
.section-heading p,
.about-copy > p,
.contact-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-text,
.hero-lead,
.hero-highlights li {
  color: rgba(255, 255, 255, 0.84);
}

.hero-lead {
  max-width: 36rem;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #231802;
  box-shadow: 0 18px 35px rgba(209, 168, 76, 0.35);
  border: none;
}

.button-secondary {
  background: rgba(13, 17, 23, 0.05);
  border: 1px solid rgba(13, 17, 23, 0.12);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #17b857 100%);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
}

.button-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  margin-right: 0.55rem;
  flex-shrink: 0;
}

.button-full {
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.hero-highlights li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 7px rgba(209, 168, 76, 0.12);
}

.hero-card,
.collection-card,
.feature-card,
.address-card,
.contact-form,
.about-visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(10, 15, 23, 0.78) 0%, rgba(21, 31, 44, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: var(--text-on-dark);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.hero-card-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  max-width: 18rem;
}

.badge {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff1c5;
  font-size: 0.85rem;
}

.about-visual img {
  border-radius: inherit;
  width: 100%;
  height: calc(100% + 4rem);
  object-fit: cover;
  object-position: center top;
  transform: translateY(-2rem);
}

.hero-showcase {
  padding: 1.75rem;
  margin-top: 0;
  align-self: center;
  transform: translateY(-0.75rem);
}

.showcase-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.showcase-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 198, 96, 0.24);
  padding: 0.25rem;
}

.showcase-brand h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
}

.showcase-brand p,
.showcase-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.showcase-quote {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-quote p {
  font-size: 1.05rem;
  font-weight: 500;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

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

.collection-card,
.feature-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.collection-body {
  padding: 1.4rem 1.5rem 1.7rem;
}

.collection-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(209, 168, 76, 0.22), rgba(27, 34, 48, 0.08));
}

.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(209, 168, 76, 0.24), transparent 65%);
}

.collection-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(209, 168, 76, 0.22), rgba(209, 168, 76, 0.08));
  color: #8c6615;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.collection-card h3,
.feature-card h3,
.address-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.collection-card p,
.feature-card p,
.address-card address,
.contact-list {
  color: var(--text-muted);
}

.section-alt {
  padding-top: 0;
}

.feature-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 232, 0.92));
}

.about-visual {
  overflow: hidden;
  background: linear-gradient(145deg, #10151e, #273142);
  padding: 0;
  aspect-ratio: 5 / 4;
}

.address-card {
  margin-top: 2rem;
  background: var(--surface);
  padding: 1.8rem;
  border: 1px solid var(--border);
}

.address-card address {
  font-style: normal;
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-weight: 600;
}

.section-dark {
  background: linear-gradient(135deg, #0b1017 0%, #151e2c 100%);
  color: var(--text-on-dark);
}

.section-dark .eyebrow,
.section-dark .contact-copy p,
.section-dark .contact-list {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem;
  color: var(--text);
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.contact-form label span {
  color: var(--text-muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 34, 48, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  font: inherit;
  color: var(--text);
  background: #fbfcff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(209, 168, 76, 0.28);
  border-color: rgba(209, 168, 76, 0.6);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 600;
  min-height: 1.4rem;
}

.form-status.is-success {
  color: #0f7a41;
}

.form-status.is-error {
  color: #bb3030;
}

.site-footer {
  background: #0b1017;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-inner p {
  margin: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  color: inherit;
}

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

  .hero-copy,
  .hero-showcase {
    max-width: 44rem;
  }
}

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

  .hero-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .showcase-brand {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .hero,
  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

  h1 {
    max-width: none;
  }

  .hero-title-line {
    white-space: normal;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .showcase-brand img {
    width: 74px;
    height: 74px;
  }
}
