@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #C25E00;
  --primary-dark: #8F4200;
  --primary-light: #FFF4EB;
  --accent: #E88936;
  --bg: #FBF8F5;
  --bg-card: #FFFFFF;
  --text-main: #241A15;
  --text-muted: #6E6159;
  --text-light: #94857D;
  --border: #EFE6DD;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(36, 26, 21, 0.04);
  --shadow-md: 0 8px 24px rgba(36, 26, 21, 0.08);
  --shadow-lg: 0 16px 40px rgba(36, 26, 21, 0.12);
  --max-w: 1200px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Notice Bar */
.top-banner {
  background: linear-gradient(90deg, #8F4200, #C25E00);
  color: #FFF;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.top-banner span {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
  font-weight: 700;
}

/* Header & Nav */
header.site-header {
  background: rgba(251, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.brand-text h1 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--primary);
}

nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(194, 94, 0, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #FFF;
}

.btn-secondary {
  background: #FFF;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(194, 94, 0, 0.15);
}

.hero h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-float-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.image-float-badge .icon {
  font-size: 2rem;
}

.image-float-badge h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.image-float-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Remodeling Callout */
.remodeling-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin: 40px 0 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.remodeling-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.remodel-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
}

.remodel-info h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.remodel-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Section Common */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Donut Showcase Grid */
.donut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.donut-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.donut-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.donut-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.donut-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.donut-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.donut-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.donut-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.donut-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Story / History Banner */
.story-section {
  background: #FFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.story-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Contact / Details Section */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.info-card {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.info-card .icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
footer.site-footer {
  background: #1C1410;
  color: #E2D9D2;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #FFF;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #A99B91;
  max-width: 400px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #A99B91;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #7D6E64;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .remodeling-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2.4rem;
  }

  nav.main-nav {
    display: none;
  }

  nav.main-nav.open {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid var(--border);
    padding: 24px;
  }

  nav.main-nav.open ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .mobile-toggle {
    display: block;
  }
}
