:root {
  --color-bg: #fff7ec;
  --color-surface: #fff1dd;
  --color-accent: #e79c4c;
  --color-accent-soft: #ffe0b8;
  --color-text: #3d2b20;
  --color-muted: #7a624e;
  --color-border: #ead3b5;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe9c7, #fff7ec 40%, #ffffff);
  color: var(--color-text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header & Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 236, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 211, 181, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.25rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 52px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  background: #fffdf8;
}

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

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.2rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e79c4c, #ffbe6c);
  transition: width 0.2s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  border: none;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(120deg, #e79c4c, #ffbe6c);
  color: #3c2415;
  box-shadow: 0 12px 30px rgba(231, 156, 76, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(231, 156, 76, 0.45);
}

.btn.secondary {
  background: #fff7ec;
  color: var(--color-muted);
  border-color: #eed7b9;
}

.btn.secondary:hover {
  background: #fff1dd;
}

.btn.full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 2.7rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin: 0.3rem 0 0.6rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 0.5rem;
}

.hero .note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-card {
  background: radial-gradient(circle at top left, #ffe1b5, #fff7ec);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.8rem;
}

.hero-card li {
  margin-bottom: 0.25rem;
}

.hero-card .card-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Sections */

.section {
  padding: 2.7rem 0;
}

.section.light {
  background: linear-gradient(to bottom, rgba(255, 247, 236, 0.9), #ffffff);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.section-intro {
  max-width: 34rem;
  color: var(--color-muted);
}

.two-column {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr);
}

/* Feature & Info Cards */

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.info-card,
.hours-card {
  background: rgba(255, 248, 237, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
}

.feature-card h3,
.info-card h3,
.hours-card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.feature-card p,
.info-card p,
.hours-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  margin-bottom: 0.4rem;
}

.callout {
  margin-top: 0.8rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-lg);
  background: var(--color-accent-soft);
  border: 1px dashed rgba(231, 156, 76, 0.7);
  font-size: 0.9rem;
}

/* Gallery placeholders */

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.placeholder-card {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--color-border);
  background: repeating-linear-gradient(
    135deg,
    #fff7ec,
    #fff7ec 8px,
    #ffe6c5 8px,
    #ffe6c5 16px
  );
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Contact */

.contact-grid {
  align-items: start;
}

.contact-form {
  background: #fffdf8;
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 999px;
  border: 1px solid #e3cfb2;
  padding: 0.55rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(231, 156, 76, 0.4);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(234, 211, 181, 0.8);
  background: #fffaf1;
  padding: 1rem 0 1.3rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

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

.footer-phone {
  font-weight: 700;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .card-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(255, 247, 236, 0.97);
    border-bottom: 1px solid rgba(234, 211, 181, 0.8);
    flex-direction: column;
    padding: 0.6rem 1.25rem 0.9rem;
    transform-origin: top;
    transform: scaleY(0.3);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease, opacity 0.16s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }
  .main-nav a {
    padding: 0.25rem 0;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tagline {
    display: none;
  }
  .placeholder-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.6rem, 480px);
  }
  .hero {
    padding-top: 1.8rem;
  }
  .hero-cta {
    flex-direction: column;
  }
}
