:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --text: #1c1c1c;
  --muted: #626262;
  --line: #e8e2d7;
  --navy: #1f3a5f;
  --navy-2: #152b46;
  --gold: #d4a373;
  --gold-dark: #bf8a57;
  --soft: #f2ede5;
  --success: #235f49;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 14px 40px rgba(25, 38, 56, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, .btn, .mini-title, .logo-verse, .gallery-label { font-family: 'Poppins', Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,58,95,0.08);
}
.nav { min-height: 72px; display:flex; align-items:center; justify-content:space-between; gap: 18px; }
.logo-link { display:flex; align-items:center; gap: 12px; max-width: 420px; }
.logo-image { max-width: 260px; width: 100%; height: auto; }
.logo-verse { font-size: 13px; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.desktop-menu { display:flex; align-items:center; gap: 22px; color: #31445f; font-size: 15px; }
.desktop-menu a.active, .desktop-menu a:hover { color: var(--navy); font-weight: 700; }
.pill { border:1px solid rgba(31,58,95,0.12); padding: 10px 15px; border-radius:999px; font-size:14px; font-weight:600; }
.menu-toggle {
  display:none; width:48px; height:48px; border-radius:14px; border:1px solid rgba(31,58,95,0.12);
  background:#fff; box-shadow:0 10px 24px rgba(31,58,95,0.10); align-items:center; justify-content:center;
  flex-direction:column; gap:5px; cursor:pointer; transition: .2s ease;
}
.menu-toggle span { width:20px; height:2px; background:var(--navy); border-radius:999px; transition:.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display:none; border-top:1px solid rgba(31,58,95,0.08); background:#fff; box-shadow:0 18px 40px rgba(24,42,68,0.08); }
.mobile-menu.is-open { display:block; }
.mobile-menu-links { width:min(var(--max), calc(100% - 32px)); margin:0 auto; padding:16px 0 20px; display:grid; gap:10px; }
.mobile-menu-links a { padding:13px 12px; border-radius:14px; font-weight:600; color:#31445f; background:#fff; border:1px solid rgba(31,58,95,0.06); }
.mobile-menu-links a.active { color:var(--navy); background:var(--soft); }
.mobile-pill { text-align:center; }
.hero, .page-hero {
  color:#fff;
  background:
    linear-gradient(180deg, rgba(21,43,70,0.64), rgba(21,43,70,0.56)),
    url('img/hero-kitchen.jpg') center/cover no-repeat;
}
.hero-wrap { min-height:58vh; display:grid; place-items:center; text-align:center; padding:60px 0 56px; }
.page-hero .hero-wrap { min-height:40vh; }
.eyebrow {
  display:inline-flex; align-items:center; gap:8px; margin-bottom:18px; padding:8px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.26); background:rgba(255,255,255,0.08); font-size:12px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
}
h1 { margin:0; font-size: clamp(38px, 7vw, 72px); line-height:1.04; letter-spacing:-.03em; max-width: 900px; }
.hero p, .page-hero p { max-width:700px; margin:18px auto 0; font-size:18px; color:rgba(255,255,255,.92); }
.hero-actions { margin-top:28px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; min-width: 210px; padding:15px 24px; border-radius:999px;
  font-size:15px; font-weight:700; transition:.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color:#fff; box-shadow: 0 10px 30px rgba(212,163,115,0.28); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { background: rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.26); }
.stats-wrap { margin-top:-34px; position:relative; z-index:5; }
.stats { background:#fff; border-radius:24px; border:1px solid var(--line); box-shadow: var(--shadow); display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden; }
.stat { text-align:center; padding:26px 18px; border-right:1px solid var(--line); }
.stat:last-child { border-right:0; }
.stat strong { display:block; font-family:'Poppins', Arial, sans-serif; font-size:34px; color:var(--navy); line-height:1; margin-bottom:8px; }
.stat span { color:var(--muted); font-size:14px; }
section { padding: 86px 0; }
.section-head { text-align:center; max-width:760px; margin:0 auto 44px; }
.mini-title { margin:0 0 10px; color:var(--gold-dark); font-size:13px; text-transform:uppercase; letter-spacing:.11em; font-weight:700; }
.section-head h2 { margin:0 0 14px; font-size: clamp(30px, 5vw, 48px); line-height:1.08; letter-spacing:-.02em; color:var(--navy); }
.section-head p { margin:0; color:var(--muted); font-size:17px; }
.services-grid, .gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow: var(--shadow);
}
.card-media { position:relative; overflow:hidden; }
.card-media img { width:100%; height:235px; object-fit:cover; transition: transform .35s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding:24px; }
.card h3 { margin:0 0 10px; font-size:23px; line-height:1.15; color:var(--navy); }
.card p { margin:0 0 18px; color:var(--muted); font-size:15px; }
.card-link { font-family:'Poppins', Arial, sans-serif; font-weight:700; color:var(--gold-dark); font-size:14px; }
.soft { background: var(--bg); }
.about-grid, .contact-grid, .text-columns { display:grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items:center; }
.text-columns { grid-template-columns: repeat(2, 1fr); align-items:start; }
.about-box, .service-detail, .contact-card, .compact-services {
  background:#fff; border-radius:24px; border:1px solid var(--line); box-shadow: var(--shadow);
}
.about-box, .service-detail, .contact-card, .compact-services { padding: 30px; }
.about-box h3, .service-detail h3, .compact-services h3 { margin:0 0 12px; font-size:28px; color:var(--navy); }
.about-box p, .service-detail p, .compact-services p { margin:0; color:var(--muted); }
.service-list { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.service-chip { padding:10px 14px; border-radius:999px; background:var(--soft); color:var(--navy); font-size:14px; font-weight:700; }
.about-image img { width:100%; height:520px; object-fit:cover; border-radius:28px; box-shadow: var(--shadow); }
.bullets { margin:16px 0 0; padding-left:18px; color:var(--muted); }
.bullets li { margin: 0 0 10px; }
.services-page-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; align-items:start; }
.service-card-pro { padding: 18px 18px 16px; }
.service-card-pro h3 { font-size: 22px; margin-bottom: 10px; }
.service-card-pro p { font-size: 14px; line-height: 1.65; }
.service-card-image { margin-top: 16px; }
.service-card-image img { width:100%; height:150px; object-fit:cover; border-radius: 14px; display:block; }
.service-card-copy .bullets { margin: 14px 0 0; }
.service-card-copy .bullets li { margin-bottom: 8px; font-size: 14px; }
.compact-chip-list { margin-top: 16px; }
.compact-chip-list .service-chip { font-size: 12px; padding: 8px 12px; }
.additional-card-pro { min-height: 100%; display:flex; align-items:flex-start; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.gallery-item {
  position:relative;
  min-height:320px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(25,38,56,.10);
  cursor:pointer;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position:absolute; left:16px; bottom:16px; background:rgba(255,255,255,.94); color:var(--navy);
  padding:10px 14px; border-radius:999px; font-size:13px; font-weight:700;
}
.testimonials { background: linear-gradient(180deg, #244770 0%, #1f3a5f 100%); color:#fff; overflow:hidden; }
.testimonials .section-head h2, .testimonials .section-head p, .testimonials .mini-title { color:#fff; }
.testimonial-carousel {
  position:relative;
  margin-top:10px;
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.9) 8%, rgba(0,0,0,.9) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.9) 8%, rgba(0,0,0,.9) 92%, transparent 100%);
}
.testimonial-track {
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:12px 0 10px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.testimonial-track::-webkit-scrollbar { display:none; }
.testimonial-card {
  flex:0 0 clamp(280px, 31vw, 380px);
  scroll-snap-align:center;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:24px;
  padding:28px;
  min-height:238px;
  box-shadow:0 18px 40px rgba(4, 15, 28, 0.14);
  transition:transform .45s ease, opacity .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease;
  transform:scale(.92);
  opacity:.62;
}
.testimonial-card.is-featured {
  transform:scale(1);
  opacity:1;
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.28);
  box-shadow:0 28px 60px rgba(4, 15, 28, 0.22);
}
.stars { font-size:18px; letter-spacing:2px; color:#ffd27f; margin-bottom:14px; }
.testimonial-card p { margin:0 0 18px; font-size:16px; line-height:1.68; color:rgba(255,255,255,0.97); }
.testimonial-card strong { display:block; color:#fff; font-size:15px; font-family:'Poppins', Arial, sans-serif; letter-spacing:.02em; }
.contact { background: linear-gradient(180deg, #0f2430 0%, #122f3e 100%); color:#fff; }
.contact-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
.contact-card h2 { margin:0 0 10px; font-size:44px; line-height:1.06; color:#fff; }
.contact-card p { margin:0 0 22px; color:rgba(255,255,255,0.78); font-size:17px; }
.info-block { margin-top:22px; display:grid; gap:18px; }
.info-block strong { display:block; font-family:'Poppins', Arial, sans-serif; margin-bottom:4px; font-size:18px; }
.info-block span, .info-block a { color:rgba(255,255,255,0.90); font-size:17px; }
.socials { display:flex; gap:14px; margin-top:24px; flex-wrap:wrap; }
.social { width:42px; height:42px; border-radius:999px; background:rgba(255,255,255,0.10); display:grid; place-items:center; font-weight:700; border:1px solid rgba(255,255,255,0.10); }
form { display:grid; gap:14px; }
input, textarea {
  width:100%; border:1px solid rgba(255,255,255,0.14); background:rgba(255,255,255,0.05); color:#fff; border-radius:16px;
  padding:15px 16px; font-family:'Open Sans', Arial, sans-serif; font-size:15px; outline:none;
}
input::placeholder, textarea::placeholder { color:rgba(255,255,255,0.56); }
textarea { min-height: 140px; resize: vertical; }

.site-footer {
  background: linear-gradient(180deg, #102634 0%, #0c1d28 100%);
  color: #fff;
  padding: 34px 0 18px;
  margin-top: 0;
}
.floating-whatsapp, .back-to-top {
  position: fixed; right: 18px; z-index: 999; width: 56px; height: 56px; border-radius: 999px; display:grid; place-items:center;
  color:#fff; box-shadow: 0 12px 28px rgba(17,24,31,.25); transition:.2s ease;
}
.floating-whatsapp {
  bottom: 18px;
  background: linear-gradient(180deg, #2eea7d 0%, #18c964 100%);
  border: 1px solid rgba(255,255,255,.22);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.floating-whatsapp:hover svg { transform: scale(1.05); }
.floating-whatsapp svg { transition: transform .2s ease; }
.back-to-top {
  bottom: 84px; background: var(--navy); font-size: 22px; opacity:0; pointer-events:none; transform: translateY(12px);
}
.back-to-top.show { opacity:1; pointer-events:auto; transform: translateY(0); }
.floating-whatsapp:hover, .back-to-top:hover { transform: translateY(-2px); }
.lightbox {
  position: fixed; inset:0; background: rgba(5,12,22,.88); display:none; align-items:center; justify-content:center; padding: 24px; z-index: 1200;
}
.lightbox.open { display:flex; }
.lightbox img { max-width:min(1100px, 95vw); max-height: 88vh; border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.lightbox-close {
  position:absolute; top:18px; right:18px; width:46px; height:46px; border-radius:999px; border:0; cursor:pointer;
  background: rgba(255,255,255,.14); color:#fff; font-size:22px;
}
.notice-success { background:#e8f6f0; color:#1f5d46; border:1px solid #cceadf; border-radius:16px; padding:16px 18px; }
@media (max-width: 980px) {
  .desktop-menu { display:none; }
  .menu-toggle { display:flex; }
  .nav { min-height:70px; }
  .logo-link { max-width:none; width: calc(100% - 60px); justify-content:center; }
  .logo-image { max-width: 220px; }
  .logo-verse { font-size:12px; }
  .stats, .services-grid, .about-grid, .gallery-grid, .contact-grid, .text-columns, .services-page-grid { grid-template-columns:1fr; }
  .services-page-grid { gap: 22px; }
  .footer-pro { grid-template-columns:1fr; gap: 18px; }
  .footer-info-grid { grid-template-columns:1fr; }
  .footer-minimal-links { justify-items:start; grid-template-columns: repeat(2, minmax(0,1fr)); display:grid; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-logo img { height: 34px; }
  .stat { border-right:0; border-bottom:1px solid var(--line); }
  .stat:last-child { border-bottom:0; }
  section { padding: 72px 0; }
  .hero-wrap { min-height: 54vh; padding: 48px 0 44px; }
  .page-hero .hero-wrap { min-height: 34vh; }
  h1 { font-size: 42px; }
  .hero p, .page-hero p { font-size:16px; }
  .btn { width:100%; min-width: 0; }
  .hero-actions { flex-direction:column; }
  .stats-wrap { margin-top: -18px; }
  .about-image img { height: 360px; }
  .contact-card h2 { font-size: 36px; }
  .floating-whatsapp, .back-to-top { width:52px; height:52px; right:14px; }
  .floating-whatsapp { bottom:14px; }
  .floating-whatsapp svg { width:30px; height:30px; }
  .back-to-top { bottom:76px; }
}

.gallery-hero { background: linear-gradient(180deg, rgba(22,33,49,.62), rgba(22,33,49,.54)), url('img/hero-kitchen.jpg') center/cover no-repeat; }
.gallery-filter-bar { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin:0 0 30px; }
.gallery-filter {
  border:1px solid #d8d2c8; background:#fff; color:var(--navy); border-radius:999px; padding:12px 18px;
  font-family:'Poppins',Arial,sans-serif; font-weight:700; cursor:pointer; transition:.2s ease;
}
.gallery-filter:hover, .gallery-filter.is-active { background:var(--navy); color:#fff; border-color:var(--navy); }
.gallery-grid-pro { align-items:stretch; }
.gallery-card { min-height:0; aspect-ratio: 7 / 5; }
.gallery-card img { width:100%; height:100%; object-fit:cover; display:block; }
.gallery-overlay {
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:18px;
  background:linear-gradient(180deg, rgba(15,24,31,0.05), rgba(15,24,31,0.74)); color:#fff;
}
.gallery-chip {
  align-self:flex-start; margin-bottom:auto; background:rgba(255,255,255,.14); color:#fff;
  border:1px solid rgba(255,255,255,.16); padding:8px 12px; border-radius:999px; font-size:12px; font-weight:700;
}
.gallery-overlay h3 { margin:18px 0 8px; font-size:24px; line-height:1.1; color:#fff; }
.gallery-open { font-size:14px; font-weight:700; color:#ffd8a8; }
.gallery-card.is-hidden { display:none; }

.lightbox {
  position:fixed; inset:0; z-index:99; display:none; align-items:center; justify-content:center;
  background:rgba(9,15,24,.88); padding:24px;
}
.lightbox.open { display:flex; }
.lightbox-stage { position:relative; width:min(1180px, 100%); display:flex; align-items:center; justify-content:center; }
.lightbox img { max-width:min(1000px, 84vw); max-height:82vh; border-radius:20px; box-shadow:0 24px 60px rgba(0,0,0,.36); background:#fff; }
.lightbox-close, .lightbox-nav {
  position:absolute; width:48px; height:48px; border-radius:999px; border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.12); color:#fff; display:grid; place-items:center; cursor:pointer; font-size:26px;
}
.lightbox-close { top:-60px; right:0; }
.lightbox-nav.prev { left:8px; }
.lightbox-nav.next { right:8px; }
.lightbox-caption {
  position:absolute; left:0; right:0; bottom:-72px; text-align:center; color:#fff;
}
.lightbox-caption strong { display:block; font-family:'Poppins',Arial,sans-serif; font-size:22px; margin-bottom:6px; }
.lightbox-caption span { color:rgba(255,255,255,.78); font-size:15px; }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-card { aspect-ratio: 7 / 5; }
  .gallery-overlay h3 { font-size:20px; }
  .lightbox { padding:18px; }
  .lightbox img { max-width:92vw; max-height:72vh; }
  .lightbox-close { top:-56px; right:8px; }
  .lightbox-nav.prev { left:-4px; }
  .lightbox-nav.next { right:-4px; }
  .lightbox-caption { bottom:-86px; }
}
/* Contact + footer polish */
.contact {
  background: linear-gradient(180deg, #0c2434 0%, #0a1b28 100%);
}
.contact-grid {
  align-items: stretch;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  padding: 34px;
}
.contact-card form {
  height: 100%;
  align-content: start;
}
.contact-card .btn {
  min-width: 0;
}
.site-footer {
  background: linear-gradient(180deg, #0b2535 0%, #071b28 100%);
  color: #fff;
  padding: 52px 0 22px;
}
.footer-shell {
  display: grid;
  gap: 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.footer-title-block h2 {
  margin: 0 0 8px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.98;
  color: #fff;
}
.footer-title-block p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.footer-back-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  min-width: 196px;
}
.footer-back-pill:hover {
  color: var(--gold);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr;
  gap: 26px;
  align-items: start;
}
.footer-contact-stack,
.footer-center-stack,
.footer-side-note {
  min-height: 100%;
}
.footer-contact-stack {
  display: grid;
  gap: 24px;
}
.footer-line-item {
  display: grid;
  gap: 8px;
}
.footer-line-label {
  color: rgba(255,255,255,.96);
  font-size: 16px;
  font-weight: 800;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-line-item a,
.footer-line-item span {
  color: rgba(255,255,255,.86);
  font-size: 28px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-word;
}
.footer-center-stack {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}
.footer-brand-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.96);
}
.footer-social-title {
  color: rgba(255,255,255,.86);
  font-size: 18px;
  font-weight: 700;
}
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight: 700;
}
.footer-side-note {
  display: grid;
  align-content: end;
}
.footer-side-note p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}
.footer-bottom-modern {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
@media (max-width: 980px) {
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }
  .contact-card h2 {
    font-size: 34px;
  }
  .footer-top,
  .footer-main-grid,
  .footer-bottom-modern {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-back-pill {
    width: 100%;
    min-width: 0;
  }
  .footer-title-block h2 {
    font-size: 34px;
  }
  .footer-title-block p {
    font-size: 16px;
  }
  .footer-line-item a,
  .footer-line-item span {
    font-size: 20px;
  }
  .footer-center-stack {
    justify-items: flex-start;
    text-align: left;
  }
  .footer-socials {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding-top: 40px;
  }
  .footer-shell {
    gap: 22px;
  }
  .footer-contact-stack {
    gap: 18px;
  }
  .footer-line-label {
    font-size: 15px;
  }
  .footer-line-item a,
  .footer-line-item span {
    font-size: 18px;
  }
}
/* Sitewide gentle slide animations */
.reveal-ready {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity .78s cubic-bezier(.22,.61,.36,1),
    transform .78s cubic-bezier(.22,.61,.36,1);
}
.reveal-left { transform: translate3d(-30px, 0, 0); }
.reveal-right { transform: translate3d(30px, 0, 0); }
.reveal-up { transform: translate3d(0, 34px, 0); }
.reveal-up-soft { transform: translate3d(0, 22px, 0); }
.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-wrap > div.reveal-ready,
.footer-top > *.reveal-ready,
.footer-main-grid > *.reveal-ready,
.footer-bottom-modern.reveal-ready,
.contact-grid > *.reveal-ready,
.text-columns > *.reveal-ready,
.about-grid > *.reveal-ready,
.services-grid > *.reveal-ready,
.gallery-grid > *.reveal-ready,
.testimonial-track > *.reveal-ready,
.compact-services.reveal-ready,
.gallery-filter-bar.reveal-ready,
.stats-wrap.reveal-ready {
  backface-visibility: hidden;
}

