@font-face {
  font-family: 'FischScript';
  src: url('../fonts/fisch-script.woff') format('woff');
  font-display: swap;
}

:root {
  --terracotta: #a6603a;
  --cream: #efe3b8;
  --ink: #2b1c12;
  --font-heading: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --font-body: -apple-system, 'system-ui', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-script: 'FischScript', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
}

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

h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 2.8rem;
  margin: 0 0 1.2rem;
}

a { color: inherit; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--terracotta);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw;
}

.logo-badge {
  position: relative;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #343434;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.logo-badge img {
  position: absolute;
  left: 5%;
  top: 12%;
  width: 90%;
}

.logo-wordmark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.logo-wordmark text,
.logo-wordmark textPath {
  font-family: var(--font-script);
  fill: var(--cream);
  font-size: 34px;
}

.hero-line {
  font-size: 1.8rem;
  line-height: 1.35;
  color: var(--cream);
  max-width: 460px;
  margin: 0;
}

.hero-image {
  overflow: hidden;
}

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

/* Our Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.story-image { overflow: hidden; }

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw;
}

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

.story-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 1.5rem;
}

.story-text .badge {
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
}

/* Organic Selection */
.selection {
  background: var(--terracotta);
  padding: 5rem 5vw;
}

.selection h2 { color: var(--cream); }

.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 2.5rem;
  margin-top: 2rem;
}

.col-mosaic {
  column-count: 2;
  column-gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.col-mosaic img {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  border-radius: 3px;
  break-inside: avoid;
}

.col-mosaic img:first-child {
  column-span: all;
  margin-bottom: 0.5rem;
}

.col-caption {
  color: var(--cream);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.col-sub {
  color: rgba(239, 227, 184, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Get in Touch */
.contact {
  background: var(--cream);
  padding: 5rem 5vw;
}

.contact h2 { color: var(--terracotta); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-image { overflow: hidden; border-radius: 4px; }

.contact-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact-item { margin-bottom: 1.8rem; }

.contact-label {
  font-family: var(--font-heading);
  color: var(--terracotta);
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}

.contact-item a {
  color: var(--terracotta);
  text-decoration: underline;
  font-size: 1.05rem;
}

.message-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 860px) {
  .hero, .story, .selection-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-image img { height: 55vh; }
  .story-image img { min-height: 320px; }
  .hero-text, .story-text { padding: 3rem 6vw; }
  .contact-image img { height: 300px; }
  h2 { font-size: 2.2rem; }
}
