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

:root {
  --bg-light: #F9F6F0;
  --bg-dark: #D3C2B5;
  --bg-subtle: #EDE4DC;
  --text-color: #5A4E46;
  --text-dark: #3D332D;
  --btn-bg: #BDA698;
  --btn-text: #FFFFFF;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-color);
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typo & Buttons --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 15px;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

p { font-size: 0.95rem; margin-bottom: 20px; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}

.btn:hover { opacity: 0.85; }

.btn-primary, .btn-secondary {
  background-color: var(--btn-bg);
  color: var(--btn-text);
}

.btn-dark {
  background-color: #8C7C72;
  color: #FFF;
}

/* --- Layout Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-light { background-color: var(--bg-light); }
.section-dark { background-color: var(--bg-dark); color: #4A3E37; }
.section-dark h2 { color: #352B25; }

/* --- Specific Components --- */
.brand-header {
  background-color: var(--bg-subtle);
  text-align: center;
  padding: 40px 0;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: 12px;
  color: #7A695E;
}

.circle-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Features Section --- */
.section-features {
  text-align: center;
  background-color: #FAF7F2;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.feature-card .icon {
  font-size: 1.8rem;
  color: #9C897D;
  margin-bottom: 15px;
}

/* --- Footer CTA --- */
.footer-cta {
  background-color: #F4EFEA;
  padding-top: 60px;
}

.contact-info {
  font-weight: bold;
  line-height: 1.8;
}

.footer-img img {
  border-top-left-radius: 100px;
  object-fit: cover;
  max-height: 350px;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  padding: 20px;
  background-color: #EAE3DC;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .grid-2.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .brand-logo { font-size: 2.2rem; letter-spacing: 6px; }

  .circle-frame {
    max-width: 280px;
  }

  .section { padding: 40px 0; }
}