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

:root {
  --gold: #BF8339;
  --gold-hover: #A67330;
  --beige: #F2E6DF;
  --dark: #2D2D2D;
  --dark-text: #1A1A1A;
  --gray-text: #555;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.text-gold { color: var(--gold); }

.section-label {
  display: block;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  color: var(--gray-text);
  max-width: 42rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

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

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.05);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: rgba(191,131,57,0.1);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-large .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero Section */
.hero {
  background: var(--beige);
}

.carousel-container {
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

@media (min-width: 768px) {
  .carousel-track { gap: 1.5rem; }
}

.carousel-item {
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05) !important;
}

.carousel-item.large {
  width: 128px;
  height: 160px;
}

.carousel-item.medium {
  width: 112px;
  height: 144px;
}

@media (min-width: 768px) {
  .carousel-item.large { width: 176px; height: 224px; }
  .carousel-item.medium { width: 144px; height: 176px; }
}

@media (min-width: 1024px) {
  .carousel-item.large { width: 208px; height: 256px; }
  .carousel-item.medium { width: 176px; height: 208px; }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content { padding: 4rem 1.5rem 5rem; }
}

.hero-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3rem; }
}

.highlight-wrapper {
  display: block;
  position: relative;
}

.highlight-text {
  position: relative;
  z-index: 1;
}

.highlight-bar {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: rgba(191,131,57,0.3);
  z-index: 0;
  transform: rotate(-1deg);
}

.hero-subtitle {
  color: var(--gray-text);
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.125rem; }
}

.break-mobile {
  display: block;
}

@media (min-width: 768px) {
  .break-mobile { display: inline; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn { width: auto; }
}

/* Dropdown */
.dropdown {
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  .dropdown { width: auto; }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 10;
}

.dropdown-menu.show { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: var(--beige);
}

.chevron {
  transition: transform 0.3s;
}

.chevron.open { transform: rotate(180deg); }

/* Services Section */
.services {
  background: var(--beige);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .services { padding: 6rem 0; }
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-image {
  aspect-ratio: 4/5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .service-title { font-size: 1.25rem; }
}

.service-description {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* About Section */
.about {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .about { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .about { padding: 8rem 0; }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-image-decoration-1 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(191,131,57,0.1);
  border-radius: 0.5rem;
  z-index: -1;
}

.about-image-decoration-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: var(--beige);
  border-radius: 0.5rem;
  z-index: -1;
}

.about-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .about-title { font-size: 3rem; }
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray-text);
}

.about-text strong {
  color: var(--dark-text);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  padding: 0.5rem 1rem;
  background: var(--beige);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Credentials Section */
.credentials {
  background: var(--white);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .credentials { padding: 6rem 0; }
}

.credentials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .credentials-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.credential-item {
  text-align: center;
}

.credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--beige);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.credential-item:hover .credential-icon {
  background: rgba(191,131,57,0.1);
}

.credential-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.credential-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .credential-number { font-size: 3rem; }
}

.credential-label {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.credential-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
}

/* Location Section */
.location {
  background: var(--beige);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .location { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .location { padding: 8rem 0; }
}

.location-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.location-map {
  height: 250px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .location-map { height: 350px; }
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .location-card { padding: 2rem; }
}

.location-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.contact-link {
  color: var(--gold);
  font-size: 0.875rem;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Final CTA Section */
.final-cta {
  background: var(--white);
  padding: 4rem 0;
  border-top: 4px solid var(--gold);
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta { padding: 6rem 0; }
}

.final-cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .final-cta-title { font-size: 3rem; }
}

.final-cta-text {
  color: var(--gray-text);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.final-cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-text);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer { padding: 4rem 0; }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer-services li {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.developer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.developer-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.developer-credit a:hover {
  opacity: 0.8;
}
