:root {
  --background: 40 30% 98%;
  --foreground: 220 25% 14%;
  --primary: 38 72% 42%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 16% 20%;
  --secondary-foreground: 40 20% 96%;
  --muted: 40 20% 94%;
  --muted-foreground: 220 10% 40%;
  --accent: 38 45% 88%;
  --card: 0 0% 100%;
  --border: 40 12% 86%;
  --radius: 0.5rem;
  --font-sans: "DM Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--primary));
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.35rem;
  height: 2px;
  background: hsl(var(--primary));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.btn:hover svg.arrow {
  transform: translateX(4px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(var(--background) / 0.94),
    hsl(var(--background) / 0.78),
    hsl(var(--background) / 0.45)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-block: 5rem;
  max-width: 48rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero p {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding-block: 5rem;
}

.section-muted {
  background: hsl(var(--muted) / 0.3);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.section-head p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
}

/* Collections */
.collections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.collection-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

@media (min-width: 768px) {
  .collection-card {
    grid-template-columns: 1.1fr 1fr;
    min-height: 22rem;
  }

  .collection-card:nth-child(even) .collection-image {
    order: 2;
  }
}

.collection-image {
  min-height: 16rem;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.04);
}

.collection-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.collection-body h3 {
  font-size: 1.75rem;
  margin: 0;
}

.collection-body p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  margin: 0;
}

.feature p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

/* Story / about strip */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 22rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
}

.story-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
}

.story-copy p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem;
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding-block: 5rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.cta-band p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* Page hero (contact) */
.page-hero {
  padding-block: 5rem 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0 0 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info h2 {
  font-size: 1.875rem;
  margin: 0 0 1.5rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 2rem;
  line-height: 1.7;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.info-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.info-item p,
.info-item a {
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.info-item a:hover {
  color: hsl(var(--primary));
}

.contact-form-wrap {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form-wrap h2 {
  font-size: 1.875rem;
  margin: 0 0 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: hsl(var(--muted-foreground) / 0.75);
}

.field input:focus,
.field textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: hsl(142 45% 92%);
  color: hsl(142 50% 28%);
  font-size: 0.95rem;
}

.form-status.show {
  display: block;
}

.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px -16px rgb(30 40 60 / 0.25);
  border: 1px solid hsl(var(--border));
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 28rem;
  border: 0;
}

/* Footer */
.site-footer {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding-block: 4rem 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: hsl(var(--secondary-foreground) / 0.8);
  max-width: 22rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--secondary-foreground) / 0.8);
  margin: 0 0 0.75rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: hsl(var(--secondary-foreground));
}

.footer-col svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--secondary-foreground) / 0.7);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}
