/* =========================================================
   COMPROORO — OROFASTBANK  |  theme.css
   Conversione completa da Tailwind + App.css a vanilla CSS
   ========================================================= */

/* === 1. FONT IMPORT ===================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

/* === 2. CSS CUSTOM PROPERTIES =========================== */
:root {
  --color-primary:      #29235c;
  --color-primary-dark: #1e1a4a;
  --color-primary-mid:  #312a6b;
  --color-gold:         #d2b808;
  --color-bg-light:     #eeedf6;
  --color-bg-off:       #fafafb;
  --color-text-muted:   #5c6270;
  --color-border:       rgba(41, 35, 92, 0.15);
  --color-white:        #ffffff;

  --font-body:    "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;

  --radius:       0.25rem;
  --container:    80rem; /* 1280px = max-w-7xl */
  --container-md: 56rem; /* max-w-4xl */

  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-smooth: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* === 3. BASE RESET ====================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid var(--color-border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--color-white);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.005em;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

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

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

ul, ol {
  list-style: none;
}

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

::selection {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* === 4. TYPOGRAPHY UTILITIES ============================ */
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}

.font-body {
  font-family: var(--font-body);
}

/* Heading scales */
.text-hero {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.08;
}

.text-hero-sub {
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.text-section-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 1.1;
}

/* === 5. LAYOUT — CONTAINER ============================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.container--narrow {
  max-width: var(--container-md);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container--narrow { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* === 6. COMMON COMPONENTS =============================== */

/* --- Eyebrow label --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-body);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow--light::before {
  background: var(--color-gold);
}

/* --- Gold horizontal rule --- */
.gold-rule {
  display: block;
  height: 1px;
  width: 64px;
  background: var(--color-gold);
  border: none;
  margin-top: 2rem;
}
.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background var(--transition-base), color var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-primary);
}
.btn--gold:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--color-white);
  background: transparent;
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--outline-primary {
  border: 1px solid rgba(41,35,92,0.30);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--white-text {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--white-text:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* --- Icon box --- */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(41,35,92,0.20);
  color: var(--color-primary);
  transition: border-color var(--transition-base), color var(--transition-base);
}
.icon-box--sm  { width: 2.25rem; height: 2.25rem; }
.icon-box--md  { width: 3rem;    height: 3rem;    }
.icon-box--lg  { width: 3.5rem;  height: 3.5rem;  }

/* --- Soft frame (decorative border on image) --- */
.soft-frame {
  position: relative;
  overflow: hidden;
}
.soft-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(210,184,8,0.55);
  pointer-events: none;
  transition: inset 400ms ease;
  z-index: 1;
}
.soft-frame:hover::after {
  inset: 16px;
}

/* --- Card lift --- */
.card-lift {
  transition: transform var(--transition-smooth),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}
.card-lift:hover {
  transform: translateY(-3px);
  border-color: rgba(210,184,8,0.45);
  box-shadow: 0 14px 40px -24px rgba(41,35,92,0.25);
}

/* === 7. SCROLL REVEAL ANIMATION ========================= */
.reveal {
  opacity: 0;
}
.reveal.in-view {
  animation: fade-up 0.7s ease-out forwards;
}
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0);    }
}

/* === 8. NAVBAR ========================================== */
.site-header {
  position: fixed;
  /* top: 0; */
  left: 0;
  right: 0;
  z-index: 50;
  transition: background var(--transition-base),
              backdrop-filter var(--transition-base),
              box-shadow var(--transition-base);
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(41,35,92,0.08);
  box-shadow: 0 1px 0 rgba(41,35,92,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}
@media (min-width: 768px) {
  .header-inner { height: 7rem; }
}

.header-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .header-logo img { height: 5rem; }
}

/* Desktop nav */
.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
}
.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(41,35,92,0.85);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--color-gold);
  transition: width var(--transition-base);
}
.header-nav a:hover {
  color: var(--color-primary);
}
.header-nav a:hover::after {
  width: 100%;
}

/* Desktop header actions */
.header-actions {
  display: none;
}
@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
.header-phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.header-phone:hover {
  color: var(--color-gold);
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}
@media (min-width: 1024px) {
  .hamburger { display: none; }
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-primary);
  transition: transform 250ms ease, opacity 250ms ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 300ms ease, opacity 300ms ease;
  background: var(--color-white);
  border-top: 1px solid rgba(41,35,92,0.10);
}
.mobile-menu.open {
  max-height: 520px;
  opacity: 1;
}
.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover {
  color: var(--color-gold);
}
.mobile-menu .mobile-phone {
  font-weight: 600;
  color: var(--color-gold);
}

/* === 9. HERO SECTION ==================================== */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem; /* matches navbar height */
  min-height: 88vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
/* Desktop overlay (left-to-right) */
@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(41,35,92,0.82) 0%,
      rgba(41,35,92,0.55) 55%,
      rgba(41,35,92,0.25) 100%
    );
  }
}
/* Mobile overlay (top-to-bottom) */
@media (max-width: 1023px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(41,35,92,0.60) 0%,
      rgba(41,35,92,0.80) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hero-content { padding: 6rem 0; }
}

.hero-card {
  position: relative;
  background: rgba(41,35,92,0.95);
  padding: 2rem;
  max-width: 48rem;
}
@media (min-width: 640px) {
  .hero-card { padding: 3rem; background: var(--color-primary); }
}
@media (min-width: 1024px) {
  .hero-card { padding: 3.5rem; background: var(--color-primary); }
}

.hero-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 5rem;
  background: var(--color-gold);
}
.hero-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--color-white);
}
.hero-title .text-gold {
  color: var(--color-gold);
  font-weight: 600;
  font-style: normal;
}
.hero-title .text-sub {
  color: rgba(255,255,255,0.90);
  font-weight: 400;
  font-size: 0.72em;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.hero-tagline__line {
  flex-shrink: 0;
  height: 1px;
  width: 3rem;
  background: var(--color-gold);
}
.hero-tagline__text {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  font-style: italic;
}

.hero-body {
  margin-top: 2rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 36rem;
  font-weight: 300;
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; align-items: center; }
}

/* === 10. SERVICES SECTION =============================== */
.services-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-light);
}
@media (min-width: 640px) {
  .services-section { padding: 8rem 0; }
}

.section-header {
  display: grid;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .section-header {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: 4rem;
  }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 1.1;
  margin-top: 1.25rem;
}
.section-title .text-gold {
  color: var(--color-gold);
  font-weight: 600;
  font-style: normal;
}
.section-body {
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40rem;
}
@media (min-width: 640px) {
  .section-body { font-size: 1.125rem; }
}

/* Services image caption */
.service-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(41,35,92,0.85), transparent);
  padding: 1.5rem;
}
.service-img-caption__label {
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}
.service-img-caption__title {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  background: var(--color-white);
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background var(--transition-base);
}
@media (min-width: 640px) {
  .service-card { padding: 2.5rem; }
}
.service-card:hover {
  background: #fbfbfd;
}
.service-card:hover .icon-box {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.service-card__content { flex: 1; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.service-card__text {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* === 11. WHY US SECTION ================================= */
.why-us-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-off);
}
@media (min-width: 640px) {
  .why-us-section { padding: 8rem 0; }
}

.why-us-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .why-us-layout {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}

.why-us-sticky {
  position: static;
}
@media (min-width: 1024px) {
  .why-us-sticky {
    position: sticky;
    top: 8rem;
  }
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(41,35,92,0.10);
}
@media (min-width: 640px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

.reason-card {
  background: var(--color-white);
  padding: 1.75rem;
  transition: background var(--transition-base);
}
.reason-card:hover {
  background: var(--color-bg-off);
}
.reason-card:hover .icon-box {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.reason-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 1.5rem;
}
.reason-card__text {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* === 12. HOW IT WORKS SECTION =========================== */
.how-it-works-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
}
@media (min-width: 640px) {
  .how-it-works-section { padding: 8rem 0; }
}

.how-it-works-header {
  max-width: 48rem;
  margin-bottom: 5rem;
}
.how-it-works-header .section-title {
  color: var(--color-white);
}
.how-it-works-header .section-body {
  color: rgba(255,255,255,0.70);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.10);
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  position: relative;
  background: var(--color-primary);
  padding: 2rem;
  transition: background var(--transition-base);
}
@media (min-width: 640px) {
  .step-card { padding: 2.5rem; }
}
.step-card:hover {
  background: var(--color-primary-mid);
}
.step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.step-card__number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3rem;
  color: rgba(255,255,255,0.10);
  line-height: 1;
}
.step-card .icon-box {
  border-color: rgba(210,184,8,0.50);
  color: var(--color-gold);
}
.step-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.3;
  margin-top: 2.5rem;
}
.step-card__text {
  margin-top: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-size: 0.875rem;
}

/* === 13. CONTACT SECTION ================================ */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-light);
}
@media (min-width: 640px) {
  .contact-section { padding: 8rem 0; }
}

/* Photo gallery grid */
.shop-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.shop-gallery__main  { grid-column: span 12; overflow: hidden; }
.shop-gallery__thumb { grid-column: span 4;  overflow: hidden; }
@media (min-width: 768px) {
  .shop-gallery__main  { grid-column: span 6; }
  .shop-gallery__thumb { grid-column: span 2; }
}

.shop-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .shop-gallery img { height: 340px; }
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 7fr 5fr; gap: 3rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

/* Info cards (address/phone) */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(41,35,92,0.15);
}
@media (min-width: 640px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
}
.info-card {
  background: var(--color-white);
  padding: 1.75rem;
}
.info-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(41,35,92,0.15);
  color: var(--color-gold);
  flex-shrink: 0;
}
.info-card__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(41,35,92,0.60);
}
.info-card__value {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
}

/* Google Maps embed */
.maps-embed {
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.maps-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* Opening hours */
.hours-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem;
}
.hours-box__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hours-box__icon { color: var(--color-gold); }
.hours-box__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.hours-list { }
.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(41,35,92,0.10);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list__day {
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.hours-list__time {
  color: var(--color-text-muted);
}
.hours-list__time--closed {
  color: #e11d48;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .contact-actions { flex-direction: row; }
}
.contact-actions .btn { flex: 1; }

/* Contact form */
.contact-form-wrap {
  position: relative;
  background: var(--color-primary);
  padding: 2rem;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .contact-form-wrap { padding: 2.5rem; }
}
.contact-form-wrap__accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 4rem;
  background: var(--color-gold);
}
.contact-form-wrap__label {
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-gold);
}
.contact-form-wrap__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  margin-top: 1rem;
}
.contact-form-wrap__desc {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.65;
}

.contact-form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.form-field label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-base);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.30);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
}
.form-field textarea {
  resize: none;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #34d399;
  font-size: 0.75rem;
}
.form-note {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.65;
}

/* === 14. FAQ SECTION ==================================== */
.faq-section {
  position: relative;
  padding: 6rem 0;
  background: var(--color-primary);
  color: var(--color-white);
}
@media (min-width: 640px) {
  .faq-section { padding: 8rem 0; }
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-header .section-title {
  color: var(--color-white);
}

/* Accordion */
.faq-accordion {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-white);
  transition: color var(--transition-base);
}
.faq-trigger:hover {
  color: var(--color-gold);
}
.faq-trigger.active {
  color: var(--color-gold);
}
.faq-trigger__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
}
.faq-trigger__icon::before,
.faq-trigger__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.faq-trigger__icon::before {
  width: 16px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-trigger__icon::after {
  width: 1.5px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-trigger.active .faq-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}
.faq-content.open {
  max-height: 500px;
}
.faq-content__inner {
  padding: 0 0.5rem 2rem 0.5rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  font-size: 0.9375rem;
  max-width: 90%;
}

/* === 15. FOOTER ========================================= */
.site-footer {
  position: relative;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 5rem 0 2.5rem;
}
.site-footer__top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 5fr 4fr 3fr; gap: 3rem; }
}

.footer-logo {
  height: 6rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.90;
}
.footer-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 22rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
}
.footer-badge__icon { color: var(--color-gold); }
.footer-badge__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}
.footer-contacts { display: flex; flex-direction: column; gap: 1rem; }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
}
.footer-contacts li svg { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contacts a {
  transition: color var(--transition-fast);
}
.footer-contacts a:hover { color: var(--color-gold); }

/* OAM box */
.footer-oam-box {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-oam-img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255,255,255,0.95);
  border-radius: 0.375rem;
  padding: 0.25rem;
}
.footer-oam-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.50);
}
.footer-oam-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom__copy {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom__legal {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.footer-oam-full {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
}

/* === 16. STICKY WHATSAPP ================================ */
.sticky-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,0.55);
  transition: transform var(--transition-base);
  text-decoration: none;
}
.sticky-whatsapp:hover {
  transform: scale(1.08);
}

/* === 17. TOAST NOTIFICATION ============================= */
.toast-container {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
  min-width: 280px;
  max-width: 90vw;
}
.toast {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 250ms ease, transform 250ms ease;
  pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast--success { background: #16a34a; }
.toast--error   { background: #dc2626; }

/* === 18. PAGE / SINGLE TEMPLATES ======================== */
.page-content-area {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 60vh;
}
.page-content-area h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.page-content-area .entry-content {
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 44rem;
}
.page-content-area .entry-content p  { margin-bottom: 1.25rem; }
.page-content-area .entry-content h2,
.page-content-area .entry-content h3 { color: var(--color-primary); margin: 2rem 0 0.75rem; }
.page-content-area .entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content-area .entry-content a  { color: var(--color-gold); text-decoration: underline; }

/* WordPress core alignment classes */
.aligncenter { display: block; margin: 1.5rem auto; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption  { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === 19. ICON SVG BASE =================================== */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
