/* SK Agri Advisory — T5 "Meridian Professional" theme */

:root {
  --indigo: #28306E;
  --teal: #1F8A8A;
  --body-text: #2A2D34;
  --muted: #767B85;
  --border: #E6E8EC;
  --footer-bg: #1B2150;
  --footer-text: #C7CBE0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  background: #FFFFFF;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.25;
}

h1 { font-size: 40px; }
h2 { font-size: 26px; }
h3 { font-size: 18px; }

a {
  color: var(--indigo);
  text-decoration: none;
}

/* Header — slim, right-aligned nav */
.site-header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.logo-word {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--indigo);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  color: var(--body-text);
  padding: 6px 0;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--teal);
}

/* Thin teal section dividers (no background blocks) */
.divider {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--teal);
  opacity: 0.45;
}

/* Hero — left-minimal, lots of whitespace */
.hero {
  padding: 96px 0 88px;
}

.hero h1 {
  max-width: 760px;
}

.hero-text {
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0 28px;
}

/* Text button (not filled), teal underline accent */
.text-link {
  display: inline-block;
  font-weight: 500;
  color: var(--indigo);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--teal);
}

/* Sections — airy, no cards */
.section {
  padding: 72px 0;
}

.section-intro {
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 40px;
}

.page-head {
  padding: 72px 0 16px;
}

.updated {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

/* Services — whitespace separated, no cards */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service h3 {
  margin-bottom: 10px;
}

.service p {
  color: var(--body-text);
}

.enquiry-note {
  color: var(--muted);
  margin-top: 40px;
  font-size: 15px;
}

/* Contact — stacked, minimal, no box */
.contact-block p {
  margin-bottom: 14px;
}

.contact-name {
  font-weight: 500;
  color: var(--indigo);
}

.contact-hours {
  color: var(--muted);
  font-size: 15px;
}

/* Prose (about / legal) */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 21px;
  margin: 32px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 16px;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 14px;
  padding: 28px 0;
  margin-top: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links a {
  color: var(--footer-text);
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  h1 { font-size: 30px; }

  .hero {
    padding: 56px 0 52px;
  }

  .section {
    padding: 48px 0;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
