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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9A3A4A;
  --blush: #F5E6D3;
  --blush-light: #FAF3EB;
  --blush-warm: #EDD5C0;
  --cream: #FDF9F4;
  --text-dark: #2A1F1D;
  --text-mid: #5C4A46;
  --text-light: #8A7570;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Karla', Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(42, 31, 29, 0.08);
  --shadow-md: 0 4px 20px rgba(42, 31, 29, 0.1);
  --shadow-lg: 0 8px 40px rgba(42, 31, 29, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

.center {
  text-align: center;
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#site-header.scrolled {
  border-bottom-color: var(--blush-warm);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--burgundy);
  transition: var(--transition);
}

.logo-mark {
  color: var(--burgundy);
}

.logo-light {
  color: var(--blush);
}

.logo-light .logo-mark {
  color: var(--blush);
}

/* Nav */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

#main-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: width var(--transition);
}

#main-nav a:hover,
#main-nav a:focus {
  color: var(--burgundy);
}

#main-nav a:hover::after,
#main-nav a:focus::after {
  width: 100%;
}

.nav-cta {
  color: var(--burgundy) !important;
  border: 1.5px solid var(--burgundy);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--burgundy);
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 31, 29, 0.55) 0%,
    rgba(123, 45, 59, 0.45) 50%,
    rgba(42, 31, 29, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--blush);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(245, 230, 211, 0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blush);
  border-color: var(--blush);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--blush);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--blush);
  opacity: 0.7;
  animation: bounce 2s infinite;
  transition: opacity var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

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

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ===== Products ===== */
.products {
  background: var(--blush-light);
}

.products .section-header {
  margin-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image {
  overflow: hidden;
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--burgundy);
}

.product-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== Craft ===== */
.craft {
  background: var(--cream);
}

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

.craft-content .section-title {
  margin-bottom: 20px;
}

.craft-content > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.craft-values {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.craft-value {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blush-warm);
  border-radius: 50%;
  color: var(--burgundy);
}

.craft-value span:last-child {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.craft-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.craft-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

.craft-images img:first-child {
  height: 360px;
}

.craft-images img:last-child {
  height: 260px;
}

/* ===== Visit ===== */
.visit {
  background: var(--blush-light);
}

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

.visit-info .section-title {
  margin-bottom: 32px;
}

.visit-details {
  margin-bottom: 40px;
}

.visit-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.visit-label {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 70px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-row a {
  color: var(--burgundy);
  transition: color var(--transition);
}

.visit-row a:hover {
  color: var(--burgundy-deep);
  text-decoration: underline;
}

.hours h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hours table {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--blush-warm);
}

.hours td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.hours td:last-child {
  text-align: right;
}

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

.visit-map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 450px;
}

.map-placeholder {
  position: relative;
  height: 100%;
  min-height: 450px;
}

/* ===== CTA / Contact ===== */
.cta {
  background: var(--burgundy);
  color: var(--white);
}

.cta .section-eyebrow {
  color: var(--blush);
}

.cta .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-text p {
  color: rgba(245, 230, 211, 0.8);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--blush-warm);
  border-radius: 2px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(245, 230, 211, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: rgba(245, 230, 211, 0.15);
  border: 1px solid rgba(245, 230, 211, 0.3);
  color: var(--blush);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.95rem;
  text-align: center;
}

.form-success.visible {
  display: block;
  animation: fadeUp 0.4s ease-out;
}

/* ===== Footer ===== */
#footer {
  background: var(--text-dark);
  color: var(--blush);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-contact address {
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(245, 230, 211, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--blush);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 230, 211, 0.12);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(245, 230, 211, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .craft-grid,
  .visit-grid,
  .cta-inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid var(--blush-warm);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  #main-nav li {
    width: 100%;
  }

  #main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--blush-warm);
    font-size: 1rem;
  }

  #main-nav a::after {
    display: none;
  }

  #main-nav li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .about-grid,
  .craft-grid,
  .visit-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 360px;
    width: 100%;
  }

  .craft-images {
    order: -1;
  }

  .craft-images img:first-child {
    height: 260px;
  }

  .craft-images img:last-child {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

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

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

  .visit-map,
  .map-placeholder {
    min-height: 300px;
  }
}
