@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img { max-width: 100%; display: block; }

/* ===== NAVIGATION ===== */
nav {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  border-bottom: 1px solid #e8ddd0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a:hover { color: #c9a96e; }

.nav-links a.active { border-bottom: 1.5px solid #1a1a1a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-dark {
  display: block;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 28px;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin: 0 auto;
  text-align: center;
}

.btn-dark:hover {
  background: #333;
  border-color: #333;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 28px;
  padding: 10px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 28px;
  padding: 11px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #c9a96e 0%, #8a7055 30%, #3a2e25 65%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(220,195,150,0.35) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero > p {
  font-size: 14px;
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Hero short (inner pages) */
.hero-short {
  min-height: 340px;
  padding: 100px 60px 80px;
  justify-content: center;
}

/* ===== HERO CARDS ===== */
.hero-cards {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  width: 100%;
  max-width: 900px;
  z-index: 2;
}

.hero-card {
  flex: 1;
  background: rgba(40,35,30,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 20px 16px;
  color: #ffffff;
  text-align: center;
}

.hero-card:nth-child(2) { background: rgba(50,42,32,0.65); }
.hero-card:nth-child(3) { background: rgba(55,50,45,0.75); }

.hero-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.hero-card p {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.55;
  margin: 0;
  color: #ffffff;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-white { background: #ffffff; }
.section-beige { background: #f5ede0; }
.section-dark  { background: #2a2a2a; color: #ffffff; }

/* ===== SECTION PADDING ===== */
.section-pad { padding: 80px 0; }

/* Inner content container with side margins on desktop */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.two-col .col-text { flex: 0 0 40%; }

.two-col .col-images {
  flex: 1;
  display: flex;
  gap: 12px;
}

.two-col .col-images .img-placeholder { flex: 1; }

.col-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.col-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: #e8ddd0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  min-height: 240px;
  width: 100%;
}

/* ===== MAP ===== */
.map-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
}

/* ===== SERVICES SECTION ===== */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.services-header p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.service-card .img-placeholder {
  border-radius: 0;
  min-height: 180px;
}

.service-card-body { padding: 14px 14px 18px; }

.service-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.service-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
}

/* ===== STAY INFORMED ===== */
.stay-informed {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.stay-informed h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.stay-informed > p {
  font-size: 13px;
  color: #777;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  text-align: left;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #c9a96e; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

/* ===== LOCATION SECTION ===== */
.location-contact-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.location-block h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.location-block > p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.location-detail { margin-bottom: 20px; }

.location-detail .detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.location-detail p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
  background: #2a2a2a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: start;
}

.contact-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-col > p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 10px;
}

.contact-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}

.contact-col .form-group label { color: rgba(255,255,255,0.75); }

.contact-col .form-group input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
}

.contact-col .form-group input::placeholder { color: rgba(255,255,255,0.35); }
.contact-col .form-group input:focus { border-color: #c9a96e; }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  background: #1a1a1a;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover { color: #c9a96e; }

/* ===== PRIVACY POLICY ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.privacy-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 40px;
  color: #1a1a1a;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.privacy-content ul { margin: 12px 0 20px 24px; }

.privacy-content ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: #e8ddd0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 16px 36px; }
  .section-pad { padding: 70px 0; }
  .page-container { padding: 0 36px; }
  .hero { padding: 100px 36px 80px; }
  .contact-section { padding: 60px 0; }
  .contact-grid { padding: 0 36px; }
  .footer-bottom { padding: 18px 36px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e8ddd0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid #f0e8de;
  }

  .nav-links a.active {
    border-bottom: 1px solid #f0e8de;
    border-left: 3px solid #1a1a1a;
  }

  .hero {
    padding: 80px 24px 80px;
    min-height: 100vh;
  }

  .hero h1 { font-size: 36px; }
  .hero-short { padding: 80px 24px 60px; min-height: 260px; }

  .hero-cards {
    flex-direction: column;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
    gap: 2px;
  }

  .section-pad { padding: 60px 0; }
  .page-container { padding: 0 20px; }

  .two-col { flex-direction: column; gap: 36px; }
  .two-col .col-text { flex: unset; width: 100%; }
  .two-col .col-images { width: 100%; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .location-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-section { padding: 60px 0; }
  .contact-grid { padding: 0 20px; }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .two-col .col-images { flex-direction: column; }
}


/* ===== LUXURY BRANDING PAGE ===== */

/* White hero (no gradient) */
.hero-white {
  background: #ffffff;
  color: #1a1a1a;
  min-height: auto;
  padding: 80px 60px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-white h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero-white p {
  font-size: 13px;
  color: #777;
  max-width: 380px;
  line-height: 1.7;
}

/* 2-card services layout */
.services-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.service-card-2 { background: #ffffff; border-radius: 4px; overflow: hidden; }
.service-card-2-top { background: #f5ede0; padding: 24px 24px 20px; }
.service-card-2-top h3 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.service-card-2-top p { font-size: 13px; color: #666; line-height: 1.6; }
.service-card-2-img { background: #e8ddd0; min-height: 200px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 13px; }

/* Our Work section */
.work-item { margin-bottom: 60px; }
.work-item:last-child { margin-bottom: 0; }
.work-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.work-img { background: #e8ddd0; border-radius: 8px; min-height: 260px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 13px; }
.work-meta { display: flex; align-items: flex-start; justify-content: space-between; }
.work-meta-text h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.work-meta-text p { font-size: 13px; color: #666; }

/* Elegance section */
.elegance-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: center; }
.elegance-text h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.elegance-text p { font-size: 13px; color: #666; line-height: 1.7; }
.elegance-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.elegance-img { background: #e8ddd0; border-radius: 8px; min-height: 180px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 13px; }

/* Location white section */
.location-white { padding: 80px 60px; background: #ffffff; }
.location-white h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 34px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.location-white > p { font-size: 13px; color: #666; max-width: 400px; line-height: 1.7; margin-bottom: 40px; }
.location-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; max-width: 700px; }
.location-info-col .loc-label { font-size: 12px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.location-info-col .loc-value { font-size: 13px; color: #555; margin-bottom: 20px; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.maps-grid iframe { display: block; width: 100%; height: 200px; border: 0; }


/* ===== LUXURY BRANDING PAGE ===== */

/* Hero white */
.hero-white {
  background: #ffffff;
  text-align: center;
  padding: 100px 60px 80px;
}
.hero-white h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.hero-white p {
  font-size: 14px;
  color: #777;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services 2-col cards */
.services-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card-2 {
  background: #f5ede0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-2-top {
  padding: 28px 28px 20px;
}
.service-card-2-top h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.service-card-2-top p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.service-card-2-img {
  background: #e8d5b8;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
}

/* Work items */
.work-item {
  margin-bottom: 60px;
}
.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.work-img {
  background: #e8ddd0;
  min-height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
}
.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-meta-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}
.work-meta-text p {
  font-size: 13px;
  color: #777;
}

/* Elegance section */
.elegance-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.elegance-text {
  flex: 0 0 220px;
}
.elegance-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.elegance-text p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}
.elegance-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.elegance-img {
  background: #e8ddd0;
  min-height: 160px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
}

/* Location white */
.location-white {
  padding: 80px 0;
  background: #ffffff;
}
.location-white h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.location-white > p {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}
.location-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  max-width: 700px;
}
.loc-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  margin-top: 16px;
}
.loc-label:first-child { margin-top: 0; }
.loc-value {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.maps-grid iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* Responsive: luxury branding page */
@media (max-width: 768px) {
  .hero-white { padding: 70px 20px 60px; }
  .hero-white h1 { font-size: 36px; }
  .services-2col { grid-template-columns: 1fr; }
  .work-images { grid-template-columns: 1fr; }
  .elegance-grid { flex-direction: column; gap: 36px; }
  .elegance-text { flex: unset; width: 100%; }
  .location-white { padding: 60px 0; }
  .location-info-grid { grid-template-columns: 1fr; gap: 0; }
  .maps-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Digital Assets page
   ============================================= */

/* Service cards: image top, text bottom */
.da-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.da-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f5ede0;
  position: relative;
}

.da-card-img {
  background: #d4c4a8;
  height: 220px;
  width: 100%;
}

.da-card-text {
  background: #ffffff;
  padding: 20px 24px 24px;
  margin: 0 16px;
  margin-top: -20px;
  position: relative;
  border-radius: 4px;
  margin-bottom: 16px;
}

.da-card-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: center;
}

.da-card-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* Elevate Elegance rows */
.ee-section {
  padding: 80px 0;
  background: #ffffff;
}

.ee-header {
  margin-bottom: 48px;
}

.ee-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ee-header p {
  font-size: 13px;
  color: #777;
}

.ee-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.ee-row:last-child {
  margin-bottom: 0;
}

.ee-img {
  background: #e8ddd0;
  border-radius: 12px;
  height: 220px;
}

.ee-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.ee-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* Location section on white background (color overrides) */
.location-white-section {
  padding: 80px 0;
  background: #ffffff;
}

.location-white-section .location-contact-grid {
  max-width: 100%;
}

.location-white-section .location-block h2 {
  color: #1a1a1a;
}

.location-white-section .location-block > p {
  color: #666;
}

.location-white-section .location-detail .detail-label {
  color: #1a1a1a;
}

.location-white-section .location-detail p {
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .da-cards-grid { grid-template-columns: 1fr; }
  .ee-row { grid-template-columns: 1fr; gap: 24px; }
}


/* ===== PREMIUM SEO PAGE ===== */

.hero-seo {
  min-height: 300px;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)), #3a3a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 100px 60px 80px;
}
.hero-seo h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  font-style: italic;
}
.hero-seo p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  max-width: 360px;
  line-height: 1.7;
}

.seo-services-section {
  padding: 80px 0 0;
  background: #ffffff;
}
.seo-services-header {
  text-align: center;
  margin-bottom: 40px;
}
.seo-services-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.seo-services-header p {
  font-size: 13px;
  color: #777;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}
.seo-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 20px;
}
.seo-card {
  background: #f5ede0;
  border-radius: 4px;
  padding: 28px 28px 24px;
}
.seo-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.seo-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.seo-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.seo-img {
  background: #c8b89a;
  height: 220px;
}

.work-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  max-width: 860px;
  margin: 0 auto;
}
.work-grid-img {
  border-radius: 8px;
  height: 200px;
  background: #2a2a2a;
  margin-bottom: 16px;
}
.work-grid-img.light { background: #e8ddd0; }
.work-grid-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.work-grid-meta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.work-grid-meta-text p {
  font-size: 13px;
  color: #777;
  max-width: 260px;
}
.work-arrow {
  font-size: 18px;
  color: #1a1a1a;
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-seo { padding: 80px 24px 60px; min-height: 240px; }
  .hero-seo h1 { font-size: 36px; }
  .seo-cards-row { grid-template-columns: 1fr; }
  .seo-images-row { grid-template-columns: 1fr; }
  .work-grid-2x2 { grid-template-columns: 1fr; }
}

/* ===== ELEGANCE SECTION - Premium SEO ===== */
.seo-elegance-section {
  padding: 80px 0;
  background: #ffffff;
}

.seo-elegance-header {
  text-align: center;
  margin-bottom: 48px;
}

.seo-elegance-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.seo-elegance-header p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.seo-elegance-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.seo-elegance-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Coloana dreaptă începe mai jos (offset) */
.seo-elegance-col-right {
  margin-top: 60px;
}

.seo-elegance-img {
  border-radius: 8px;
  background: #e8ddd0;
  width: 100%;
}

.seo-elegance-img-1 { height: 240px; }
.seo-elegance-img-2 { height: 240px; }
.seo-elegance-img-3 { height: 240px; }
.seo-elegance-img-4 { height: 240px; }

@media (max-width: 768px) {
  .seo-elegance-grid { grid-template-columns: 1fr; }
  .seo-elegance-col-right { margin-top: 0; }
}
