/* =============================================
   BENAKA SPA – Main Stylesheet
   Color Palette: Navy #0D1B2A | Gold #C9A84C | Cream #FAF6EF | Warm White #FFF9F2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0D1B2A;
  --navy-light: #162233;
  --gold: #C9A84C;
  --gold-light: #e4c87a;
  --cream: #FAF6EF;
  --warm: #FFF9F2;
  --text: #2c2c2c;
  --muted: #7a7a7a;
  --shadow: 0 8px 40px rgba(13, 27, 42, .12);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .4);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, .95);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 26px;
  font-size: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 300;
  transition: color .3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a1520;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 27, 42, .75) 40%, rgba(13, 27, 42, .2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '✦';
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s .8s both;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .8));
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: .4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── Feature Strip ── */
.features {
  background: var(--navy);
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: var(--transition);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(201, 168, 76, .2);
}

.feature-item:last-child::before {
  display: none;
}

.feature-item:hover {
  background: rgba(201, 168, 76, .05);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.feature-item p {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  font-weight: 300;
}

/* ── Services Preview ── */
.services-preview {
  background: var(--cream);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(13, 27, 42, .18);
}

.service-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.7;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 24px;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
}

.service-price span {
  font-size: .8rem;
  font-family: 'Jost', sans-serif;
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s;
}

.service-link:hover {
  gap: 10px;
}

/* ── About Section ── */
.about-section {
  background: var(--warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-tag .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about-tag .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.about-content {
  padding-left: 20px;
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-sub {
  text-align: left;
  margin-left: 0;
}

.about-checklist {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: rgba(201, 168, 76, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
}

.about-check p {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
}

.about-check h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--navy);
}

.testimonials .section-title,
.testimonials .section-label {
  color: #fff;
}

.testimonials .section-sub {
  color: rgba(255, 255, 255, .5);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}

.testi-card:hover {
  background: rgba(201, 168, 76, .07);
  border-color: rgba(201, 168, 76, .35);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.testi-author-info h4 {
  color: #fff;
  font-size: .9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.testi-author-info span {
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
}

/* ── Gallery Strip ── */
.gallery-strip {
  background: var(--cream);
  padding: 80px 0;
}

.gallery-strip .section-title {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, .6), transparent);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3351 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.cta-banner .section-sub {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 44px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #070f18;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.footer-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
}

.footer-brand p {
  color: rgba(255, 255, 255, .4);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, .45);
  font-size: .875rem;
  font-weight: 300;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col ul a::before {
  content: '→';
  font-size: .7rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}

.footer-col ul a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .ico {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
}

.footer-contact-item div {
  color: rgba(255, 255, 255, .45);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ── Page Header ── */
.page-header {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
}

.page-header .breadcrumb {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  margin-top: 12px;
}

.page-header .breadcrumb a {
  color: var(--gold);
}

/* ── Services Full Page ── */
.services-page {
  background: var(--cream);
}

.service-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(13, 27, 42, .15);
  color: var(--muted);
  background: #fff;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-full-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 27, 42, .15);
}

.service-full-card .card-img {
  height: 220px;
  overflow: hidden;
}

.service-full-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.service-full-card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  gap: 20px;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}

.card-meta .tag {
  color: var(--gold);
}

/* ── About Full Page ── */
.about-page {
  background: var(--warm);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-photo {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  margin-bottom: 4px;
}

.team-info span {
  font-size: .85rem;
  color: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.value-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Contact Page ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding: 48px 0;
}

.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-info>p {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.8;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.info-item h4 {
  font-size: .9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item p {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-sub {
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 36px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(13, 27, 42, .1);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
}

/* ── Hours ── */
.hours-table {
  width: 100%;
  margin-top: 36px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(13, 27, 42, .07);
}

.hours-table td {
  padding: 12px 0;
  font-size: .875rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 500;
}

.hours-table tr.today td {
  font-weight: 600;
  color: var(--navy);
}

/* ── Map ── */
.map-section {
  background: var(--cream);
  padding: 0;
}

.map-embed {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeInUp .7s ease both;
}

.delay-1 {
  animation-delay: .15s;
}

.delay-2 {
  animation-delay: .30s;
}

.delay-3 {
  animation-delay: .45s;
}

.delay-4 {
  animation-delay: .60s;
}

/* ── Google Reviews Widget ── */
.gmb-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: 20px;
  padding: 28px 40px;
  margin: 40px 0 56px;
  box-shadow: 0 4px 24px rgba(13, 27, 42, .07);
  flex-wrap: wrap;
  gap: 20px;
}

.gmb-badge-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gmb-rating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.gmb-stars-row {
  font-size: 1.3rem;
  color: #FBBC05;
  letter-spacing: 2px;
  line-height: 1;
}

.gmb-review-count {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.gmb-badge-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  transition: var(--transition);
  white-space: nowrap;
}

.gmb-badge-btn:hover {
  background: var(--navy);
  color: #fff;
}

.gmb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gmb-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(13, 27, 42, .06);
  transition: var(--transition);
}

.gmb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 27, 42, .12);
}

.gmb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.gmb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.gmb-meta {
  flex: 1;
}

.gmb-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Jost', sans-serif;
}

.gmb-date {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 1px;
}

.gmb-logo {
  flex-shrink: 0;
}

.gmb-stars {
  font-size: .95rem;
  color: #FBBC05;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.gmb-text {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.gmb-see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1.5px solid rgba(13, 27, 42, .15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  transition: var(--transition);
  background: #fff;
  box-shadow: 0 2px 16px rgba(13, 27, 42, .06);
}

.gmb-see-all:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cards,
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content {
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .service-cards,
  .services-full-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-tag {
    position: static;
    margin-top: 24px;
    display: inline-block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item::before {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}