:root {
  --bg: #f3efe8;
  --paper: #fbf8f2;
  --paper-2: #efe7db;
  --text: #1c2426;
  --muted: #6c7472;
  --line: rgba(28, 36, 38, 0.12);
  --accent: #9a6a43;
  --accent-dark: #7d5535;
  --shadow: 0 18px 45px rgba(35, 28, 20, 0.08);
  --container: 1180px;
  --narrow: 820px;
  --radius: 20px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 239, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
}

.masthead {
  padding: 88px 0 36px;
}

.masthead-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: end;
}

.eyebrow,
.rail-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.masthead-copy h1,
.page-intro h1,
.contact-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.masthead-copy h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  margin-bottom: 20px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.07rem;
}

.masthead-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.masthead-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1s ease;
}

.masthead-image:hover img,
.full-banner img:hover,
.float-image img:hover,
.split-article-image img:hover {
  transform: scale(1.05);
}

.article-section {
  padding: 10px 0 90px;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-rail {
  position: relative;
}

.rail-box {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body {
  max-width: 760px;
}

.article-body p {
  font-size: 1.06rem;
  margin-bottom: 22px;
  color: var(--text);
}

.dropcap::first-letter {
  float: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.9;
  padding-right: 10px;
  padding-top: 8px;
  color: var(--accent);
}

.page-intro {
  padding: 118px 0 24px;
}

.page-intro-banner {
  padding-bottom: 30px;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.full-banner {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.full-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1s ease;
}

.article-single {
  max-width: 760px;
}

.article-with-float::after {
  content: "";
  display: block;
  clear: both;
}

.float-image {
  width: 320px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}

.float-right {
  float: right;
  margin-left: 28px;
}

.float-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1s ease;
}

.split-article {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.split-article-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-article-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1s ease;
}

.contact-main {
  padding: 120px 0 90px;
}

.contact-panel {
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-panel h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}

.contact-text {
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 28px;
}

.contact-details p {
  color: var(--text);
  margin-bottom: 10px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: var(--transition);
}

.contact-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .masthead-grid,
  .article-layout,
  .split-article,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .rail-box {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .masthead-image img {
    height: 420px;
  }

  .split-article-image img {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: rgba(251, 248, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .float-right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 22px;
  }

  .float-image img {
    height: 280px;
  }

  .masthead-copy h1,
  .page-intro h1,
  .contact-panel h1 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }
}

@media (max-width: 600px) {
  .container,
  .full-banner {
    width: min(calc(100% - 28px), 1320px);
  }

  .topbar {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .masthead {
    padding-top: 78px;
  }

  .masthead-image img {
    height: 300px;
  }

  .full-banner img {
    height: 260px;
  }

  .split-article-image img {
    height: 260px;
  }

  .contact-panel {
    padding: 24px;
  }

  .article-body p {
    font-size: 1rem;
  }
}