/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #F5EDE3;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD0;
  --cream: #FFF9F4;
  --text: #3A2218;
  --text-light: #6B5347;
  --text-muted: #9A8578;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(60,34,24,0.06);
  --shadow-md: 0 8px 30px rgba(60,34,24,0.10);
  --shadow-lg: 0 16px 50px rgba(60,34,24,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section__title--light { color: var(--white); }

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header .section__subtitle { margin: 0 auto; }

.section {
  padding: 100px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,96,58,0.35);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,96,58,0.4);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(255,249,244,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.nav.scrolled .nav__logo { color: var(--text); }

.nav__logo svg { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.25s ease;
}

.nav__link:hover { color: var(--terracotta); background: rgba(192,96,58,0.07); }

.nav__link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover { background: var(--terracotta-dark); }

.nav__toggle {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background 0.2s;
}

.nav__toggle:hover { background: var(--sand); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(58,34,24,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--cream);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active .mobile-menu__inner { transform: translateX(0); }

.mobile-menu__link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}

.mobile-menu__link:hover { background: var(--sand); color: var(--terracotta); }

.mobile-menu__link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  text-align: center;
  margin-top: 16px;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 50%, #FDF0E8 100%);
  position: relative;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(192,96,58,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(192,96,58,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,96,58,0.1);
  color: var(--terracotta);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.text-accent { color: var(--terracotta); }

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__card--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
}

.hero__card--main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero__stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}

.hero__stat--1 {
  bottom: 60px;
  left: -30px;
  animation-delay: 0s;
}

.hero__stat--2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.3s;
}

.hero__stat--3 {
  bottom: -10px;
  right: 30px;
  animation-delay: 2.6s;
}

.hero__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(192,96,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Products ─── */
.products {
  background: var(--white);
}

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

.product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,96,58,0.15);
}

.product-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img { transform: scale(1.06); }

.product-card__body {
  padding: 24px;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── About ─── */
.about {
  background: var(--sand-light);
}

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

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.12;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(192,96,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Schedule ─── */
.schedule {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  padding: 100px 0;
}

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

.schedule__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}

.schedule__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule__phone,
.schedule__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 20px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
}

.schedule__phone:hover,
.schedule__email:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.schedule__table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
}

.schedule__table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--sand);
}

.schedule__table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--sand);
  color: var(--text);
}

.schedule__table tr:last-child td { border-bottom: none; }

.schedule__row--closed td { color: var(--text-muted); font-style: italic; }

/* ─── Contact ─── */
.contact {
  background: var(--white);
}

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

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(192,96,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.contact__item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact__item a {
  color: var(--terracotta);
  font-weight: 500;
  transition: color 0.2s;
}

.contact__item a:hover { color: var(--terracotta-dark); }

.contact__map {
  margin-top: 8px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Form */
.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--sand-dark);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.25s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── Footer ─── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer__logo { color: var(--white); }
.footer__logo span { color: var(--white); }

.footer__copy {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__copy-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  text-align: center;
}

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__container { gap: 40px; }
  .hero__card--main img { height: 420px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__container { grid-template-columns: 1fr; gap: 48px; }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero__visual { order: -1; }
  .hero__card--main img { height: 360px; }
  .hero__stat { display: none; }

  .section { padding: 72px 0; }
  .section__header { margin-bottom: 40px; }

  .products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .about__container { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 400px; }
  .about__image-accent { width: 120px; height: 120px; }

  .schedule__card { grid-template-columns: 1fr; gap: 40px; }
  .schedule__table-wrap { padding: 24px; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .schedule__table th, .schedule__table td { padding: 10px 12px; font-size: 0.88rem; }
}
