:root {
  --ink: #241b17;
  --cocoa: #4c3328;
  --ivory: #fbf7ef;
  --cream: #f1e7d8;
  --linen: #e5d4bf;
  --champagne: #c8a56a;
  --rose: #8b3f46;
  --sage: #6f7558;
  --shadow: rgba(36, 27, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 5vw, 70px);
  color: var(--ivory);
  background: linear-gradient(
    to bottom,
    rgba(36, 27, 23, 0.68),
    rgba(36, 27, 23, 0)
  );
}

.brand {
  display: grid;
  gap: 1px;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}

.brand strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0.15em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 27, 23, 0.76), rgba(36, 27, 23, 0.22) 54%, rgba(36, 27, 23, 0.5)),
    linear-gradient(0deg, rgba(36, 27, 23, 0.5), rgba(36, 27, 23, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 44px));
  margin-left: clamp(22px, 8vw, 116px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 10.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.hero-copy {
  width: min(560px, 100%);
  margin-top: 22px;
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid rgba(251, 247, 239, 0.58);
  background: rgba(251, 247, 239, 0.08);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.primary-link:hover {
  background: rgba(251, 247, 239, 0.16);
}

.intro-section,
.inspiration-section,
.career-gallery-section,
.chef-word-section,
.craft-section,
.book-section,
.universe-section,
.ambition-section,
.contact-section {
  padding: clamp(74px, 10vw, 140px) clamp(22px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 20px;
  max-width: 640px;
  color: var(--cocoa);
  font-size: 1.05rem;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(40px, 6vw, 76px) clamp(22px, 6vw, 86px);
  background: var(--cream);
}

.founder-panel,
.quote-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(76, 51, 40, 0.15);
  background: rgba(251, 247, 239, 0.64);
  box-shadow: 0 20px 60px var(--shadow);
}

.founder-panel {
  display: grid;
  gap: 20px;
}

.founder-panel h2 {
  margin-bottom: 4px;
}

.quote-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 20px;
  background: var(--ink);
  color: var(--ivory);
}

.quote-panel span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.chef-word-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: #fffaf2;
}

.chef-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(76, 51, 40, 0.14);
  box-shadow: 0 20px 70px rgba(36, 27, 23, 0.14);
}

.chef-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
}

.chef-word {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.chef-word h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
}

.chef-word p:not(.eyebrow) {
  color: var(--cocoa);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.chef-signature {
  margin-top: 8px;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem !important;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.section-heading p:not(.eyebrow) {
  width: min(720px, 100%);
  margin-top: 22px;
  color: var(--cocoa);
  font-size: 1.08rem;
}

.career-gallery-section {
  background: #f7efe3;
}

.career-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.career-gallery article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(76, 51, 40, 0.14);
  background: var(--ivory);
  box-shadow: 0 18px 54px rgba(36, 27, 23, 0.08);
}

.career-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--cream);
}

.career-img-perret {
  object-position: 52% top;
}

.career-gallery div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
}

.career-gallery span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.career-gallery p {
  color: var(--cocoa);
}

.inspiration-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(76, 51, 40, 0.16);
}

.inspiration-list article {
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--ivory);
}

.inspiration-list span {
  display: block;
  margin-bottom: 58px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.inspiration-list p,
.craft-copy p,
.craft-points p,
.universe-grid p,
.ambition-section p {
  color: var(--cocoa);
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  background: #efe1cf;
}

.craft-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.craft-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-self: stretch;
  background: rgba(76, 51, 40, 0.16);
}

.craft-points article {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 260px;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--ivory);
}

.craft-points h3 {
  margin-bottom: 0;
}

.book-section {
  background: var(--ivory);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.book-item {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(76, 51, 40, 0.14);
  background: #fffaf2;
  box-shadow: 0 18px 54px rgba(36, 27, 23, 0.08);
}

.book-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.book-img-focus-bottom {
  object-position: center bottom;
}

.book-img-focus-top {
  object-position: center top;
}

.book-img-focus-right {
  object-position: right center;
}

.book-item div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 2vw, 26px);
}

.book-item h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.book-item p:not(.book-tag) {
  color: var(--cocoa);
  font-size: 0.98rem;
}

.book-tag {
  margin: 0;
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-featured {
  grid-column: span 2;
}

.book-featured img {
  aspect-ratio: 16 / 11;
}

.universe-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  background: #f7efe3;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.universe-grid div {
  padding-top: 24px;
  border-top: 1px solid rgba(76, 51, 40, 0.22);
}

.ambition-section {
  background: var(--ink);
  color: var(--ivory);
}

.ambition-section h2,
.ambition-section p {
  width: min(970px, 100%);
}

.ambition-section p {
  margin-top: 26px;
  color: rgba(251, 247, 239, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: #f7efe3;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(76, 51, 40, 0.16);
  background: var(--ivory);
  box-shadow: 0 20px 60px rgba(36, 27, 23, 0.1);
}

.contact-card p {
  color: var(--cocoa);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.contact-card a {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 86px);
  background: #18110f;
  color: rgba(251, 247, 239, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 20px;
    background: linear-gradient(
      to bottom,
      rgba(36, 27, 23, 0.72),
      rgba(36, 27, 23, 0)
    );
  }

  .main-nav {
    position: fixed;
    inset: auto 10px calc(10px + env(safe-area-inset-bottom)) 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(251, 247, 239, 0.2);
    background: rgba(36, 27, 23, 0.94);
    box-shadow: 0 18px 50px rgba(36, 27, 23, 0.28);
    backdrop-filter: blur(18px);
    color: var(--ivory);
    font-size: 0.62rem;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
  }

  .main-nav a {
    min-width: 0;
    padding: 8px 4px;
    opacity: 0.86;
    white-space: nowrap;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 96px;
  }

  .intro-grid,
  .founder-section,
  .chef-word-section,
  .craft-section,
  .universe-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .inspiration-list,
  .craft-points,
  .book-grid,
  .career-gallery,
  .universe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inspiration-list,
  .craft-points,
  .career-gallery,
  .universe-grid {
    grid-template-columns: 1fr;
  }


  .book-featured {
    grid-column: span 1;
  }

  .inspiration-list article {
    min-height: auto;
  }

  .craft-points article {
    min-height: auto;
  }

  .inspiration-list span {
    margin-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px 18px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .founder-panel,
  .quote-panel,
  .chef-word-section {
    padding: 26px 20px;
  }

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

  .site-footer {
    display: grid;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
}
