/* ===== Variables ===== */
:root {
  --cream: #F8F5F1;
  --gold: #AE8546;
  --gold-dark: #8F6D38;
  --gold-light: #C49A62;
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --white: #ffffff;
  --max-width: 1200px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ===== Typography ===== */
.font-serif { font-family: var(--font-serif); }

.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-title { font-size: 1.875rem; }
}

.gold-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.625rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(174, 133, 70, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  display: block;
  height: 3rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img { height: 3.5rem; }
}

.footer-logo .logo-img {
  height: 3rem;
}

.main-nav { display: none; align-items: center; gap: 2.5rem; }

@media (min-width: 768px) {
  .main-nav { display: flex; }
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(26, 26, 26, 0.8);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold); }

.header-cta { display: none; }

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

.menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(174, 133, 70, 0.1);
}

.mobile-menu.is-open { display: block; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.mobile-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-grid {
  display: block;
  width: 100%;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .hero-grid { max-width: 42rem; }
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content { position: relative; z-index: 1; padding-top: 3rem; }

@media (min-width: 1024px) {
  .hero-content { padding-top: 0; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
  max-width: 28rem;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* hero-visual removed — globe is in background */

/* ===== Stats ===== */
.stats {
  border-top: 1px solid rgba(174, 133, 70, 0.2);
  border-bottom: 1px solid rgba(174, 133, 70, 0.2);
}

.stats-grid {
  display: grid;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  gap: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(174, 133, 70, 0.2);
}

@media (min-width: 768px) {
  .stat-item {
    border-bottom: none;
    border-right: 1px solid rgba(174, 133, 70, 0.2);
    padding: 2.5rem 2rem;
  }
  .stat-item:last-child { border-right: none; }
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .stat-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.stat-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

/* ===== Sections ===== */
.section { padding: 6rem 0; }

@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

.section-center { text-align: center; }

.section-body {
  max-width: 48rem;
  margin: 0 auto;
}

.section-body p {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
}

.section-body p + p { margin-top: 1.5rem; }

.section-alt { background: rgba(255, 255, 255, 0.4); }

.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  gap: 2rem;
}

@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: 1.5rem; }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(174, 133, 70, 0.1);
  background: rgba(245, 240, 232, 0.5);
  transition: border-color 0.2s;
}

.service-card:hover { border-color: rgba(174, 133, 70, 0.3); }

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.6;
}

/* ===== Value Proposition ===== */
.value-section {
  position: relative;
  padding: 6rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .value-section { padding: 8rem 0; }
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .value-title { font-size: 1.875rem; }
}

.values-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 20rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: opacity 0.2s;
}

.contact-item:hover { opacity: 0.8; }

.contact-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(174, 133, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
}

/* ===== Form ===== */
.contact-form {
  max-width: 36rem;
  margin: 0 auto;
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(174, 133, 70, 0.2);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: none; }

.form-submit { text-align: center; margin-top: 0.5rem; }

.form-feedback {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

.form-feedback.success { color: #15803d; }
.form-feedback.error { color: #dc2626; }

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo .logo-img { height: 3rem; }

.footer-center { text-align: center; }

.footer-center p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-center p + p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.4);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(174, 133, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(174, 133, 70, 0.1);
}

.social-link img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* ===== Utilities ===== */
.icon-sm {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}
.hidden { display: none !important; }
