/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --beige-light: #FAF6F0;
  --beige: #F5EDE0;
  --beige-dark: #EDE3D3;
  --beige-accent: #E8D9C5;
  --chocolate: #3C1A0B;
  --chocolate-light: #5C3A2B;
  --chocolate-medium: #7A5A4A;
  --gold-accent: #C9A96E;
  --gold-light: #D4B88A;
  --gold-dark: #A8863E;
  --cream: #FFF9F0;
  --shadow-soft: rgba(60, 26, 11, 0.08);
  --shadow-medium: rgba(60, 26, 11, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--beige);
  color: var(--chocolate);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--chocolate);
  line-height: 1.25;
}

p {
  font-size: 1.02rem;
  color: var(--chocolate-light);
  line-height: 1.9;
}

a {
  color: inherit;
}

/* ===== Subtle Background Texture ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Corner Flourishes ===== */
.corner-flourish {
  position: fixed;
  width: 54px;
  height: 54px;
  pointer-events: none;
  z-index: 60;
  opacity: 0.28;
}

.corner-flourish--tl {
  top: 14px;
  right: 14px;
  border-top: 1px solid var(--gold-accent);
  border-right: 1px solid var(--gold-accent);
  border-top-right-radius: 10px;
}

.corner-flourish--tr {
  top: 14px;
  left: 14px;
  border-top: 1px solid var(--gold-accent);
  border-left: 1px solid var(--gold-accent);
  border-top-left-radius: 10px;
}

.corner-flourish--bl {
  bottom: 14px;
  right: 14px;
  border-bottom: 1px solid var(--gold-accent);
  border-right: 1px solid var(--gold-accent);
  border-bottom-right-radius: 10px;
}

.corner-flourish--br {
  bottom: 14px;
  left: 14px;
  border-bottom: 1px solid var(--gold-accent);
  border-left: 1px solid var(--gold-accent);
  border-bottom-left-radius: 10px;
}

.corner-flourish::after {
  content: '◆';
  position: absolute;
  font-size: 5px;
  color: var(--gold-accent);
}

.corner-flourish--tl::after { top: 7px; right: 7px; }
.corner-flourish--tr::after { top: 7px; left: 7px; }
.corner-flourish--bl::after { bottom: 7px; right: 7px; }
.corner-flourish--br::after { bottom: 7px; left: 7px; }

/* ===== Desktop Side Navigation ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 22px 32px;
  background: linear-gradient(180deg, #FBF7F0 0%, #F3EADB 100%);
  border-right: 1px solid rgba(201, 169, 110, 0.25);
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 70px;
}

.sidebar-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(60, 26, 11, 0.12);
  transition: var(--transition-smooth);
}

.sidebar-brand:hover .sidebar-logo {
  transform: scale(1.05);
}

.sidebar-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  color: var(--chocolate);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.sidebar-link {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate-light);
  padding: 13px 8px;
  transition: var(--transition-smooth);
}

.sidebar-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.35s ease;
}

.sidebar-link:hover {
  color: var(--chocolate);
}

.sidebar-link:hover::after,
.sidebar-link.active::after {
  width: 18px;
}

.sidebar-link.active {
  color: var(--chocolate);
  font-weight: 600;
}

.sidebar-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  padding-top: 22px;
  width: 100%;
}

.sidebar-foot-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.sidebar-foot a {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--chocolate-medium);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.sidebar-foot a:hover {
  color: var(--gold-dark);
}

/* ===== Mobile Top Bar & Menu ===== */
.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}

.mobile-bar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate);
  background: linear-gradient(135deg, #7A421D 0%, #D49020 50%, #E5A832 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #FBF7F0 0%, #F3EADB 100%);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.mobile-menu-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate-light);
  transition: var(--transition-smooth);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--gold-dark);
}

.mobile-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.mobile-menu-foot a {
  font-size: 0.85rem;
  color: var(--chocolate-medium);
  text-decoration: none;
}

/* ===== Page Layout ===== */
.page {
  position: relative;
  z-index: 1;
  margin-left: 200px;
  min-height: 100vh;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ===== Section Eyebrow Label ===== */
.section-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--gold-accent);
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
}

.hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  max-width: 460px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-medium) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--chocolate-medium);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-medium) 55%, var(--gold-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(60, 26, 11, 0.25);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 249, 240, 0.25), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(60, 26, 11, 0.35);
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-photo {
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-accent);
  border-radius: 18px;
  opacity: 0.4;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 30px 60px var(--shadow-medium),
    0 0 0 1px rgba(201, 169, 110, 0.15);
  transition: var(--transition-smooth);
}

.hero-photo img:hover {
  transform: translateY(-6px);
}

/* ===== About Section ===== */
.about-section {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 22px;
  position: relative;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  margin-top: 18px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.06rem;
  line-height: 2;
  max-width: 540px;
}

.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
}

.stat-number::after {
  content: '+';
  color: var(--gold-dark);
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chocolate-medium);
}

.about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 24px 55px var(--shadow-medium),
    0 0 0 1px rgba(201, 169, 110, 0.15);
  transition: var(--transition-smooth);
}

.about-photo img:hover {
  transform: scale(1.01);
}

/* ===== Leafy Side Decorations ===== */
.leafy {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 430px;
  pointer-events: none;
  z-index: 2;
  animation: leafySway 9s ease-in-out infinite;
}

.leafy svg {
  width: 100%;
  height: 100%;
}

.leafy--left {
  left: 216px;
}

.leafy--right {
  right: 22px;
  animation-delay: 2.5s;
}

@keyframes leafySway {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(-50%) rotate(2.5deg); }
}

/* ===== Office Section ===== */
.office-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-light) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.office-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.office-text h2 {
  font-size: 2.4rem;
  margin-bottom: 22px;
  position: relative;
}

.office-text h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  margin-top: 18px;
  border-radius: 2px;
}

.office-text p {
  font-size: 1.06rem;
  line-height: 2;
  max-width: 520px;
}

.office-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate);
  border: 1px solid var(--gold-dark);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.office-cta:hover {
  color: var(--cream);
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--gold-dark) 100%);
  box-shadow: 0 12px 30px rgba(60, 26, 11, 0.25);
  transform: translateY(-3px);
}

.office-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 24px 55px var(--shadow-medium),
    0 0 0 1px rgba(201, 169, 110, 0.15);
  transition: var(--transition-smooth);
}

.office-photo img:hover {
  transform: scale(1.01);
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--beige) 55%, var(--beige-light) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 20px;
}

.portfolio-header .section-eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-header h2 {
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
}

.portfolio-header h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  border-radius: 2px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 48px;
}

.filter-btn {
  font-family: 'Playfair Display', serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--chocolate-light);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 40px;
  padding: 9px 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--gold-accent);
  color: var(--chocolate);
  background: rgba(201, 169, 110, 0.1);
}

.filter-btn.active {
  color: var(--cream);
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--gold-dark) 100%);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(60, 26, 11, 0.22);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-item {
  margin: 0;
}

.portfolio-item--hidden {
  display: none;
}

.portfolio-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 16px 40px var(--shadow-medium),
    0 0 0 1px rgba(201, 169, 110, 0.15);
  transition: var(--transition-smooth);
}

.portfolio-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 249, 240, 0.4);
  border-radius: 9px;
  pointer-events: none;
  z-index: 2;
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-image-wrapper figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(60, 26, 11, 0.12) 0%, rgba(60, 26, 11, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.portfolio-item:hover .portfolio-image-wrapper {
  transform: translateY(-6px);
  box-shadow:
    0 28px 55px var(--shadow-medium),
    0 0 0 2px rgba(201, 169, 110, 0.4);
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-item:hover figcaption {
  opacity: 1;
}

.portfolio-item-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 184, 138, 0.6);
  border-radius: 30px;
  padding: 4px 14px;
}

.portfolio-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.contact-section .section-eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-section h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact-section h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  border-radius: 2px;
}

.contact-subtitle {
  color: var(--gold-dark);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-top: 18px;
  margin-bottom: 46px;
  font-size: 0.98rem;
  letter-spacing: 2px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 36px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--beige-light) 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: var(--transition-smooth);
  min-width: 220px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
  border-color: rgba(201, 169, 110, 0.4);
}

.contact-icon {
  font-size: 1.7rem;
  color: var(--gold-accent);
  margin-bottom: 4px;
}

.contact-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--chocolate);
}

.contact-value {
  font-size: 0.98rem;
  color: var(--chocolate-light);
}

.contact-value a {
  color: var(--chocolate-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  transition: var(--transition-smooth);
}

.contact-value a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold-dark);
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chocolate-medium);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-dark);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--chocolate-medium);
  letter-spacing: 1.5px;
}

/* ===== Floating WhatsApp CTA ===== */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.65); }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

  .page {
    margin-left: 0;
    padding-top: 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  .hero-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .section-eyebrow::after,
  .hero .section-eyebrow::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-photo {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-photo img {
    height: 380px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .about-photo img {
    height: 340px;
  }

  .office-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .office-text {
    text-align: center;
  }

  .office-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .office-photo img {
    height: 340px;
  }

  .leafy {
    display: none;
  }

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

@media (max-width: 600px) {
  .container,
  .hero-inner {
    padding: 0 22px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-photo img {
    height: 300px;
  }

  .about-section,
  .portfolio-section,
  .contact-section {
    padding: 70px 0;
  }

  .office-section {
    padding: 70px 0;
  }

  .about-text h2,
  .office-text h2,
  .portfolio-header h2,
  .contact-section h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    gap: 26px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .office-photo img {
    height: 280px;
  }

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

  .portfolio-item img {
    height: 260px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-item {
    min-width: 100%;
  }

  .footer-links {
    gap: 22px;
  }
}
