:root {
  --ivory: #FBF8F1;
  --paper: #FFFFFF;
  --charcoal: #191614;
  --charcoal-soft: #262220;
  --gold: #C9A227;
  --gold-bright: #D4AF37;
  --gold-light: #E8CE7B;
  --maroon: #7A1F1F;
  --maroon-deep: #551313;
  --ink: #2A2420;
  --ink-soft: #6b6058;
  --line: rgba(122, 31, 31, 0.14);
  --radius: 14px;
  --shadow: 0 20px 50px -25px rgba(25, 22, 20, 0.35);
  --serif: 'Playfair Display', serif;
  --sans: 'Poppins', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 110px 0;
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
}

/* ---------- Groove motif (disabled/hidden) ---------- */
.grooves,
.hero-grooves,
.groove-divider {
  display: none !important;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold-bright);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 600;
}

h2.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  max-width: 640px;
}

.lede {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 560px;
  margin-top: 16px;
}

/* ---------- Nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(25, 22, 20, 0.0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}

header.scrolled {
  background: rgba(25, 22, 20, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 12px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.preloader-logo-img {
  max-width: 180px !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  margin: 0 auto;
  animation: logoPulse 1.8s infinite ease-in-out;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
}

.footer-logo-img {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.mobile-logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-bright);
  transition: width .3s ease;
}

.nav-links a:hover::after,
.nav-links a.current::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-bright);
  color: var(--charcoal) !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 24px;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--ivory);
  font-size: 28px;
  background: none;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(25, 22, 20, 0.75) 0%, rgba(25, 22, 20, 0.85) 100%), url('assets/images/hero_bg.png') no-repeat center center;
  background-size: cover;
  padding-top: 140px;
}

.hero-grooves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.16;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero .eyebrow::before {
  background: var(--gold-bright);
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

.hero p.sub {
  color: #cfc7bd;
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(212, 175, 55, 0.5);
}

.btn-ghost {
  border: 1.5px solid rgba(251, 248, 241, 0.35);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--ivory);
}

.btn-maroon:hover {
  background: var(--maroon-deep);
  transform: translateY(-3px);
}

.stat-row {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(251, 248, 241, 0.14);
  padding-top: 34px;
}

.stat b {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-bright);
  display: block;
  font-weight: 700;
}

.stat span {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a89e93;
}

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

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.about-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: url('assets/images/about_upvc.png') no-repeat center center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.about-visual .plate {
  display: none !important;
}

.about-visual .plate p {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-body p {
  color: var(--ink-soft);
  margin-top: 18px;
  font-size: 15.5px;
}

.about-body p:first-of-type {
  margin-top: 22px;
}

.badge-row {
  display: flex;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.badge svg {
  width: 20px;
  height: 20px;
  color: var(--maroon);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.9);
}

.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card svg {
  width: 24px;
  height: 24px;
  color: var(--maroon);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.8px;
  color: var(--ink-soft);
}

/* ---------- Why choose ---------- */
.why-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.why-section .eyebrow {
  color: var(--gold-light);
}

.why-section .eyebrow::before {
  background: var(--gold-bright);
}

.why-section h2 {
  color: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: rgba(251, 248, 241, 0.1);
  border: 1px solid rgba(251, 248, 241, 0.1);
}

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why-item {
  background: var(--charcoal);
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item span {
  font-size: 14.5px;
  font-weight: 500;
}

/* ---------- Portfolio ---------- */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 44px 0 8px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .25s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.masonry {
  columns: 3 280px;
  column-gap: 20px;
  margin-top: 24px;
  min-height: 400px;
}

.m-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.m-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.m-item .fill {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--charcoal-soft), var(--maroon-deep));
}

.m-item .fill img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.m-item:hover .fill img {
  transform: scale(1.08);
}

.m-item:nth-child(3n+1) .fill {
  padding-top: 130%;
}

.m-item:nth-child(3n+2) .fill {
  padding-top: 100%;
}

.m-item:nth-child(3n) .fill {
  padding-top: 115%;
}

.m-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(25, 22, 20, 0.95) 0%, rgba(25, 22, 20, 0.4) 50%, rgba(25, 22, 20, 0) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}

.m-item:hover .overlay {
  opacity: 1;
}

.m-item .cat-tag {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.m-item .cat-name {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 20px;
}

.m-item .cat-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold-light);
  opacity: 0.85;
  z-index: 2;
}

.m-item .cat-icon svg {
  width: 26px;
  height: 26px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.lightbox-box {
  background: var(--charcoal-soft);
  border-radius: 14px;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.open .lightbox-box {
  transform: scale(1);
}

.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-content {
  padding: 34px 40px;
  text-align: left;
}

.lightbox-box h3 {
  color: var(--gold-bright);
  font-size: 24px;
  margin-bottom: 12px;
}

.lightbox-box p {
  color: #c9c1b7;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--ivory);
  font-size: 28px;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--maroon);
  color: #fff;
}

.lightbox-cta {
  width: 100%;
}

/* ---------- Process ---------- */
.process-list {
  margin-top: 60px;
  position: relative;
}

.process-list::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.p-step {
  display: flex;
  gap: 28px;
  padding: 0 0 44px;
  position: relative;
}

.p-step:last-child {
  padding-bottom: 0;
}

.p-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--maroon);
  flex-shrink: 0;
  z-index: 1;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.p-body h3 {
  font-size: 19px;
  margin-bottom: 6px;
  padding-top: 12px;
}

.p-body p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 480px;
}

/* ---------- Founder ---------- */
.founder-section {
  background: var(--ivory);
}

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

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

.monogram {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--maroon), var(--maroon-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.monogram span {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold-light);
  font-weight: 700;
}

.founder-body h3 {
  font-size: 26px;
}

.founder-role {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 6px 0 18px;
}

.founder-body p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 14px;
}

.expertise-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.expertise-tags span {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
}

.mission-quote {
  border-left: 3px solid var(--gold-bright);
  padding-left: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
}

/* ---------- Testimonials ---------- */
.testi-section {
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}

.testi-section .eyebrow {
  color: var(--gold-light);
}

.testi-section .eyebrow::before {
  background: var(--gold-bright);
}

.testi-track-wrap {
  position: relative;
  margin-top: 50px;
  width: 100%;
}

.testi-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testi-slide {
  min-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.testi-card {
  background: rgba(38, 34, 32, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.testi-card:hover {
  border-color: var(--gold-bright);
}

.stars {
  color: var(--gold-bright);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-card p.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.testi-card .who {
  color: #a89e93;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.3);
  transition: background .25s ease, transform .25s ease;
  padding: 0;
  border: none;
}

.testi-dot.active {
  background: var(--gold-bright);
  transform: scale(1.3);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}

.faq-q .plus {
  font-size: 22px;
  color: var(--maroon);
  transition: transform .3s ease;
  font-weight: 300;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  color: var(--ink-soft);
  font-size: 14.5px;
  padding-top: 14px;
  max-width: 640px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  margin-top: 50px;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 31, 31, 0.08);
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.9);
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card svg {
  width: 20px;
  height: 20px;
  color: var(--maroon);
}

.contact-card b {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-card span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
}

.map-plate {
  margin-top: 24px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--charcoal), var(--maroon-deep));
  padding: 30px;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-plate h4 {
  font-family: var(--serif);
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--gold-light);
}

.map-cities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-cities span {
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  background: rgba(251, 248, 241, 0.05);
}

.form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-card label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--ivory);
  color: var(--ink);
  transition: var(--transition);
}

.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.full-row {
  margin-bottom: 16px;
}

.form-card button {
  width: 100%;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal);
  color: #a89e93;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(251, 248, 241, 0.1);
}

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

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

.footer-grid h4 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: 13.5px;
}

.footer-grid ul li a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

.footer-brand p {
  font-size: 13.5px;
  margin: 16px 0 20px;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(251, 248, 241, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  color: #a89e93;
}

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

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  animation: pulse 2.6s infinite;
  color: #fff;
  transition: transform .25s ease;
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  }
}

.to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background-color .3s ease, color .3s ease, transform .3s ease;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--gold-bright);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(0.25, 1, 0.5, 1), transform .8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Multi-Page View System Styling ---------- */
.page-hero {
  min-height: auto;
  padding: 168px 0 64px;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
}

.page-hero .hero-content {
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 16px;
}

.page-hero p.sub {
  margin-bottom: 0;
}

.nav-links a.current::after {
  width: 100%;
}

.nav-links a {
  cursor: pointer;
}

.footer-grid a {
  cursor: pointer;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
  animation: fadeInView 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: visible;
}

.preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  font-size: 28px;
  border-width: 2px;
  animation: logoPulse 1.8s infinite ease-in-out;
}

.preloader-text {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 1px;
}

.preloader-bar {
  width: 140px;
  height: 2px;
  background: rgba(251, 248, 241, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.preloader-progress {
  width: 0;
  height: 100%;
  background: var(--gold-bright);
  animation: loadProgress 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 4px rgba(212, 175, 55, 0.4);
  }
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* ---------- Blog Section ---------- */
.blog-section {
  background: var(--ivory);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

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

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-bright);
}

.blog-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(4px);
  color: var(--gold-bright);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.blog-card:hover .blog-body h3 {
  color: var(--maroon);
}

.blog-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card:hover .blog-link {
  color: var(--gold-bright);
  gap: 10px;
}

/* ---------- Map Iframe Styling ---------- */
.map-iframe-container {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  filter: grayscale(1) invert(0.9) sepia(0.2) hue-rotate(340deg) saturate(1.2);
  transition: filter 0.5s ease, border-color 0.5s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.map-iframe-container:hover {
  filter: none;
  border-color: var(--gold-bright);
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-bright);
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-map-link:hover {
  color: var(--maroon);
  transform: translateX(4px);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--ivory);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content h2 {
  color: var(--ivory);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  font-family: var(--serif);
}

.cta-content p {
  color: var(--gold-light);
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 38px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-success {
  background: #128c7e;
  color: var(--ivory);
}

.btn-success:hover {
  background: #075e54;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
}

/* ---------- Floating Phone Button ---------- */
.float-phone {
  position: fixed;
  bottom: 94px;
  right: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--maroon);
  border: 1px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  color: var(--gold-bright);
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.float-phone:hover {
  transform: scale(1.08);
  background: var(--maroon-deep);
  color: var(--ivory);
}

.float-phone svg {
  width: 24px;
  height: 24px;
}

/* ---------- Blog Modal Styling ---------- */
.blog-modal-box {
  max-width: 760px !important;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px !important;
  background: var(--paper) !important;
  border: 1px solid var(--gold-bright) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
}

.blog-modal-body .article-lead {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--charcoal);
  border-left: 3px solid var(--gold-bright);
  padding-left: 16px;
  margin-bottom: 22px;
  line-height: 1.65;
  background: rgba(212, 175, 55, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0 6px 6px 0;
}
