/* ============================================
   AUDAZ Agency — Main Stylesheet
   "We don't do quiet."
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #EF9F27;
  --amber-dark: #633806;
  --amber-light: #FAEEDA;
  --red: #E24B4A;
  --red-dark: #791F1F;
  --obsidian: #0D0D0D;
  --white: #ffffff;
  --gray-100: #F1EFE8;
  --gray-300: #D3D1C7;
  --gray-500: #888780;
  --gray-700: #444441;
  --text-primary: #0D0D0D;
  --text-secondary: #5F5E5A;
  --border: rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 960px;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }

/* --- Typography --- */
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 16px; font-weight: 500; }
p { color: var(--text-secondary); line-height: 1.75; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #854F0B;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--amber-dark); font-weight: 500; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  border: none;
  transition: background var(--transition);
}

.nav-cta:hover { background: #c43b3a; }

/* --- Lang Toggle --- */
.lang-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 3px;
  border: 0.5px solid var(--border);
}

.lang-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--amber);
  color: var(--amber-dark);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary { background: var(--amber); color: var(--amber-dark); }
.btn-primary:hover { background: #d98e20; }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #c43b3a; }
.btn-outline { background: transparent; color: var(--text-primary); border: 0.5px solid var(--border); }
.btn-outline:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; color: var(--white); border: 0.5px solid rgba(255,255,255,0.25); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); }
.btn-lg { font-size: 16px; padding: 16px 36px; border-radius: var(--radius-md); }
.btn-sm { font-size: 13px; padding: 8px 18px; }

/* --- Hero Dark --- */
.hero-dark {
  background: var(--obsidian);
  padding: 5rem 1.5rem 4rem;
}

.hero-dark .container { max-width: var(--max-width); margin: 0 auto; }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(239,159,39,0.15);
  color: var(--amber);
  border: 0.5px solid rgba(239,159,39,0.3);
  margin-bottom: 1.5rem;
}

.hero-dark h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-dark h1 span { color: var(--amber); }
.hero-dark p { color: var(--gray-500); max-width: 580px; margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.creds-row { display: flex; flex-wrap: wrap; gap: 8px; }

.cred {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 7px 13px;
}

.cred span { font-size: 12px; color: var(--gray-300); }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.stat-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 0.5px solid var(--border);
}

.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--amber); display: block; }
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }

/* --- Brand Wall --- */
.brand-wall { padding: 4rem 0; border-bottom: 0.5px solid var(--border); }

.brand-category { margin-bottom: 2rem; }

.cat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--border);
  display: block;
}

.brand-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.brand-pill {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color var(--transition), color var(--transition);
}

.brand-pill:hover { border-color: var(--amber); color: #854F0B; }
.brand-pill.featured { background: var(--amber-light); border-color: var(--amber); color: var(--amber-dark); }

/* --- Divider Strip --- */
.divider-strip {
  background: var(--obsidian);
  padding: 2.5rem 1.5rem;
}

.divider-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.divider-inner h3 { color: var(--white); }
.divider-inner h3 span { color: var(--amber); }
.divider-inner p { color: var(--gray-500); margin-top: 4px; font-size: 14px; }

/* --- Services Grid --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.svc-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.svc-card:hover { border-color: var(--amber); }

.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.svc-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.team-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card-top { padding: 1.75rem; border-bottom: 0.5px solid var(--border); }

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.avatar-amber { background: var(--amber-light); color: var(--amber-dark); }
.avatar-red { background: #FCEBEB; color: var(--red-dark); }

.team-name { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.team-title { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: #854F0B; margin-bottom: 1rem; text-transform: uppercase; }
.team-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.team-card-bottom { padding: 1rem 1.75rem; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--text-secondary);
  margin: 3px 3px 0 0;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.value-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0.75rem 0 4px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* --- Timeline --- */
.timeline { margin-top: 2rem; }

.tl-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.tl-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  min-width: 50px;
  padding-top: 2px;
}

.tl-content {
  border-left: 0.5px solid rgba(255,255,255,0.15);
  padding-left: 1.25rem;
  flex: 1;
}

.tl-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.tl-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* --- Portfolio Grid --- */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.port-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.port-card:hover { border-color: var(--amber); }

.port-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.port-location {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.port-status {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.status-live { background: #E1F5EE; color: #085041; }
.status-active { background: var(--amber-light); color: var(--amber-dark); }

.port-body { padding: 1.25rem; }
.port-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 0.75rem; }
.port-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: var(--radius-pill); }
.tag-amber { background: var(--amber-light); color: var(--amber-dark); }
.tag-teal { background: #E1F5EE; color: #085041; }
.tag-purple { background: #EEEDFE; color: #3C3489; }
.tag-green { background: #EAF3DE; color: #27500A; }
.tag-blue { background: #E6F1FB; color: #0C447C; }
.tag-gray { background: var(--gray-100); color: var(--text-secondary); }
.tag-red { background: #FCEBEB; color: var(--red-dark); }

.port-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.port-industry { font-size: 12px; color: #854F0B; font-weight: 500; margin-bottom: 0.75rem; }
.port-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }

.scope-box {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.scope-label { font-size: 10px; letter-spacing: 0.07em; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 8px; display: block; }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

.scope-item { text-align: center; }
.scope-num { font-size: 15px; font-weight: 700; display: block; }
.scope-desc { font-size: 10px; color: var(--text-secondary); line-height: 1.3; }

.port-services { font-size: 12px; color: var(--text-secondary); }
.port-services span { color: var(--amber); font-weight: 500; }

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 0;
}

.filter-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--amber); color: var(--amber-dark); }
.filter-btn.active { background: var(--amber); color: var(--amber-dark); border-color: var(--amber); }

/* --- Contact Form --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 0.5px solid var(--border);
}

.form-col { padding: 3rem 2rem 3rem 0; border-right: 0.5px solid var(--border); }
.info-col { padding: 3rem 0 3rem 2rem; }

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

.form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

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

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

.lang-pref { display: flex; gap: 8px; margin-top: 6px; }

.lang-opt {
  flex: 1;
  padding: 9px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}

.lang-opt.selected { background: var(--amber); color: var(--amber-dark); border-color: var(--amber); }

.info-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.info-card-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.info-card-text { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.info-card-text a { color: var(--amber); }

.why-item { display: flex; align-items: flex-start; gap: 8px; }
.why-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* --- Godin Quote --- */
.godin-section {
  padding: 3rem 0;
  background: var(--gray-100);
  border-bottom: 0.5px solid var(--border);
}

.godin-inner {
  border-left: 3px solid var(--amber);
  padding-left: 1.75rem;
  max-width: 720px;
}

.godin-quote { font-size: 19px; font-style: italic; color: var(--text-primary); line-height: 1.65; }
.godin-attr { font-size: 13px; color: var(--text-secondary); margin-top: 10px; }
.godin-attr span { color: #854F0B; font-weight: 500; }

/* --- CTA Section --- */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section h2 span { color: var(--amber); }
.cta-section p { max-width: 540px; margin: 0 auto 2rem; }

.cta-dark {
  background: var(--obsidian);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-dark h2 { color: var(--white); margin-bottom: 1rem; }
.cta-dark h2 span { color: var(--amber); }
.cta-dark p { color: var(--gray-500); max-width: 540px; margin: 0 auto 2rem; }

/* --- Success Message --- */
.success-msg {
  display: none;
  background: #E1F5EE;
  border: 0.5px solid #5DCAA5;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.success-title { font-size: 15px; font-weight: 600; color: #085041; margin-bottom: 4px; }
.success-sub { font-size: 13px; color: #0F6E56; }

/* --- Origin Strip --- */
.origin-strip {
  background: var(--obsidian);
  padding: 4rem 1.5rem;
  border-bottom: 0.5px solid var(--border);
}

.origin-inner { max-width: var(--max-width); margin: 0 auto; }
.origin-strip .section-label { color: #854F0B; }
.origin-strip h2 { color: var(--white); margin-bottom: 2rem; }
.origin-strip h2 span { color: var(--amber); }

/* --- Mission Strip --- */
.mission-strip {
  background: var(--obsidian);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}

.mission-strip h2 { color: var(--white); max-width: 680px; margin: 0.5rem auto 1rem; }
.mission-strip h2 span { color: var(--amber); }
.mission-strip p { color: var(--gray-500); max-width: 540px; margin: 0 auto; }

/* --- Process Bar --- */
.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.process-step {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 0.5px solid var(--border);
}

.process-step:last-child { border-right: none; }
.process-num { font-size: 26px; font-weight: 700; color: var(--amber); display: block; }
.process-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.blog-card:hover { border-color: var(--amber); }

.blog-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-body { padding: 1.25rem; }
.blog-category { font-size: 11px; font-weight: 500; color: #854F0B; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin-bottom: 8px; }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { font-size: 12px; color: var(--text-secondary); display: flex; gap: 1rem; }
.blog-read-more { font-size: 13px; font-weight: 500; color: var(--amber); display: inline-flex; align-items: center; gap: 4px; margin-top: 0.75rem; }

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover { transform: scale(1.08); }

/* --- Footer --- */
.footer {
  padding: 2rem 1.5rem;
  border-top: 0.5px solid var(--border);
  background: var(--white);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 12px; color: var(--text-secondary); }
.footer-tagline { font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: 1px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link { font-size: 12px; color: var(--text-secondary); transition: color var(--transition); }
.footer-link:hover { color: var(--amber); }

/* --- Mobile Hamburger --- */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 0.5px solid var(--border); padding: 1rem 1.5rem; gap: 1rem; z-index: 99; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .process-bar { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .form-col { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 0; }
  .info-col { padding: 2rem 0; }
  .hero-dark { padding: 3rem 1.5rem; }
  .divider-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
