/* ============================================================
   Arion Development CLM — styles.css
   Rebrand: black #0D0D0B + champagne gold #B8985A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.6; color: #2C2A24; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
.display { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }
.eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: #B8985A; margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; color: #0D0D0B; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: #5A5040; line-height: 1.65; max-width: 560px; margin-bottom: 40px; }
.divider { height: 3px; width: 48px; background: #B8985A; margin-bottom: 32px; }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; cursor: pointer; border: none; transition: opacity 0.15s ease, transform 0.1s ease; }
.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: #B8985A; color: #0D0D0B; }
.btn-outline { background: transparent; color: #D4B87A; border: 1px solid rgba(184,152,90,0.45); }
.btn-dark { background: #0D0D0B; color: #D4B87A; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section-light { background: #F7F5F0; }
.section-dark { background: #0D0D0B; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #0D0D0B;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(184,152,90,0.18);
  transition: box-shadow 0.2s ease;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.6); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(184,152,90,0.4); }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: #D4B87A; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; color: #8A7A5A; font-weight: 500; letter-spacing: 0.03em; transition: color 0.15s; }
.nav-links a:hover { color: #D4B87A; }
.nav-cta { background: #B8985A; color: #0D0D0B; padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; letter-spacing: 0.03em; transition: opacity 0.15s; }
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #8A7A5A; border-radius: 2px; transition: all 0.2s; }

.nav-mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #0D0D0B; padding: 0 32px 24px;
  border-top: 1px solid rgba(184,152,90,0.1);
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 15px; color: #8A7A5A; padding: 14px 0; border-bottom: 1px solid rgba(184,152,90,0.08); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  padding-top: 64px;
  min-height: calc(100vh - 96px);
  display: flex; align-items: center;
  background: #0D0D0B;
  position: relative; overflow: hidden;
}

.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(8,8,6,0.75); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-bg.jpg'); background-size: cover; background-position: center; opacity: 0.2; z-index: 0; }

.hero-ring-1 { position: absolute; right: -80px; top: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(184,152,90,0.08); pointer-events: none; z-index: 2; }
.hero-ring-2 { position: absolute; right: 60px; top: 60px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(184,152,90,0.05); pointer-events: none; z-index: 2; }

.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background-image: url('../images/android-chrome-192x192.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 2;
}

.hero-inner { position: relative; z-index: 3; padding: 80px 0; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-eyebrow  { opacity: 0; animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero-headline { animation: fadeUp 0.8s ease both; animation-delay: 0.25s; }
.hero-sub      { animation: fadeUp 0.8s ease both; animation-delay: 0.45s; }
.hero-btns     { animation: fadeUp 0.8s ease both; animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-headline, .hero-sub, .hero-btns { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.hero-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #B8985A; font-weight: 600; margin-bottom: 18px; }
.hero-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(44px, 6vw, 72px); font-weight: 700; line-height: 1.0; color: #F0E6C8; text-transform: uppercase; letter-spacing: 0.02em; max-width: 600px; margin-bottom: 22px; }
.hero-headline .accent { color: #B8985A; }
.hero-sub { font-size: 16px; color: #8A7A5A; max-width: 440px; line-height: 1.65; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
   ============================================================ */
.hero-stats-bar {
  background: #111109;
  padding: 36px 0;
  border-bottom: 1px solid rgba(184,152,90,0.15);
}
.hero-stats { display: flex; gap: 56px; flex-wrap: wrap; animation: fadeIn 0.9s ease both; animation-delay: 0.3s; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 700; color: #D4B87A; line-height: 1; }
.hero-stat-label { font-size: 11px; color: #6A5E42; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: #F7F5F0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }

.service-card { background: #fff; border: 1px solid #E8E0D0; border-radius: 10px; padding: 22px 18px; transition: border-color 0.2s, transform 0.15s; }
.service-card:hover { border-color: #B8985A; transform: translateY(-2px); }

.service-icon { width: 38px; height: 38px; background: rgba(184,152,90,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: #8A6A30; font-size: 19px; }
.service-name { font-weight: 600; font-size: 14px; color: #0D0D0B; margin-bottom: 6px; line-height: 1.3; }
.service-desc { font-size: 12px; color: #7A7060; line-height: 1.55; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: #fff; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-body { font-size: 15px; color: #5A5040; line-height: 1.75; margin-bottom: 20px; }

.owner-card { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: #F7F5F0; border-radius: 10px; border: 1px solid #E8E0D0; margin-top: 12px; }
.owner-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(184,152,90,0.1); border: 2px solid #B8985A; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: #8A6A30; flex-shrink: 0; overflow: hidden; }
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; }
.owner-name { font-weight: 600; font-size: 15px; color: #0D0D0B; }
.owner-title { font-size: 12px; color: #8A7A5A; margin-top: 2px; }
.owner-bio { font-size: 13px; color: #5A5040; line-height: 1.6; margin-top: 8px; }

.about-photo { width: 100%; height: 650px; border-radius: 10px; background: #F7F5F0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; border: 1px solid #E8E0D0; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.about-photo-placeholder { display: flex; flex-direction: column; align-items: center; width: 100%; height: 100%; }
.about-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.credential-item { display: flex; gap: 12px; align-items: center; padding: 13px 16px; background: #F7F5F0; border-radius: 8px; border: 1px solid #E8E0D0; }
.credential-item i { font-size: 19px; color: #B8985A; flex-shrink: 0; }
.credential-title { font-size: 13px; font-weight: 600; color: #0D0D0B; }
.credential-sub { font-size: 12px; color: #8A7A5A; margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: #0D0D0B; }
#gallery .section-title { color: #F0E6C8; }
#gallery .eyebrow { color: #B8985A; }
#gallery .divider { background: #B8985A; }
#gallery .section-sub { color: #8A7A5A; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: #1A1810; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 16px 14px; background: linear-gradient(transparent, rgba(8,8,6,0.88)); font-size: 13px; font-weight: 600; color: #D4B87A; }

/* ============================================================
   APPOINTMENT
   ============================================================ */
#appointment { background: #111109; }
#appointment .section-title { color: #F0E6C8; }
#appointment .eyebrow { color: #B8985A; }
#appointment .divider { background: #B8985A; }
#appointment .section-sub { color: #8A7A5A; }

.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.appt-form { background: rgba(184,152,90,0.04); border: 1px solid rgba(184,152,90,0.16); border-radius: 12px; padding: 32px; }

.form-row { margin-bottom: 18px; }
.form-row:last-child { margin-bottom: 0; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-label { display: block; font-size: 11px; font-weight: 600; color: #B8985A; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; }

.form-input, .form-select, .form-textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(184,152,90,0.2); border-radius: 5px; padding: 10px 13px; font-size: 14px; color: #D4B87A; font-family: 'Barlow', sans-serif; outline: none; transition: border-color 0.15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #B8985A; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(184,152,90,0.3); }
.form-select option { background: #111109; color: #D4B87A; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: #B8985A; color: #0D0D0B; padding: 13px; border-radius: 5px; border: none; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: opacity 0.15s, transform 0.1s; margin-top: 6px; }
.form-submit:hover { opacity: 0.88; }
.form-submit:active { transform: scale(0.99); }
.form-success { display: none; text-align: center; padding: 20px; color: #B8985A; font-weight: 600; font-size: 15px; }

.appt-info { padding: 8px 0; }
.appt-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 30px; }
.appt-info-icon { width: 42px; height: 42px; border-radius: 9px; background: rgba(184,152,90,0.1); display: flex; align-items: center; justify-content: center; font-size: 19px; color: #B8985A; flex-shrink: 0; }
.appt-info-title { font-size: 14px; font-weight: 600; color: #F0E6C8; margin-bottom: 5px; }
.appt-info-text { font-size: 13px; color: #8A7A5A; line-height: 1.55; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: #F7F5F0; }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.contact-form-card { background: #fff; border: 1px solid #E8E0D0; border-radius: 12px; padding: 32px; }
.contact-form-title { font-size: 15px; font-weight: 600; color: #0D0D0B; margin-bottom: 22px; }

.cf-label { display: block; font-size: 11px; font-weight: 600; color: #8A7A5A; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; }
.cf-input, .cf-textarea { width: 100%; border: 1px solid #E8E0D0; border-radius: 5px; padding: 10px 13px; font-size: 14px; color: #2C2A24; background: #fff; font-family: 'Barlow', sans-serif; outline: none; transition: border-color 0.15s; }
.cf-input:focus, .cf-textarea:focus { border-color: #B8985A; }
.cf-input::placeholder, .cf-textarea::placeholder { color: #B4A890; }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-row { margin-bottom: 16px; }
.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit { width: 100%; background: #0D0D0B; color: #D4B87A; padding: 13px; border-radius: 5px; border: none; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: opacity 0.15s; margin-top: 6px; }
.cf-submit:hover { opacity: 0.85; }
.cf-success { display: none; text-align: center; padding: 20px; color: #B8985A; font-weight: 600; }

.contact-details { padding: 4px 0; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; }
.contact-detail-icon { font-size: 20px; color: #B8985A; margin-top: 1px; flex-shrink: 0; }
.contact-detail-label { font-size: 11px; font-weight: 600; color: #8A7A5A; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-detail-val { font-size: 14px; color: #2C2A24; }
.contact-detail-val a { color: #8A6A30; }

.hours-table { width: 100%; margin-top: 6px; }
.hours-table td { font-size: 13px; padding: 3px 0; color: #8A7A5A; }
.hours-table td:last-child { text-align: right; color: #2C2A24; }

.newsletter-box { background: rgba(184,152,90,0.08); border-radius: 10px; padding: 18px; border: 1px solid rgba(184,152,90,0.25); margin-top: 12px; }
.newsletter-title { font-size: 12px; font-weight: 600; color: #6A5030; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.newsletter-sub { font-size: 12px; color: #7A6A4A; margin-bottom: 14px; line-height: 1.5; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input { flex: 1; border: 1px solid rgba(184,152,90,0.3); border-radius: 4px; padding: 9px 12px; font-size: 13px; color: #2C2A24; background: #fff; outline: none; font-family: 'Barlow', sans-serif; }
.newsletter-btn { background: #0D0D0B; color: #D4B87A; border: none; padding: 9px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; }
.newsletter-btn:hover { opacity: 0.85; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #080806; padding: 32px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(184,152,90,0.12); }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: #B8985A; letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.footer-logo-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; opacity: 0.85; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #6A5E42; transition: color 0.15s; }
.footer-links a:hover { color: #B8985A; }
.footer-copy { font-size: 12px; color: #3A3428; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .hero-headline { font-size: 42px; }
  .hero-stats { gap: 28px; }
  .section-title { font-size: 30px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-2col, .cf-2col { grid-template-columns: 1fr; }
  #footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}