@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold: #B29B5F;
  --gold-light: #D2BE82;
  --gold-dim: #8C7A4B;
  --gold-dark: #645735;
  --gold-glow: rgba(178,155,95,0.08);
  --gold-border: rgba(178,155,95,0.15);
  --gold-border-hover: rgba(178,155,95,0.35);
  --black: #0C0C0C;
  --black-light: #111111;
  --black-card: #161616;
  --white: #F0EEE8;
  --white-dim: #C8C6C0;
  --white-muted: #A8A6A0;
  --gray: #888680;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1080px;
  --section-pad: 80px 48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-dim);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

.container { max-width: var(--max-width); margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px; color: var(--gold);
  font-weight: 500; letter-spacing: 1px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--white-dim); font-size: 13px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 10px 22px; font-size: 12px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--font-body);
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0; transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 48px 100px;
  position: relative; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid var(--gold-glow);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -150px; right: -50px;
  width: 600px; height: 600px;
  border: 1px solid rgba(178,155,95,0.04);
  border-radius: 50%;
}
.hero .corner-tr {
  position: absolute; top: 100px; right: 48px;
  width: 100px; height: 100px;
  border-top: 1px solid rgba(178,155,95,0.25);
  border-right: 1px solid rgba(178,155,95,0.25);
}
.hero .corner-bl {
  position: absolute; bottom: 48px; left: 48px;
  width: 80px; height: 80px;
  border-bottom: 1px solid rgba(178,155,95,0.12);
  border-left: 1px solid rgba(178,155,95,0.12);
}
.hero-content { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero-tag {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 400;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 24px; max-width: 600px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 17px; color: var(--white-muted);
  line-height: 1.8; max-width: 500px; margin-bottom: 40px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 14px 32px; font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--font-body);
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--gold);
  padding: 14px 32px; font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--gold); cursor: pointer;
  font-family: var(--font-body); transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad); }
.section-alt { background: var(--black-light); }
.section-border { border-top: 1px solid var(--gold-border); }
.sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 400;
  text-align: center;
}
.sec-title {
  font-family: var(--font-display);
  font-size: 40px; color: var(--white); text-align: center;
  margin-bottom: 48px; font-weight: 400;
}
.sec-title-left { text-align: left; }
.sec-label-left { text-align: left; }

/* ===== SERVICE CARDS ===== */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.svc-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  padding: 40px 32px; position: relative;
  transition: border-color 0.3s;
}
.svc-card:hover { border-color: var(--gold-border-hover); }
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold);
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 26px; color: var(--gold-light);
  margin-bottom: 16px; font-weight: 500;
}
.svc-card p { font-size: 15px; color: var(--white-muted); line-height: 1.8; font-weight: 300; }
.svc-card ul { list-style: none; margin-top: 16px; }
.svc-card ul li {
  font-size: 14px; color: var(--white-dim); padding: 6px 0;
  padding-left: 20px; position: relative; font-weight: 300;
}
.svc-card ul li::before {
  content: '\25C6'; position: absolute; left: 0; top: 6px;
  color: var(--gold-dim); font-size: 8px;
}

/* ===== WHY / FEATURES ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.why-item { text-align: center; padding: 28px 16px; }
.why-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(178,155,95,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--gold); font-size: 16px;
}
.why-item h4 {
  font-size: 14px; color: var(--gold-light);
  margin-bottom: 10px; font-weight: 500;
}
.why-item p { font-size: 13px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ===== CTA BAR ===== */
.cta-bar {
  padding: 64px 48px; text-align: center;
  border-top: 2px solid var(--gold);
}
.cta-bar h2 {
  font-family: var(--font-display);
  font-size: 36px; color: var(--white);
  margin-bottom: 12px; font-weight: 400;
}
.cta-bar p {
  font-size: 16px; color: var(--white-muted);
  margin-bottom: 28px; font-weight: 300;
}

/* ===== ABOUT / BIO ===== */
.about-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; max-width: var(--max-width); margin: 0 auto;
  align-items: start;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 14px;
  font-family: var(--font-body); letter-spacing: 1px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 36px; color: var(--white);
  margin-bottom: 24px; font-weight: 400;
}
.about-text p {
  font-size: 15px; color: var(--white-dim);
  line-height: 1.85; margin-bottom: 20px; font-weight: 300;
}

/* ===== APPROACH ===== */
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.approach-item {
  padding: 28px 24px;
  border-left: 2px solid var(--gold-dim);
}
.approach-item h4 {
  font-size: 16px; color: var(--gold-light);
  margin-bottom: 8px; font-weight: 500;
}
.approach-item p {
  font-size: 14px; color: var(--white-muted);
  line-height: 1.7; font-weight: 300;
}

/* ===== ADDITIONAL SERVICES ===== */
.addl-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.addl-item {
  padding: 28px 24px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  transition: border-color 0.3s;
}
.addl-item:hover { border-color: var(--gold-border-hover); }
.addl-item h4 {
  font-size: 15px; color: var(--gold-light);
  margin-bottom: 8px; font-weight: 500;
}
.addl-item p { font-size: 13px; color: var(--white-muted); line-height: 1.7; font-weight: 300; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: var(--max-width); margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px; color: var(--white);
  margin-bottom: 24px; font-weight: 400;
}
.contact-detail {
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-border);
}
.contact-detail .label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 4px;
}
.contact-detail .value { font-size: 16px; color: var(--white-dim); font-weight: 300; }
.contact-detail .value a { color: var(--gold-light); }
.office-block { margin-top: 32px; }
.office-block h4 {
  font-size: 14px; color: var(--gold); margin-bottom: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
}
.office { margin-bottom: 20px; }
.office strong { color: var(--white); font-weight: 500; font-size: 15px; display: block; margin-bottom: 4px; }
.office span { font-size: 14px; color: var(--white-muted); font-weight: 300; }

/* Contact form */
.contact-form { }
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px; color: var(--white);
  margin-bottom: 24px; font-weight: 400;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 8px; font-weight: 400;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  color: var(--white-dim); font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  padding: 36px 48px;
  border-top: 1px solid var(--gold-border);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-left { font-size: 12px; color: #555; }
.footer-right { font-size: 12px; color: var(--gray); }
.footer-right span { color: var(--gold-dim); }
.footer-center {
  font-size: 12px; color: var(--gray);
  text-align: center; margin-top: 12px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 48px 60px;
  border-bottom: 1px solid var(--gold-border);
}
.page-header .container { max-width: var(--max-width); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: 56px; color: var(--white);
  font-weight: 400; margin-bottom: 16px;
}
.page-header p {
  font-size: 17px; color: var(--white-muted);
  max-width: 560px; font-weight: 300; line-height: 1.8;
}
.page-header .corner-tr {
  position: absolute; top: 100px; right: 48px;
  width: 100px; height: 100px;
  border-top: 1px solid rgba(178,155,95,0.25);
  border-right: 1px solid rgba(178,155,95,0.25);
}
.page-header { position: relative; overflow: hidden; }

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 64px 48px;
  border-top: 1px solid var(--gold-border);
}
.intro-section p {
  font-size: 18px; color: var(--white-dim);
  line-height: 1.85; max-width: 700px;
  margin: 0 auto; text-align: center; font-weight: 300;
}
.intro-section strong { color: var(--white); font-weight: 500; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; animation: fadeUp 0.7s ease forwards;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 60px 28px; }
  .nav-inner { padding: 16px 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(12,12,12,0.98); padding: 20px 28px; gap: 16px; border-bottom: 1px solid var(--gold-border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero { padding: 140px 28px 80px; min-height: auto; }
  .hero h1 { font-size: 42px; }
  .hero .hero-content img { display: none; }
  .svc-grid, .approach-grid, .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .addl-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 320px; }
  .page-header { padding: 140px 28px 48px; }
  .page-header h1 { font-size: 40px; }
  .sec-title { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero .corner-tr, .page-header .corner-tr { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}
