:root {
  --color-terracotta: #C4725A;
  --color-terracotta-light: #E8A596;
  --color-terracotta-dark: #A85A45;
  --color-sand: #F5EDE4;
  --color-sand-light: #FAF6F2;
  --color-cream: #FFFDF9;
  --color-text: #3D2C2C;
  --color-text-light: #7A6060;
  --color-border: #E8DDD4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(61, 44, 44, 0.06);
  --shadow-medium: 0 8px 40px rgba(61, 44, 44, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-terracotta);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  transition: transform var(--transition);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.nav ul {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}

.nav a:hover {
  color: var(--color-terracotta);
  background: rgba(196, 114, 90, 0.08);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--color-sand);
}

/* ── Hero ── */
.hero {
  padding-top: 72px;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sand-light) 50%, var(--color-sand) 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  padding-right: 16px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-terracotta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 114, 90, 0.3);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 114, 90, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

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

.btn-full {
  width: 100%;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hero-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.hero-image-main:hover img {
  transform: scale(1.03);
}

.hero-image-accent {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-left: -40px;
  width: 75%;
}

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

.hero-badge {
  position: absolute;
  bottom: 80px;
  right: -10px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.hero-badge svg {
  color: var(--color-terracotta);
}

.hero-wave {
  margin-top: auto;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ── Section shared ── */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--color-cream);
}

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

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.about-image-wrap:hover img {
  transform: scale(1.03);
}

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

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-content em {
  color: var(--color-terracotta);
  font-family: var(--font-display);
  font-style: italic;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ── Shop ── */
.shop {
  padding: 100px 0;
  background: var(--color-sand-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.category-image {
  overflow: hidden;
  aspect-ratio: 1;
}

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

.category-card:hover .category-image img {
  transform: scale(1.06);
}

.category-info {
  padding: 20px 24px 24px;
}

.category-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.category-info p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--color-cream);
}

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

.testimonial-card {
  background: var(--color-sand-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-terracotta-light);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.04em;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-sand) 100%);
}

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

.visit-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.visit-item svg {
  flex-shrink: 0;
  color: var(--color-terracotta);
  margin-top: 2px;
}

.visit-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.visit-item p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.visit-item a {
  color: var(--color-terracotta);
  transition: color var(--transition);
}

.visit-item a:hover {
  color: var(--color-terracotta-dark);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}

.map-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-cream);
  color: var(--color-text);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.map-link:hover {
  background: var(--color-terracotta);
  color: #fff;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--color-cream);
}

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

.contact-text .section-title {
  margin-bottom: 16px;
}

.contact-text p {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.7;
}

.contact-form {
  background: var(--color-sand-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 90, 0.12);
}

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

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(196, 114, 90, 0.1);
  border: 1px solid var(--color-terracotta-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-terracotta-dark);
  text-align: center;
}

.form-success.show {
  display: block;
}

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

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

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Nav ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61, 44, 44, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-image-accent {
    margin-left: -24px;
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    padding: 88px 32px 32px;
    z-index: 95;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .nav a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.active {
    pointer-events: all;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-image-accent {
    margin-left: 0;
    width: 60%;
  }

  .hero-badge {
    bottom: 40px;
    right: 0;
  }

  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    gap: 24px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-accent {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
