/* ========================================
   Elya Perde — Premium Corporate Styles
   ======================================== */

:root {
  --cream: #f5f0e8;
  --cream-dark: #ebe4d8;
  --white: #ffffff;
  --gold: #c9a962;
  --gold-light: #dfc98a;
  --gold-dark: #a8893f;
  --brown: #8a7355;
  --brown-dark: #5c4a38;
  --charcoal: #1a1612;
  --ink: #2c2620;
  --muted: #7a7065;
  --line: rgba(26, 22, 18, 0.1);
  --shadow: 0 20px 50px rgba(26, 22, 18, 0.08);
  --shadow-hover: 0 28px 60px rgba(26, 22, 18, 0.12);
  --radius: 4px;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.7rem 1.35rem;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.header--transparent {
  background: transparent;
}

.header--scrolled,
.header--solid {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1001;
}

.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1;
}

.header--transparent:not(.header--scrolled) .logo__text {
  color: var(--white);
}

.header--transparent:not(.header--scrolled) .logo__mark path,
.header--transparent:not(.header--scrolled) .logo__mark circle {
  stroke: var(--gold-light);
  fill: var(--gold-light);
}

.header--transparent:not(.header--scrolled) .logo__mark path {
  fill: none;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}

.header--transparent:not(.header--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.92);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-dark);
}

.header--transparent:not(.header--scrolled) .nav__link:hover,
.header--transparent:not(.header--scrolled) .nav__link.active {
  color: var(--gold-light);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.header--transparent:not(.header--scrolled) .nav__social a {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.nav__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  z-index: 1001;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.header--transparent:not(.header--scrolled) .nav-toggle span {
  background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero__slide.active img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 22, 18, 0.78) 0%,
    rgba(26, 22, 18, 0.45) 50%,
    rgba(26, 22, 18, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  max-width: 680px;
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.hero__actions {
  opacity: 0;
  transform: translateY(24px);
}

.hero__slide.active .hero__eyebrow,
.hero__slide.active .hero__title,
.hero__slide.active .hero__text,
.hero__slide.active .hero__actions {
  animation: heroIn 0.9s ease forwards;
}

.hero__slide.active .hero__title {
  animation-delay: 0.15s;
}

.hero__slide.active .hero__text {
  animation-delay: 0.28s;
}

.hero__slide.active .hero__actions {
  animation-delay: 0.4s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__nav {
  position: absolute;
  bottom: 3rem;
  right: max(calc((100% - var(--container)) / 2), 1.25rem);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero__arrow {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.hero__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.hero__dots {
  position: absolute;
  bottom: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition);
}

.hero__dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 5rem;
  background:
    linear-gradient(135deg, rgba(26, 22, 18, 0.82), rgba(92, 74, 56, 0.65)),
    url("../images/page-hero.jpg")
      center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero__breadcrumb span {
  color: var(--gold-light);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 70%;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about__content .section__eyebrow {
  text-align: left;
}

.about__content .section__title {
  text-align: left;
}

.about__text {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about__text + .about__text {
  margin-bottom: 2rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  color: var(--gold-dark);
  font-size: 1.35rem;
  border-radius: 50%;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__body {
  padding: 1.75rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.product-card__text {
  font-size: 0.925rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--charcoal);
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-card__text {
  font-size: 0.925rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card__link:hover {
  gap: 0.7rem;
  color: var(--charcoal);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    linear-gradient(160deg, var(--charcoal) 0%, #2e2720 100%);
  color: var(--white);
  overflow: hidden;
}

.testimonials .section__eyebrow {
  color: var(--gold-light);
}

.testimonials .section__title {
  color: var(--white);
}

.testimonials .section__desc {
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 1rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial__name {
  font-weight: 500;
  font-size: 1rem;
}

.testimonial__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.testimonial-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.blog-card__image--lg {
  height: 260px;
}

.blog-card__excerpt {
  color: var(--muted);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.08);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.contact-info__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-weight: 500;
  color: var(--charcoal);
}

.contact-info__value a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: var(--brown-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.18);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(37, 211, 102, 0.12);
  color: #1a7a40;
  font-size: 0.9rem;
  border-radius: var(--radius);
}

.form-message.show {
  display: block;
}

.map-wrap {
  margin-top: 3.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ---------- Detail pages ---------- */
.detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.detail__image {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.detail__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.detail__text {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.detail__list {
  margin: 1.5rem 0 2rem;
}

.detail__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.detail__subtitle {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--charcoal);
}

.detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.blog-article__meta i {
  color: var(--gold-dark);
  margin-right: 0.35rem;
}

.blog-article__image {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-article__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--charcoal);
}

.blog-article p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}

.blog-article ul {
  margin: 1rem 0 1.5rem 1.25rem;
}

.blog-article ul li {
  list-style: disc;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 5rem 0;
  background:
    linear-gradient(120deg, rgba(26, 22, 18, 0.88), rgba(92, 74, 56, 0.75)),
    url("../images/cta-bg.jpg")
      center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo__text {
  color: var(--white);
}

.footer__about {
  margin-top: 1.25rem;
  font-size: 0.925rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.35rem;
}

.footer__links li {
  margin-bottom: 0.65rem;
}

.footer__links a {
  font-size: 0.925rem;
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.925rem;
}

.footer__contact i {
  color: var(--gold);
  margin-top: 0.3rem;
  width: 16px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--charcoal);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.28);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background: var(--gold);
  color: var(--charcoal);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 98, 0.45);
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 1.75rem;
  right: 5.5rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .blog-grid,
  .blog-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.05rem;
    color: var(--charcoal) !important;
  }

  .header--transparent:not(.header--scrolled) .nav__link {
    color: var(--charcoal) !important;
  }

  .nav__social a {
    border-color: var(--line) !important;
    color: var(--charcoal) !important;
  }

  .about,
  .detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__accent {
    display: none;
  }

  .about__media img,
  .detail__image img {
    height: 380px;
  }

  .detail__image {
    position: static;
  }

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

  .hero__nav {
    bottom: 5.5rem;
  }

  .hero__dots {
    bottom: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 70px;
  }

  .section {
    padding: 4rem 0;
  }

  .products-grid,
  .services-grid,
  .blog-grid,
  .blog-grid--2,
  .values,
  .footer__grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .back-top {
    right: 4.75rem;
    bottom: 1.35rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  }
}

/* Overlay when mobile menu open */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}
