:root {
  --color-maroon: #7b2d42;
  --color-maroon-dark: #5c2232;
  --color-gold: #c9a227;
  --color-gold-light: #e8d08a;
  --color-ivory: #faf7f2;
  --color-charcoal: #2c2c2c;
  --color-muted: #6b6b6b;
  --color-white: #ffffff;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-heading-weight: 600;
  --tracking-heading: -0.025em;
  --tracking-nav: 0.04em;
  --leading-body: 1.7;
  --leading-heading: 1.15;
  --shadow-soft: 0 10px 40px rgba(44, 44, 44, 0.08);
  --radius: 12px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: var(--leading-body);
  letter-spacing: 0.01em;
  color: var(--color-charcoal);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  margin-top: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  background: var(--color-white);
  padding: 0.75rem 1rem;
  clip: auto;
  width: auto;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

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

.btn--gold:hover {
  background: var(--color-gold-light);
  color: var(--color-charcoal);
}

.btn--outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-maroon);
}

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

.btn--maroon:hover {
  background: var(--color-maroon-dark);
  color: var(--color-white);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(123, 45, 66, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.site-title {
  display: flex;
  flex-direction: column;
  color: var(--color-maroon);
}

.site-title__name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: var(--tracking-heading);
  line-height: 1.1;
}

.site-title__tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--color-muted);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}

.primary-menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--color-maroon);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-maroon);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-maroon-dark), var(--color-maroon));
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 44, 44, 0.75), rgba(44, 44, 44, 0.25));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}

.hero__eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__subheadline {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--white {
  background: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  font-family: var(--font-body);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section__header h2 {
  font-size: clamp(2.125rem, 3.25vw, 2.875rem);
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--color-muted);
  margin: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 2rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
}

.trust-stat__label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__image img,
.placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-gold));
  opacity: 0.35;
}

.card__body {
  padding: 1.5rem;
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.card__body h3 {
  color: var(--color-maroon);
  margin-bottom: 0.5rem;
}

.card__body p {
  color: var(--color-muted);
  margin: 0;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: var(--color-maroon);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.testimonial-card__quote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img,
.testimonial-card__avatar .placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.star-rating .star {
  color: #ddd;
}

.star-rating .star.is-filled {
  color: var(--color-gold);
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-dark));
  color: var(--color-white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

/* Page header */
.page-header {
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.92;
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--color-gold-light);
}

.page-content {
  padding: 4rem 0;
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.page-content p,
.content-narrow p {
  margin: 0 0 1.35em;
}

.page-content h2,
.content-narrow h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 2.25rem 0 1rem;
}

.page-content h3,
.content-narrow h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin: 1.75rem 0 0.75rem;
}

.page-content ul,
.page-content ol,
.content-narrow ul,
.content-narrow ol {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.page-content li + li,
.content-narrow li + li {
  margin-top: 0.5em;
}

/* Gallery filter */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-maroon);
  border-radius: 999px;
  background: transparent;
  color: var(--color-maroon);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--color-maroon);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

/* FAQ accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-maroon);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  display: none;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  color: var(--color-maroon);
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form input[type="submit"] {
  background: var(--color-maroon);
  color: var(--color-white);
  border: 0;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  width: auto;
}

.map-embed {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* Portfolio single */
.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-muted);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Blog */
.post-list {
  display: grid;
  gap: 2rem;
}

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.post-card__content {
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.entry-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}

.site-footer a {
  color: var(--color-gold-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.site-footer__title {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 0.5rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: #25d366;
  color: var(--color-white);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  color: var(--color-white);
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    inset: 80px 0 auto 0;
    background: var(--color-ivory);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(123, 45, 66, 0.1);
  }

  .primary-navigation.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-menu {
    flex-direction: column;
    width: 100%;
  }

  .contact-grid,
  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card__content {
    padding: 0 1.5rem 1.5rem;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }
}
