/* ==========================================================
   ArGo Estates Ι.Κ.Ε. — Luxury Dark Theme
   ========================================================== */

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

:root {
  --bg: #14110c;
  --bg-2: #1c1811;
  --bg-3: #241f17;
  --gold: #c8a45c;
  --gold-soft: #a8894a;
  --cream: #f5f0e8;
  --text: #e8e2d6;
  --text-muted: #9c9384;
  --line: #2e2820;
  --line-soft: #262119;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }

.serif { font-family: 'Cormorant Garamond', serif; }

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.brand .sub {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
nav {
  display: flex;
  gap: 36px;
}
nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}
nav a:hover { color: var(--cream); }
nav a.active { color: var(--gold); }
nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

/* ---------- HERO ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  text-align: center;
}
.hero .rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero p {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
}
.hero .rule-b {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px;
  border-top: 1px solid var(--line-soft);
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: var(--cream);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.3s ease;
}
.service:hover { background: var(--bg-2); }
.service .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}
.service p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ---------- INFO / LEGAL TABLES ---------- */
.page-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px 20px;
  text-align: center;
}
.page-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  color: var(--cream);
}
.page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 40px 90px;
}
.sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--cream);
  margin: 50px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sub-title:first-child { margin-top: 0; }

.info {
  border: 1px solid var(--line);
}
.info .row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid var(--line);
}
.info .row:last-child { border-bottom: none; }
.info .label {
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.info .value {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--text);
}
.info .value strong { color: var(--cream); font-weight: 500; }
.info .value .hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.status-active { color: #7dcaa5; }

.note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.note a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

.empty {
  border: 1px dashed var(--line);
  padding: 50px 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact .block { text-align: center; }
.contact .block .eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact .block .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--cream);
}
.contact .block a:hover { color: var(--gold); }

/* ---------- FOOTER ---------- */
footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.9;
}
.foot-wrap .gold { color: var(--gold-soft); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .nav-wrap { flex-direction: column; gap: 18px; padding: 20px; }
  nav { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 70px 24px 60px; }
  .section, .page-head, .page-body { padding-left: 24px; padding-right: 24px; }
  .info .row { grid-template-columns: 1fr; }
  .info .label { border-right: none; border-bottom: 1px solid var(--line); }
}
