/* -------- Base Reset -------- */
:root {
  --gaura-text-primary: #111827;     /* Authority */
  --gaura-text-secondary: #4b5563;   /* Calm */
  --gaura-accent: #9A6A2F;           /* Earthy gold */
  --gaura-border: #e5e7eb;           /* Soft structure */
  --gaura-bg-soft: #fafafa;          /* Very light neutral */
}

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

body {
  background-color: #ffffff;
  /*background-image:
    linear-gradient(to right, rgba(0,0,0,0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.01) 1px, transparent 1px);
  background-size: 48px 48px;*/
  background: linear-gradient(#ffffff, #fafafa);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gaura-text-secondary);
}

body.scrolled header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

main {
  padding-top: 24px;
}

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

/* -------- Layout -------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
    transition: box-shadow 0.2s ease;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--gaura-border);
}

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

.brand {
  display: flex;
  align-items: center; /* key change */
  gap: 12px;
}

.brand-mark {
  height: 55px;      /* 👈 primary control */
  width: auto;       /* maintains aspect ratio */
  flex-shrink: 0;    /* prevents squishing */
}

.brand-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 20px;        /* slightly smaller, more precise */
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gaura-text-primary);
  white-space: nowrap;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ------ nav links --------*/
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links a {
    margin-left: 24px;
    font-size: 14px;
    color: #374151;
}

.nav-links a:hover {
    color: #111827;
}

.nav-links a {
  position: relative;
  color: var(--gaura-text-secondary);
}

.nav-links a.active {
  color: var(--gaura-text-primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: var(--gaura-accent);
}

/* -------- Hero -------- */
.hero {
  padding: 88px 0 72px;
  position: relative;
}

.hero {
  padding: 120px 0 88px;
  margin-bottom: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12%;
  width: 1px;
  height: 60%;
  background-color: var(--gaura-accent);
  opacity: 0.25;
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  max-width: 720px;
  letter-spacing: -0.3px;
}

.hero h1 {
  font-size: 44px;
  max-width: 760px;
  margin-top: 12px;
}

.hero p {
  margin-top: 20px;
  max-width: 640px;
  font-size: 18px;
  color: var(--gaura-text-secondary);
}

.home-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 85vh;
  padding: 80px 0;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gaura-accent);
  margin-top: 18px;
}


.hero-tagline {
  font-family: "Source Serif 4", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563; /* neutral grey */
  max-width: 560px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  opacity: 0.9;
}

/* -------- Section -------- */
section {
  padding: 72px 0;
  border-top: 1px solid var(--gaura-border);
}

section {
  position: relative;
}
/*
section:not(.hero)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: var(--gaura-border);
}
*/
section:nth-of-type(even) {
  background-color: var(--gaura-bg-soft);
}


section h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  position: relative;
  margin-top: 0;
}

/* section h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--gaura-accent);
  margin-top: 8px;
} */

section p {
    max-width: 720px;
    color: #4b5563;
}

section {
  background-color: #fafafa;               /* soft neutral */
  padding: 48px 48px;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

section.hero {
  background-color: transparent;
  box-shadow: none;
  padding: 120px 0 88px;
  margin: 0;
}

section:not(.hero):hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-text {
  display: flex;
  flex-direction: column;
}

.section-text::after {
  content: "";
  width: 36px;
  height: 2px;
  background-color: var(--gaura-accent);
  margin-top: 8px;
}

.section-icon {
  font-size: 18px;
  color: var(--gaura-accent);
  margin-top: 4px; /* aligns with text baseline */
}

/* -------- Cards -------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.card {
  padding: 28px;
  border: 1px solid var(--gaura-border);
  border-left: 3px solid var(--gaura-accent);
  border-radius: 10px;
  background-color: #ffffff;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: #4b5563;
}

/* -------- Footer -------- */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }
}

h1, h2, h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--gaura-text-primary);
}

h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.25px;
}

h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

p {
    color: #4b5563;
}

.accent {
    color: #9A6A2F;
}

.nav-links a {
  margin-left: 24px;
  font-size: 14px;
  color: var(--gaura-text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: var(--gaura-accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
    color: #111827;
}

section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

section li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}

section li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gaura-text-secondary);
  font-weight: 500;
  opacity: 0.7;
}


section li::marker {
  color: var(--gaura-text-secondary);
}


.contact-form {
  max-width: 560px;
  margin-top: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gaura-text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid var(--gaura-border);
  border-radius: 6px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gaura-accent);
}

button[type="submit"] {
  margin-top: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--gaura-accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-visual {
    order: -1;
  }
}


/* ---- Hero Fade-in Animation ---- */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger for hierarchy */
.fade-in.delay-1 {
  transition-delay: 0.15s;
}

.fade-in.delay-2 {
  transition-delay: 0.3s;
}

.fade-in.delay-3 {
  transition-delay: 0.45s;
}
