/* =========================================================
   ANGO LINK — Editable stylesheet
   Edit color tokens, fonts, spacing freely.
   ========================================================= */

:root {
  --bg:        #14110d;
  --bg-2:      #1d1812;
  --card:      #1f1a14;
  --card-2:    #241e16;
  --fg:        #f4ecd8;
  --muted:     #aea391;
  --border:    rgba(212, 175, 55, 0.18);
  --gold:      #d4af37;
  --gold-soft: #e8c870;
  --gold-deep: #a8862a;
  --radius:    14px;
  --maxw:      1200px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(212,175,55,0.06), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(20,17,13,0.75);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw); margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: none; gap: 32px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--gold); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.btn {
  display: inline-block;
  padding: 10px 22px; border-radius: 999px;
  font-size: 14px; transition: all .2s ease;
  cursor: pointer; border: 1px solid transparent;
}
.btn-outline { border-color: rgba(212,175,55,0.5); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.btn-primary { background: var(--gold); color: var(--bg); font-weight: 500; padding: 12px 28px; }
.btn-primary:hover { transform: scale(1.02); }
.btn-ghost { border-color: var(--border); color: var(--fg); padding: 12px 28px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hero ---------- */
.hero { padding: 80px 24px 96px; }
@media (min-width: 768px) { .hero { padding: 128px 24px; } }
.hero-grid {
  display: grid; gap: 48px;
  max-width: var(--maxw); margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-photo { position: relative; }
.hero-photo::before {
  content: ""; position: absolute; inset: -16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), transparent);
  filter: blur(40px); border-radius: 28px;
}
.hero-photo img {
  position: relative;
  width: 100%; border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  object-fit: cover;
}

/* ---------- Section ---------- */
section { padding: 96px 24px; }
.section-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 32px; }

.section-bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(31,26,20,0.4);
}

/* ---------- About ---------- */
.about-copy { max-width: 900px; }
.about-copy p { font-size: 18px; color: var(--muted); margin-bottom: 20px; }
.about-copy p strong { color: var(--fg); font-weight: 400; }
.about-grid {
  margin-top: 56px;
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.media {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(31,26,20,0.5);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.square { aspect-ratio: 1/1; }
.media.video  { aspect-ratio: 16/9; }
.media.wide   { aspect-ratio: 21/9; }

/* ---------- Expertise ---------- */
.expertise-banner { margin-bottom: 48px; }
.expertise-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.expertise-card {
  position: relative; padding: 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(31,26,20,0.5);
  transition: all .25s ease;
}
.expertise-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.55); }
.expertise-card .num { color: var(--gold); font-size: 14px; }
.expertise-card .row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.expertise-card .row .hairline { flex: 1; }
.expertise-card h3 { font-size: 24px; margin-bottom: 12px; }
.expertise-card p { font-size: 14px; color: var(--muted); }

/* ---------- Products ---------- */
.products-photos {
  display: grid; gap: 20px; margin-bottom: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.product-block {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(31,26,20,0.5);
  padding: 32px; margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) { .product-block { padding: 40px; } }
.product-block h3 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 28px;
}
.product-items {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.product-item {
  position: relative; padding: 22px;
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(20,17,13,0.5);
  transition: border-color .2s;
}
.product-item:hover { border-color: rgba(212,175,55,0.55); }
.product-item .hairline { margin-bottom: 14px; }
.product-item h4 { font-family: var(--font-sans); font-weight: 500; font-size: 18px; margin-bottom: 8px; color: var(--fg); }
.product-item p { font-size: 13px; color: var(--muted); }

/* ---------- Approach ---------- */
.approach-wrap { max-width: 860px; margin: 0 auto; text-align: center; }
.approach-wrap p.lead { font-size: 20px; color: var(--muted); margin-bottom: 40px; }
.approach-photo { margin: 0 auto 48px; max-width: 760px; }
.approach-tags {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: left;
}
.approach-tag {
  padding: 16px 20px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(31,26,20,0.5);
  font-size: 14px;
}
.approach-tag span { color: var(--gold); margin-right: 8px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  text-align: left;
}
.contact-card {
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: rgba(20,17,13,0.4);
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card p.label { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.3em; }
.contact-card p.value { margin-top: 8px; font-size: 18px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer img { height: 28px; opacity: 0.8; }
.footer p { font-size: 12px; color: var(--muted); }
