:root {
  --bg: #f7f5f0;
  --ink: #161616;
  --soft: #5f5a54;
  --line: #b7b1a7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .08em;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: relative;
  padding: 42px 48px 52px;
  text-align: center;
}

.socials {
  position: absolute;
  top: 44px;
  left: 54px;
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: var(--ink);
}

.brand, .footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}
.brand small {
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .38em;
}

.main-nav, .footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 78px);
  margin-top: 46px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .34em;
}
.main-nav a, .footer-nav a, .socials a, .footer-socials a {
  transition: opacity .25s ease, transform .25s ease;
}
.main-nav a:hover, .footer-nav a:hover, .socials a:hover, .footer-socials a:hover {
  opacity: .55;
}

.hero {
  width: 100%;
  height: min(68vw, 760px);
  min-height: 430px;
  background: #000;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.intro {
  max-width: 1100px;
  margin: 70px auto 90px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
  text-align: center;
}
.intro p {
  margin: 0;
  color: var(--soft);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 2;
  letter-spacing: .28em;
  white-space: nowrap;
}
.line { height: 1px; background: var(--line); flex: 1 1 70px; }

.portfolio {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 38px 90px;
  text-align: center;
}
.portfolio h1 {
  margin: 0 0 54px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: .48em;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
}
.portfolio h1::before, .portfolio h1::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin: 0 22px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.portfolio-card {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.portfolio-card .number {
  font-size: 9px;
  letter-spacing: .2em;
}
.portfolio-card .title {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 20px;
}
.portfolio-card .title::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--line);
  margin: 11px auto 0;
}
.portfolio-card img {
  aspect-ratio: 4 / 5;
  transition: transform .6s ease, filter .6s ease, opacity .6s ease;
}
.portfolio-card:hover img {
  transform: translateY(-8px);
  opacity: .92;
}

.journal-strip {
  position: relative;
  max-width: var(--max);
  margin: 0 auto 150px;
  padding: 0 82px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.strip-grid img {
  aspect-ratio: 1 / 1;
  filter: grayscale(30%);
}
.vertical-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 9px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .32em;
}
.vertical-label.left { left: 0; }
.vertical-label.right { right: -18px; transform: translateY(-50%) rotate(90deg); }

.site-footer {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 28px 70px;
  text-align: center;
}
.footer-brand { font-size: clamp(28px, 3vw, 42px); }
.footer-nav { margin-top: 44px; gap: clamp(24px, 5vw, 70px); }
.footer-line {
  height: 1px;
  background: var(--line);
  margin: 48px auto 34px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .28em;
}

@media (max-width: 760px) {
  .site-header { padding: 34px 22px 34px; }
  .socials { position: static; justify-content: center; margin-bottom: 30px; }
  .main-nav, .footer-nav { flex-wrap: wrap; gap: 18px 28px; font-size: 9px; }
  .hero { height: 20vh; min-height: 180px; }
  .intro { margin: 54px auto 64px; }
  .portfolio { padding-inline: 22px; }
  .portfolio h1::before, .portfolio h1::after { width: 28px; margin: 0 12px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 46px; }
  .journal-strip { padding: 0 22px; margin-bottom: 90px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vertical-label { display: none; }
    .intro p {
    white-space: normal;
    max-width: 320px;
    margin: 0 auto;
    line-height: 2;
  }

  .portfolio-card {
    margin-bottom: 70px;
  }

  .portfolio-card img {
    margin-top: 28px;
  }
  .contact-page {
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 0 24px;
}
.contact-hero {
  margin: 60px auto 70px;
  padding: 0 24px;
}

.contact-hero h1 {
  font-size: 52px;
}

.contact-info h2 {
  font-size: 48px;
}
}
.brand img {
    width: 300px;
    margin-top: 20px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.socials img:hover {
    opacity: 1;
}
.socials {
    position: absolute;
    top: 55px;
    left: 60px;

    display: flex;
    gap: 18px;
}

.socials a {
    color: #888;
    transition: opacity 0.3s ease;
}

.socials a:hover {
    opacity: 0.5;
}

.socials svg {
    width: 19px;
    height: 19px;
}
.instagram-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.instagram-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.instagram-title .line {
    width: 80px;
    height: 1px;
    background: #d8d8d8;
}

.instagram-title p {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 18px;
}
.about-hero {
  max-width: 1280px;
  margin: 70px auto 90px;
  padding: 0 40px;
  text-align: center;
}

.about-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111;
}

.about-page {
  max-width: 1000px;
  margin: 0 auto 120px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

.about-content {
  max-width: 390px;
  color: #555;
  font-size: 14px;
  line-height: 1.85;
}

.about-name {
  display: block;
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #555;
}

.about-content h2 {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  color: #111;
}

.about-content p {
  margin: 0 0 22px;
}

.about-values {
  border-top: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto 130px;
  padding: 70px 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.about-values span {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  color: #888;
}

.about-values h3 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: #111;
}

.about-values p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.contact-hero {
  max-width: 1180px;
  margin: 80px auto 90px;
  padding: 0 40px;
  text-align: center;
}

.contact-hero span {
  display: block;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: .42em;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
}

.contact-hero p {
  max-width: 680px;
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.contact-page {
  max-width: 960px;
  margin: 0 auto 130px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.contact-info h2 {
  margin: 0 0 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 400;
}

.contact-info p {
  margin: 0 0 26px;
  line-height: 1.7;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: .28em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 18px;
  border: none;
  background: #000;
  color: #fff;
  letter-spacing: .28em;
  cursor: pointer;
}
.gallery-hero {
  max-width: 900px;
  margin: 90px auto 80px;
  padding: 0 40px;
  text-align: center;
}

.gallery-hero span {
  display: block;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #777;
}

.gallery-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: .95;
  color: #111;
}

.gallery-hero p {
  max-width: 560px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.portrait-gallery {
  max-width: 980px;
  margin: 0 auto 140px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: 80px;
  align-items: start;
}

.portrait-gallery img {
  max-height: 74vh;
  object-fit: contain;
  width: 100%;
  display: block;
  height: auto;
}
@media (max-width: 760px) {

  .about-hero {
    margin: 60px auto 70px !important;
    padding: 0 24px !important;
  }

  .about-hero h1 {
    font-size: 44px !important;
    line-height: 1.05 !important;
  }

  .about-page {
    display: block !important;
    margin: 0 auto 90px !important;
    padding: 0 24px !important;
  }

  .about-image img {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 44px !important;
    display: block !important;
  }

  .about-content {
    max-width: 320px !important;
    margin: 0 auto !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.04em !important;
  }

  .about-content h2 {
    font-size: 52px !important;
    line-height: 1 !important;
  }

  .about-values {
    display: block !important;
    margin: 0 auto 90px !important;
    padding: 55px 24px 0 !important;
  }

  .about-values div {
    margin-bottom: 46px !important;
  }

  .about-values h3 {
    font-size: 42px !important;
  }

}
@media (max-width: 760px) {
  .contact-hero h1 {
    font-size: 46px !important;
    line-height: 1.05 !important;
  }

  .contact-hero p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.04em !important;
  }

  .contact-page {
    display: block !important;
    margin: 0 auto 60px !important;
    padding: 0 24px !important;
  }

  .contact-info {
    margin-bottom: 50px !important;
  }

  .contact-form {
    width: 100% !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info h2 {
    text-align: center;
  }
}
/* =========================
   ANIMALS PAGE
========================= */

.animals-page {
  background: #111;
  color: #f5f5f5;
  min-height: 100vh;
}

.animals-hero {
  text-align: center;
  padding: 80px 40px 70px;
}

.animals-number {
  display: block;
  font-size: 12px;
  letter-spacing: .45em;
  color: #888;
  margin-bottom: 26px;
}

.animals-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 26px;
}

.animals-hero p {
  font-size: 12px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0;
}

.animals-gallery {
  width: min(86vw, 1380px);
  margin: 0 auto;
  padding: 0 0 180px;
}

.gallery-full,
.gallery-large,
.gallery-row {
  margin-bottom: 90px;
}

.gallery-full img,
.gallery-large img,
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-full {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-large {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.gallery-item:nth-child(2) {
  margin-top: 90px;
}

.animals-gallery img {
  opacity: .96;
  transition: opacity .5s ease, transform .5s ease;
}

.animals-gallery img:hover {
  opacity: 1;
  transform: scale(1.01);
}

/* MOBILE ANIMALS */
@media (max-width: 760px) {
  .animals-hero {
    padding: 100px 24px 70px;
  }

  .animals-hero h1 {
    font-size: 52px;
    letter-spacing: .16em;
  }

  .animals-hero p {
    font-size: 10px;
    line-height: 2;
    letter-spacing: .28em;
  }

  .animals-gallery {
    width: calc(100% - 44px);
    padding-bottom: 100px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .gallery-item:nth-child(2) {
    margin-top: 0;
  }

  .gallery-full,
  .gallery-large,
  .gallery-row {
    margin-bottom: 80px;
  }
}
.gallery-hero {
  margin: 70px auto 60px;
  padding: 0 24px;
}

.gallery-hero h1 {
  font-size: 56px;
}

.gallery-hero p {
  font-size: 14px;
  line-height: 1.8;
}

.portrait-gallery {
  grid-template-columns: 1fr;
  padding: 0 24px;
  row-gap: 52px;
  margin-bottom: 100px;
}
.gallery-hero {
  max-width: 720px;
  margin: 100px auto 90px;
  padding: 0 24px;
  text-align: center;
}

.gallery-hero span {
  display: block;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #888;
}

.gallery-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: #111;
}

.gallery-hero p {
  max-width: 520px;
  margin: 34px auto 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.editorial-gallery {
  max-width: 1180px;
  margin: 0 auto 140px;
  padding: 0 40px;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.gallery-item.large {
  max-width: 720px;
  margin: 0 auto 110px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: start;
  margin-bottom: 120px;
}

@media (max-width: 760px) {
  .gallery-hero {
    margin: 70px auto 60px;
  }

  .editorial-gallery {
    padding: 0 24px;
    margin-bottom: 90px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 70px;
  }

  .gallery-item.large {
    margin-bottom: 70px;
  }

  .gallery-item img {
    max-height: none;
  }
}
/* ===== EDITORIAL GALLERY - PORTRAITS / CHEFS ===== */

.editorial-gallery {
  max-width: 1180px;
  margin: 0 auto 140px;
  padding: 0 40px;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.gallery-item.large {
  max-width: 720px;
  margin: 0 auto 110px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: start;
  margin-bottom: 120px;
}

@media (max-width: 760px) {
  .editorial-gallery {
    padding: 0 24px;
    margin-bottom: 90px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 70px;
  }

  .gallery-item.large {
    margin-bottom: 70px;
  }

  .gallery-item img {
    max-height: none;
  }
}
.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 30px 100px;
}

.legal-content h1 {
    font-size: 3.2rem;
    margin-bottom: 60px;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}
.legal-page {
  padding-top: 220px;
}
