/* Royal Tier V3 - Architectural Masculine Luxury */

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

:root {
  --black: #0A0A0A;
  --near-black: #080808;
  --charcoal: #111111;
  --dark: #181818;
  --gold: #C9A962;
  --gold-light: #E2CC8D;
  --gold-muted: #9A7B3D;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray: #5C5C5C;
  --gray-light: #8A8A8A;
  --gray-dark: #2A2A2A;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  
  --ease-power: cubic-bezier(0.7, 0, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.anim-fade-up {
  animation: fadeUp 1.2s var(--ease-out) forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 75px;
  width: auto;
}

.nav-center {
  display: flex;
  gap: 60px;
}

.nav-center a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-center a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-center a:hover {
  color: var(--gold);
}

.nav-center a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 35px;
  border: 1px solid var(--gold);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

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

.nav-cta:hover::before {
  transform: translateY(0);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
  filter: grayscale(30%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
  max-width: 1000px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.hero-eyebrow::before {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 40px;
}

.hero h1 span {
  display: block;
}

.hero h1 .line-2 {
  color: var(--gold);
  
  margin-left: 80px;
}

.hero-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 450px;
  line-height: 1.8;
  margin-bottom: 60px;
  margin-left: 80px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: 80px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  transition: gap 0.4s var(--ease-out);
}

.hero-cta:hover {
  gap: 30px;
}

.hero-cta-line {
  width: 60px;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-out), background 0.3s ease;
}

.hero-cta:hover .hero-cta-line {
  width: 80px;
  background: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 60px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: breathe 2.5s ease infinite;
}

/* ============ SECTION UTILITIES ============ */
.section {
  padding: 180px 80px;
  max-width: 1600px;
  margin: 0 auto;
}

.section-dark {
  background: var(--charcoal);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-title .gold,
.cta-title .gold,
.page-hero h1 .gold {
  color: var(--gold);
}

/* ============ INTRO ============ */
.intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: center;
}

.intro-content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
  margin-top: 35px;
}

.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.4s var(--ease-out);
}

.intro-link:hover {
  gap: 25px;
}

.intro-link svg {
  width: 20px;
  height: 20px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-dark);
}

.stat {
  background: var(--black);
  padding: 55px 45px;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease-out);
}

.stat:hover::before {
  height: 100%;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.stat:hover .stat-value {
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 40px 0 60px;
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.marquee-track {
  display: flex;
  animation: marquee 50s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 50px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--white);
}

.marquee-item::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  margin-left: 50px;
}

/* ============ SERVICES ============ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-dark);
}

.services-header-right {
  max-width: 400px;
  text-align: right;
}

.services-header-right p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 60px 50px;
  border: 1px solid var(--gray-dark);
  margin: -1px 0 0 -1px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  background: var(--charcoal);
  border-color: var(--gold);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--gray-dark);
  margin-bottom: auto;
  transition: color 0.4s ease;
}

.service-card:hover .service-num {
  color: var(--gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--gold);
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.service-arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.4s var(--ease-out);
}

.service-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============ QUOTE ============ */
.quote-section {
  padding: 200px 80px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 300px;
  color: var(--gray-dark);
  line-height: 1;
  opacity: 0.3;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ TEAM ============ */
.team-header {
  text-align: center;
  margin-bottom: 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.team-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
}

.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.6s var(--ease-out);
}

.team-photo:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-photo:hover::after {
  opacity: 1;
}

.team-info {
  padding-top: 30px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.team-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
}

/* ============ CTA ============ */
.cta {
  padding: 200px 80px;
  text-align: center;
  position: relative;
  background: var(--black);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 50px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 25px 60px;
  background: var(--gold);
  color: var(--black);
  transition: all 0.4s var(--ease-out);
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(201, 169, 98, 0.2);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-out);
}

.cta-btn:hover svg {
  transform: translateX(5px);
}

/* ============ FOOTER ============ */
.footer {
  padding: 100px 80px 60px;
  background: var(--near-black);
  border-top: 1px solid var(--gray-dark);
}

.footer-main {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-dark);
}

.footer-brand img {
  height: 70px;
  margin-bottom: 25px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.footer-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-light);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gray-light);
  transition: color 0.3s ease;
}

.footer-contact-item:hover span {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  margin: 0;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

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

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.footer-legal {
  display: flex;
  gap: 40px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============ PAGE HERO ============ */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 80px 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(50%);
  z-index: -1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}

.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  margin-top: 30px;
  max-width: 500px;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 120px 80px 200px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 120px;
}

.contact-form {
  background: var(--charcoal);
  padding: 70px;
  border: 1px solid var(--gray-dark);
}

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

.form-group {
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 15px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.3s ease;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-select option {
  background: var(--charcoal);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 22px 50px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.form-submit svg {
  width: 16px;
  height: 16px;
}

.contact-info {
  padding-top: 30px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 60px;
}

.contact-person {
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--gray-dark);
}

.contact-person:last-of-type {
  border: none;
}

.contact-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-email {
  font-size: 15px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--gold-light);
}

/* ============ SERVICE DETAIL ============ */
.service-detail {
  padding: 120px 80px 200px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-intro {
  max-width: 900px;
  margin: 0 auto 120px;
  text-align: center;
}

.service-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
}

.service-intro-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
}

.features-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 100px;
  align-items: start;
}

.features-sidebar {
  position: sticky;
  top: 150px;
}

.features-sidebar .section-eyebrow {
  margin-bottom: 20px;
}

.features-sidebar h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
}

.features-sidebar p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.features-list {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-dark);
  transition: all 0.4s var(--ease-out);
}

.feature-item:first-child {
  padding-top: 0;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-item:hover {
  padding-left: 15px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  padding-top: 8px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
  color: var(--gold);
}

.feature-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hero-content { max-width: 800px; }
  .hero h1 .line-2,
  .hero-text,
  .hero-cta { margin-left: 40px; }
  
  .intro { gap: 80px; }
  .team-grid { gap: 60px; }
  .team-card { grid-template-columns: 250px 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .nav-container { padding: 15px 40px; }
  .nav-center { display: none; }
  
  .hero { padding: 0 40px; }
  .hero h1 .line-2,
  .hero-text,
  .hero-cta { margin-left: 0; }
  .hero-scroll { right: 40px; }
  
  .section { padding: 120px 40px; }
  
  .intro { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 280px 1fr; }
  
  .footer { padding: 80px 40px 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 50px; }
  
  .page-hero { padding: 140px 40px 80px; }
  .contact-section { padding: 80px 40px 150px; }
  .contact-grid { grid-template-columns: 1fr; gap: 80px; }
  
  .service-detail { padding: 80px 40px 150px; }
  .features-section { grid-template-columns: 1fr; gap: 60px; }
  .features-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-container { padding: 15px 25px; }
  .nav-logo img { height: 55px; }
  .nav-cta { padding: 12px 25px; font-size: 12px; }
  
  .hero { padding: 0 25px; min-height: 90vh; }
  .hero-content { padding-top: 100px; }
  .hero-scroll { display: none; }
  
  .section { padding: 100px 25px; }
  
  .intro-stats { grid-template-columns: 1fr; }
  .stat { padding: 40px 35px; }
  .stat-value { font-size: 44px; }
  
  .services-header { flex-direction: column; align-items: flex-start; gap: 30px; }
  .services-header-right { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 50px 40px; }
  
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-photo { max-width: 300px; margin: 0 auto; }
  
  .quote-section { padding: 120px 25px; }
  .quote-section::before { font-size: 150px; top: 40px; }
  
  .cta { padding: 120px 25px; }
  
  .footer { padding: 60px 25px 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  
  .page-hero { padding: 120px 25px 60px; min-height: 40vh; }
  
  .contact-section { padding: 60px 25px 100px; }
  .contact-form { padding: 40px 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  .service-detail { padding: 60px 25px 100px; }
  .feature-item { grid-template-columns: 40px 1fr; gap: 20px; padding: 35px 0; }
  .feature-title { font-size: 20px; }
}
