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

html { scroll-behavior: smooth; }

/* Inline SVG icons inherit color via currentColor; size them per context */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.service-icon .icon { width: 1.5rem; height: 1.5rem; }
.service-more .icon { width: 0.85rem; height: 0.85rem; }
.trust-item .icon { width: 1.6rem; height: 1.6rem; }
.contact-item-icon .icon { width: 1.1rem; height: 1.1rem; }
.pricing-features li .icon { width: 14px; height: 14px; }
.footer-socials .icon { width: 1.05rem; height: 1.05rem; }
.footer-contact-line .icon { width: 1.05rem; height: 1.05rem; margin-top: 2px; }
.form-success .icon { width: 2.5rem; height: 2.5rem; margin: 0 auto 1rem; display: block; }

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8B6F2E;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --white: #F5F0E8;
  --white-dim: #B0A898;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.page { padding-top: 80px; min-height: 100vh; }

/* HOME PAGE */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  margin-right: 1rem;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(245,240,232,0.3);
  transition: all 0.3s;
}

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

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.2rem;
}

/* SERVICES STRIP */
.services-strip {
  background: var(--black-2);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}

.service-card {
  background: var(--black-2);
  padding: 2.5rem 2rem;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.service-card:hover { background: var(--black-3); }

.service-card .service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-more {
  opacity: 1;
  transform: translateX(0);
}

.service-icon, .service-icon .icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ABOUT PAGE */
.about-hero {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: 85vh;
}

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
}

.about-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.about-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  margin-top: 0.4rem;
}

/* SERVICES PAGE */
.services-hero {
  padding: 5rem 4rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.services-full {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.08);
}

.service-full-card {
  background: var(--black);
  padding: 3rem;
  transition: background 0.3s;
  scroll-margin-top: 100px;
}

.service-full-card:hover { background: var(--black-3); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-full-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-full-card p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.service-features {
  list-style: none;
  margin-top: 1rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--white-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-section {
  padding: 5rem 4rem;
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.pricing-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 0.3rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-dim);
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.82rem;
  color: var(--white-dim);
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li .icon { color: var(--gold); font-size: 14px; }

/* CONTACT PAGE */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - 80px);
}

.contact-info {
  background: var(--black-2);
  padding: 5rem 4rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title { margin-bottom: 1.5rem; }

.contact-info > p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text h5 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.5;
}

.contact-form-wrap {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(176,168,152,0.4); }

.form-group select option { background: var(--black-3); }

.form-group textarea { height: 120px; resize: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.3);
}

.form-success .icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--white-dim); }

/* FOOTER — large agency style */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,0.18);
}

.footer-cta {
  text-align: center;
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.footer-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer-cta h3 em { font-style: italic; color: var(--gold); }

.footer-cta p {
  color: var(--white-dim);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem;
}

.footer-col .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}

.footer-col .footer-logo span { color: var(--white); }

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 0.8rem; }

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-socials a:hover { background: var(--gold); color: var(--black); }

.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.7rem; }

.footer-col ul li a,
.footer-contact-line {
  font-size: 0.85rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.6;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-contact-line .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-line a { color: var(--white-dim); text-decoration: none; transition: color 0.3s; }
.footer-contact-line a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.footer-bottom-links { display: flex; gap: 1.8rem; }

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* WHY US / TRUST band */
.trust-band {
  padding: 5rem 4rem;
  background: var(--black);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  margin-top: 3rem;
}

.trust-item {
  background: var(--black);
  padding: 2.5rem 2rem;
}

.trust-item .icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; display: block; }

.trust-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* SERVICE detail intro paragraph */
.service-detail-block { margin-top: 1.5rem; }
.service-detail-block h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.5rem 0 0.8rem;
}

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem 0;
  opacity: 0.4;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .footer-cta { padding: 3.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.8rem 1.5rem; }
  .trust-band { padding: 4rem 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 0.8rem; }
  .nav-links { gap: 1.2rem; order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero, .services-strip, .pricing-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .services-full { padding: 1.5rem; grid-template-columns: 1fr; }
  .service-full-card { padding: 2rem; }
  .about-hero { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
