@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Parisienne&display=swap');

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

:root {

  /* Whites */
  --white: #ffffff;
  --off-white: #f8f6f4;
  --soft-white: #fdfaf9;

  /* Blacks */
  --black: #111111;
  --soft-black: #1c1c1c;
  --charcoal: #2c2c2c;

  /* Light Pink */
  --light-pink: #f5d6df;
  --soft-pink: #eec9d2;

  /* Bright Pink */
  --bright-pink: #ff4f8b;
  --hot-pink: #ff2e78;

  /* Orange */
  --soft-orange: #f4a261;
  --warm-orange: #ee8959;
  --burnt-orange: #d96b3b;

  /* Extras */
  --border: rgba(0, 0, 0, 0.08);
  --shadow: rgba(0, 0, 0, 0.12);
}

/* Base */

body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--display-font);
}

/* Hero Section */

.things-hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    linear-gradient(160deg,
      rgba(12, 8, 10, 0.72) 0%,
      rgba(12, 8, 10, 0.40) 55%,
      rgba(12, 8, 10, 0.70) 100%),
    url("./assets/swing-bridge.png");

  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  animation: thingsZoomOut 18s ease forwards;
}

@keyframes thingsZoomOut {
    from {
        background-size: 120%;
    }

    to {
        background-size: 100%;
    }
}

.things-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  padding: 0 28px;
  color: var(--white);
  text-align: center;
}

.things-hero-content h1 {
  text-align: center;
  font-family: "Bodoni Moda", serif;
  font-size: 8.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    flex-shrink: 0;

    background: linear-gradient(
        to right,
        transparent,
        var(--bright-pink),
        transparent
    );
}

.things-hero h1 {
font-family: "Bodoni Moda", serif;
  font-size: 6.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

/* Intro */

.things-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  padding-bottom: 34px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.things-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.things-eyebrow::before,
.things-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.things-intro h2 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  margin: 50px 0 24px;
  
}

.things-intro p {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--ink-soft);
  padding: 10px;
}

/* Grid */

.things-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

/* Cards */

.thing-card {
  position: relative;
  padding: 32px 28px 40px;
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: left;
  transition: background 0.2s ease;
}



.thing-card:hover {
  background: var(--paper-2);
}


/* Images */

.thing-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 22px;
  filter: sepia(8%) contrast(1.04);
  transition: filter 0.3s ease;
}

.thing-card:hover .thing-image img {
  filter: sepia(0%) contrast(1.06);
}

/* Headings */

.thing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}

/* Body */

.thing-card p {
  font-family: var(--body-text);
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

/* Responsive */

@media (max-width: 1000px) {
  .things-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {

  .things-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    animation: none;
  }

  .things-hero-content {
    text-align: center;
    padding: 0 24px;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    gap: 10px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 40px;
  }

  .things-hero h1 {
    font-size: clamp(3.8rem, 16vw, 5rem);
    line-height: 0.95;
  }
}