﻿@font-face {
  font-family: "Lorenzi Serif";
  src: url("assets/fonts/fraunces-light-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lorenzi Serif";
  src: url("assets/fonts/fraunces-light-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lorenzi Serif";
  src: url("assets/fonts/fraunces-light-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lorenzi Serif Semi";
  src: url("assets/fonts/fraunces-semibold-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lorenzi Display";
  src: url("assets/fonts/playfair-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --white: #fff;
  --paper: #fffaf6;
  --cream: #faf0e6;
  --cream-strong: #f2dfcf;
  --terracotta: #b47859;
  --soft-terracotta: #c18f76;
  --brown: #784610;
  --text: #4f5151;
  --muted: #74706b;
  --line: #e4d2c4;
  --shadow: 0 20px 50px rgb(120 70 16 / 12%);
  --container: 1180px;
  --gutter: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body:has(.cookie-banner) {
  padding-bottom: 78px;
}

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

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

[id] {
  scroll-margin-top: 110px;
}

p,
h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

.container,
.nav-shell,
.hero-inner {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 250 246 / 92%);
  border-bottom: 1px solid rgb(180 120 89 / 18%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--brown);
  font-family: "Lorenzi Serif", "Times New Roman", serif;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--terracotta);
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
}

.nav-link {
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--white);
  color: var(--brown);
  font: inherit;
}

.button,
.inline-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--soft-terracotta);
  border-radius: 999px;
  color: var(--soft-terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
}

.button.primary,
.inline-actions a:first-child {
  background: var(--soft-terracotta);
  color: var(--white);
}

.button.ghost {
  background: rgb(255 255 255 / 58%);
  color: var(--brown);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--image) center / cover no-repeat;
  color: var(--brown);
}

.hero::before,
.inner-hero::before,
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 250 246 / 88%), rgb(255 250 246 / 46%) 48%, rgb(255 250 246 / 16%));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 110px;
}

.hero-kicker,
.eyebrow,
.card-kicker {
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 16px;
}

.hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 96px;
  line-height: 0.95;
  font-weight: 700;
}

.hero-role {
  margin-top: 22px;
  color: var(--brown);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 26px;
}

.hero-tagline {
  margin-top: 52px;
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 46px;
  font-style: italic;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.notice-section {
  padding: 26px 0 0;
  background: var(--paper);
}

.notice-card {
  display: grid;
  grid-template-columns: 290px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.notice-card h2,
.section-heading h2,
.rich-copy h2,
.event-list h3,
.service-detail h2,
.know-grid h3,
.blog-card h3,
.testimonial-grid h2,
.stone-card h3,
.legal-list h2,
.site-footer h2 {
  color: var(--terracotta);
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-weight: 700;
}

.notice-card h2 {
  font-size: 28px;
}

.notice-card p {
  color: #1f2020;
  font-size: 17px;
}

.inline-actions {
  display: flex;
  gap: 12px;
}

.section {
  padding: 104px 0;
  background: var(--paper);
}

.cream-section {
  background: var(--cream);
}

.split-layout,
.feature-layout,
.events-layout,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.portrait-stack {
  position: relative;
}

.portrait-stack > img,
.media-frame > img,
.events-layout > img,
.book-panel img,
.custom-stone .feature-layout > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 210px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-card strong {
  display: block;
  color: var(--brown);
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.mini-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.rich-copy h2,
.section-heading h2 {
  margin-top: 12px;
  color: var(--brown);
  font-size: 52px;
  line-height: 1.05;
}

.rich-copy p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.service-grid,
.blog-grid,
.stone-grid,
.know-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgb(120 70 16 / 8%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card h3 {
  margin-top: 10px;
  color: var(--brown);
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
}

.service-card p:not(.card-kicker) {
  margin-top: 16px;
}

.service-card strong,
.service-detail strong,
.stone-card strong {
  display: inline-block;
  margin-top: 22px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
}

.stone-buy {
  width: 100%;
  margin-top: 20px;
}

.quote-section {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--image) center / cover no-repeat;
  color: var(--brown);
  text-align: center;
}

.quote-section blockquote {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - var(--gutter)));
  margin: 0;
}

.quote-section p {
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.25;
}

.quote-section cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 20px;
}

.radio-section {
  background: var(--white);
}

.media-frame {
  position: relative;
}

.media-frame > img {
  height: 560px;
}

.radio-logo {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 170px;
  border: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.events-section {
  background: var(--paper);
}

.events-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.events-layout > img {
  height: 610px;
}

.event-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.event-list article,
.know-grid article,
.testimonial-grid article,
.legal-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.event-list h3 {
  color: var(--brown);
  font-size: 28px;
}

.event-list p {
  margin-top: 8px;
}

.event-list span {
  display: block;
  margin-top: 10px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.book-panel {
  grid-row: span 2;
}

.book-panel img {
  height: 100%;
  min-height: 610px;
}

.stones-teaser {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.blog-preview {
  background: var(--white);
}

.inner-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--image) center / cover no-repeat;
  color: var(--brown);
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  max-width: 760px;
  margin-top: 12px;
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
}

.inner-hero p:not(.hero-kicker) {
  max-width: 620px;
  margin-top: 18px;
  font-size: 24px;
}

.service-detail-list {
  display: grid;
  gap: 34px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgb(120 70 16 / 8%);
}

.service-detail.is-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.service-detail.is-reverse img {
  order: 2;
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.service-detail div {
  padding: 48px;
}

.service-detail h2 {
  margin-top: 10px;
  color: var(--brown);
  font-size: 42px;
  line-height: 1.05;
}

.service-detail p:not(.eyebrow) {
  margin-top: 18px;
}

.service-detail .button {
  margin-top: 28px;
}

.know-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.know-grid h3 {
  color: var(--brown);
  font-size: 26px;
}

.know-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card a {
  display: block;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card div {
  padding: 26px;
}

.blog-card p {
  color: var(--muted);
  font-size: 15px;
}

.blog-card h3 {
  margin-top: 14px;
  color: var(--brown);
  font-size: 28px;
  line-height: 1.15;
}

.blog-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.blog-card strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 16px;
}

.article-hero {
  padding: 92px 0;
  background: var(--cream);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.article-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--brown);
  font-family: "Lorenzi Serif", "Times New Roman", serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 1;
}

.article-hero p:not(.hero-kicker) {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 22px;
}

.article-hero img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.article-section {
  background: var(--paper);
}

.article-body {
  max-width: 860px;
}

.article-body p {
  color: var(--text);
  font-size: 23px;
  line-height: 1.58;
}

.article-body p + p {
  margin-top: 28px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid article {
  min-height: 250px;
}

.testimonial-grid h2 {
  color: var(--brown);
  font-size: 28px;
}

.testimonial-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.stones-intro {
  display: grid;
  place-items: center;
  text-align: center;
}

.stones-intro img {
  width: 120px;
}

.stones-intro p {
  width: min(720px, 100%);
  margin-top: 22px;
  font-size: 22px;
}

.stone-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stone-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stone-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.stone-card div {
  padding: 24px;
}

.stone-card h3 {
  color: var(--brown);
  font-size: 26px;
  line-height: 1.1;
}

.stone-card p {
  margin-top: 14px;
  color: var(--muted);
}

.custom-stone {
  background: var(--paper);
}

.custom-stone .feature-layout > img {
  height: 540px;
}

.legal-list {
  display: grid;
  gap: 20px;
}

.legal-list h2 {
  color: var(--brown);
  font-size: 30px;
}

.legal-list p {
  margin-top: 12px;
}

.site-footer {
  padding: 72px 0 42px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.site-footer h2 {
  margin-top: 16px;
  color: var(--brown);
  font-size: 38px;
}

.site-footer p {
  margin-top: 8px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--terracotta);
  font-family: "Lorenzi Serif Semi", "Times New Roman", serif;
  font-size: 15px;
  overflow-wrap: anywhere;
  text-align: center;
}

.footer-actions .primary {
  border-color: var(--soft-terracotta);
  background: var(--soft-terracotta);
  color: var(--white);
}

.footer-legal,
.copyright {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 14px;
}

.footer-legal {
  margin-top: 46px;
}

.footer-legal span {
  padding: 0 8px;
}

.copyright {
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  font-size: 15px;
  font-weight: 700;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 15px;
}

.cookie-banner .accept {
  background: var(--white);
  color: var(--terracotta);
}

.cookie-banner .close {
  width: 38px;
  padding: 0;
  border: 0;
  font-size: 26px;
}

@media (max-width: 1080px) {
  :root {
    --gutter: 28px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 13px 10px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero-tagline {
    font-size: 38px;
  }

  .notice-card,
  .split-layout,
  .feature-layout,
  .events-layout,
  .editorial-grid,
  .article-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .blog-grid,
  .stone-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .know-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 24px;
  }

  body {
    font-size: 17px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero,
  .inner-hero {
    min-height: 560px;
  }

  .hero-inner {
    padding: 74px 0 82px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-role,
  .inner-hero p:not(.hero-kicker) {
    font-size: 21px;
  }

  .hero-tagline {
    margin-top: 36px;
    font-size: 32px;
  }

  .hero-actions,
  .inline-actions,
  .footer-actions,
  .article-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 72px 0;
  }

  .notice-card {
    padding: 24px;
  }

  .rich-copy h2,
  .section-heading h2 {
    font-size: 38px;
  }

  .rich-copy p:not(.eyebrow),
  .section-heading span {
    font-size: 18px;
  }

  .portrait-stack > img,
  .media-frame > img,
  .events-layout > img,
  .book-panel img,
  .custom-stone .feature-layout > img {
    height: 420px;
  }

  .mini-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .service-grid,
  .blog-grid,
  .stone-grid,
  .testimonial-grid,
  .know-grid {
    grid-template-columns: 1fr;
  }

  .quote-section p {
    font-size: 28px;
  }

  .inner-hero h1 {
    font-size: 50px;
  }

  .article-hero {
    padding: 66px 0;
  }

  .article-hero h1 {
    font-size: 44px;
  }

  .article-hero p:not(.hero-kicker),
  .article-body p {
    font-size: 19px;
  }

  .article-hero img {
    height: 320px;
  }

  .service-detail,
  .service-detail.is-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.is-reverse img {
    order: 0;
  }

  .service-detail img {
    min-height: 340px;
  }

  .service-detail div {
    padding: 30px;
  }

  .service-detail h2 {
    font-size: 34px;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
  }

  .cookie-banner div {
    grid-column: 1 / -1;
  }
}

