:root {
  --bg: #F6F5F3;
  --panel: #F6F5F3;
  --ink: #2b2623;
  --accent: #d48b6b;
  --accent-ink: #5a382c;
  --muted: #6b5e56;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

.frame {
  max-width: 1200px;
  margin: 24px auto;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* -----------------------------
   HEADER & NAVIGATION
----------------------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--panel);
  flex-wrap: wrap;
  /* margin-top: 70px; */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-ink);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-logo {
  height: 10px;
  width: auto;
  border-radius: 8px;
}

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

.nav a {
  text-decoration: none;
  color: #493e37;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent-ink);
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, var(--panel), #F6F5F3 60%);
  padding: 24px 16px;
}

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #3a2f28;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--muted);
}

.cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
 } 

.hero-image {
  width: 100%; /*gh */
  height: 100%; /*gjh*/
  max-width: 200px;   /* controls size on desktop */
  object-fit: cover;
  display: block;
} 
.center-image {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  border-radius: 20px; 
  /* box-shadow: var(--shadow); */
}

/* -----------------------------
   BUTTONS
----------------------------- */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent-ink);
  background: transparent;
}

.btn:hover {
  filter: brightness(0.95);
}

/* -----------------------------
   SECTIONS
----------------------------- */
.section {
  margin: 0 24px 20px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
}

.section h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #3a2f28;
}

.section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.muted {
  color: var(--muted);
}

/* -----------------------------
   BLOCKQUOTE (Optional)
----------------------------- */
blockquote {
  font-style: italic;
  color: #5a4a42;
  background-color: #fdece2;
  border-left: 4px solid #d48b6b;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

blockquote footer {
  font-size: 0.9rem;
  color: #8b776b;
  text-align: right;
  margin-top: 0.5rem;
}

/* -----------------------------
   FOOTER
----------------------------- */
.footer {
  /* color: #cfcfcf; */
  color: #120f0f;
  text-align: center;
  padding: 22px;
  font-size: 0.9rem;
}

/* -----------------------------
   RESPONSIVE DESIGN
----------------------------- */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .frame {
    max-width: 90%;
    margin: 16px auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }

  .nav {
    justify-content: center;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .frame {
    margin: 0;
    border-radius: 0;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    margin: 12px;
    padding: 20px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .nav {
    gap: 12px;
  }
}
.container {
  display: flex;
  gap: 40px; /* space between left and right */
  align-items: flex-start;
}

.left{
  flex: 1; /* takes 1 part of available space */
}

.right {
  flex: 2; /* takes 2 parts (bigger) */
}
.subheader {
  font-size: 1.2rem;
  color: #555;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 400;
}
nav ul {
  padding-left: 40px;   /* standard indent */
}
/* 1. Put cards side-by-side */
.contact-cards {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

/* 2. Card styling */
.card {
  background: #F6F5F3;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex: 1;
}

/* 3. Remove bullets */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 4. Style each contact row (icon + text) */
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* 5. Make icons uniform */
.contact-list img {
  width: 22px;
  height: 22px;
}

/* Optional: links style */
.contact-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
form input,
form textarea {
  width: 100%;          /* makes them fill the card */
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* ------- */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
