/* Global fixes */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
:root {
  --brand: #d4a373;
  --ink: #2a2a2a;
  --muted: #6b7280;
  --card: #f7f7f7;
  --line: #e5e7eb;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  line-height: 1.65;
}
body.no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
.small {
  font-size: 0.9rem;
  color: var(--muted);
}
.center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: saturate(140%) blur(4px);
  transition: background 0.2s;
}
.site-header[data-solid="true"] {
  background: rgba(0, 0, 0, 0.6);
}
.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo img {
  height: 60px; /* adjust to fit your header */
  width: auto; /* keeps proportions */
  display: block;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  text-decoration: underline;
}
.link-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 999px;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 34px;
  position: absolute;
  right: 20px;
}
.nav-toggle .bar {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle .bar:nth-child(1) {
  top: 9px;
}
.nav-toggle .bar:nth-child(2) {
  top: 16px;
}
.nav-toggle .bar:nth-child(3) {
  top: 23px;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 320px);
  height: 100vh;
  background: #0b0b0b;
  padding: 96px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
}
.mobile-menu .link-btn {
  border-color: rgba(255, 255, 255, 0.3);
}
.mobile-menu.open {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998; /* mobile menu is 999 in your CSS */
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  z-index: 0;
}
.hero-slides,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  background: var(--bg) center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.slide.active {
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 20px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6.2vw, 4rem);
  margin: 0 0 12px;
}
.hero p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 0 0 24px;
  color: #f5f5f5;
}
.btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  filter: brightness(0.95);
}
.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  font-size: 28px;
}

/* Testimonials */

#testimonials .service {
  font-style: italic;
}
#testimonials strong {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: var(--ink);
}

.translate-btn {
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.translate-btn:hover {
  background: #f7f7f7;
}

/* Sections */
section:not(.hero) {
  padding: clamp(56px, 8vw, 88px) clamp(16px, 4vw, 64px);
  max-width: 1200px;
  margin: auto;
}
section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-align: center;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  margin-bottom: 8px;
}
.section-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25em;
  font-weight: 600;
}

.service .price {
  font-weight: 600;
  margin-bottom: 0.75em;
  color: var(--brand, #444);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.about img {
  border-radius: 14px;
}
.about-text {
  font-size: 1rem;
}
.ticks {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.price-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25em;
  font-weight: 600;
}

.price-card .price {
  font-weight: 600;
  margin-bottom: 0.75em;
  color: var(--brand, #444);
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.15);
}
.price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 6px 0 8px;
}

/* NEW */
.services-grid,
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center; /* center the column track group */
}

/* Keep cards a consistent width and centered content */
.service,
.price-card {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* NEW */

.contact {
  text-align: center;
}
.contact form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.contact button {
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}
.address {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .about {
    grid-template-columns: 1fr;
  }
}

/* NEW BUTTON */

.see-more {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.see-more:hover {
  filter: brightness(0.95);
}

/* NEW BUTTON */

/* FB IG EMAIL & WHATSAPP */

.contact-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-links div h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #555;
}

.contact-links div a {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.contact-links div a:hover {
  color: #a87c5c; /* pick your brand accent */
}

textarea {
  resize: none;
}

/* Desktop only */

@media (min-width: 900px) {
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start; /* top-align both */
    gap: 2rem;
  }
  .about img {
    grid-column: 1;
  }
  .about-text {
    grid-column: 2; /* sits to the right of the image */
    align-self: start; /* lock to the top of its cell */
    justify-self: start; /* left-align within the column */
    text-align: left;
  }
}
