:root {
  --dark: #1f2933;
  --text: #24313d;
  --muted: #5f6f7a;
  --light: #f5f3ed;
  --accent: #b66a2c;
  --accent-dark: #8f4f1f;
  --white: #ffffff;
  --border: #e0ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

html,
body {
  max-width: 100%;
}

body {
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 6px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.phone-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, var(--light), #ffffff);
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content,
.quote-card {
  min-width: 0;
}

h1 {
  overflow-wrap: break-word;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--dark);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-top: 0;
  color: var(--dark);
}

h3 {
  margin-top: 0;
  color: var(--dark);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
}

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

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.quote-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.12);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.narrow {
  max-width: 720px;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-style: italic;
}

.review strong {
  display: block;
  margin-top: 10px;
  font-style: normal;
}

.btn.small {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--dark);
}

.faq-list p {
  margin-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.site-footer a {
  color: var(--white);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

@media (max-width: 800px) {
  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px 0;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 4px;
    padding-right: 4px;

    min-height: 56px; /* ↓ tighter header */
  }

  .logo img {
    height: 45px;
  }

  .phone-link {
    font-size: 0.9rem;
  }

  .btn.small {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .site-header {
    padding: 0;
  }

  .quote-card {
    padding: 22px; /* slightly tighter */
  }

  .quote-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.6rem;
  }

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

.mobile-call-bar {
  display: none;
}

@media (max-width: 700px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-weight: 800;
    text-decoration: none;
    z-index: 20;
  }

  body {
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .eyebrow {
    font-size: 0.9rem;
    line-height: 1.4;
  }

}



@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.logo img {
  height: 70px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .logo img {
    height: 55px;
  }
}

.site-header {
  background: #0f0f0f;
}

.phone-link {
  color: var(--accent);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-item {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.work-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.work-item img:hover {
  transform: scale(1.03);
}

.work-item figcaption {
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

@media (max-width: 800px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-item img {
    height: 180px;
  }
}

@media (max-width: 500px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item img {
    height: 230px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox p {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
  max-width: 900px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.footer-credit {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 5px;
}
/* Privacy policy page */
.policy-content {
  max-width: 820px;
}

.policy-content h1 {
  margin-bottom: 10px;
}

.policy-content h2 {
  font-size: 1.45rem;
  margin-top: 36px;
  margin-bottom: 10px;
}

.policy-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.policy-updated {
  color: var(--muted);
  margin-top: 0;
}

.policy-contact {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  font-style: normal;
}

/*author-site specific stuff */
.wordmark {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.86;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--accent);
}

.literary-hero {
  background:
    linear-gradient(135deg, rgba(245,243,237,0.96), rgba(255,255,255,0.96));
}

.author-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.12);
}

.portrait-placeholder,
.book-cover-placeholder,
.book-cover-small {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border: 1px dashed var(--accent);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.portrait-placeholder {
  min-height: 360px;
  border-radius: 16px;
}

.book-cover-placeholder {
  min-height: 460px;
  border-radius: 12px;
}

.book-cover-small {
  min-height: 260px;
  border-radius: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.works-grid {
  display: grid;
  gap: 28px;
}

.work-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.page-hero {
  background: var(--light);
}

.form-wrap {
  max-width: 720px;
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.08);
}

.story-content,
.policy-content {
  max-width: 820px;
}

.story-content {
  font-size: 1.08rem;
}

.story-intro {
  color: var(--muted);
  font-size: 1.15rem;
}

.price-line {
  font-size: 1.3rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

.btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.policy-page ul {
  padding-left: 1.4rem;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .feature-grid,
  .work-card {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .portrait-placeholder {
    min-height: 260px;
  }

  .book-cover-placeholder {
    min-height: 320px;
  }

  .work-card {
    padding: 20px;
  }
}

.wordmark {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.86;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--accent);
}

.header-cta {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    display: inline-block;
  }
}

.portrait-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* =========================================================
   Author Site Literary Redesign v1
   Palette: warm paper / muted teal / weathered brown / ink
   ========================================================= */

:root {
  --dark: #1f2730;
  --text: #29363a;
  --muted: #5c6d69;
  --light: #f3efe6;
  --accent: #8a5a3b;
  --accent-dark: #4e6d73;
  --white: #fbf8f0;
  --border: #d8d0bf;

  --paper: #f3efe6;
  --paper-light: #fbf8f0;
  --ink: #1f2730;
  --teal: #4e6d73;
  --teal-dark: #30484d;
  --brick: #8a5a3b;
  --brick-dark: #6f442c;
  --moss: #6e7d63;
  --rule: #d8d0bf;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", Arial, Helvetica, sans-serif;
}

/* Global feel */

body {
  font-family: var(--font-body);
  background: var(--paper-light);
  color: var(--text);
  line-height: 1.65;
}

::selection {
  background: rgba(78, 109, 115, 0.24);
}

/* Header */

.site-header {
  background: #223136;
  border-bottom: 1px solid rgba(251, 248, 240, 0.12);
  box-shadow: none;
}

.header-inner {
  min-height: 66px;
}

.site-header .wordmark {
  color: var(--paper-light);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.site-header .wordmark:hover,
.site-header .wordmark:visited {
  color: var(--paper-light);
  text-decoration: none;
}

.site-header .main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-header .main-nav a {
  color: rgba(251, 248, 240, 0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  opacity: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #d7b58a;
  text-decoration: none;
}

.site-header .header-cta {
  background: var(--brick);
  color: var(--paper-light);
  border-color: var(--brick);
  border-radius: 999px;
  box-shadow: none;
}

.site-header .header-cta:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
}

/* Typography */

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.85rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

p {
  font-size: 1.03rem;
}

.eyebrow {
  color: var(--brick);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

/* Hero */

.hero,
.literary-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(78, 109, 115, 0.17), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(138, 90, 59, 0.10), transparent 26%),
    linear-gradient(135deg, var(--paper), var(--paper-light));
  padding: 88px 0 82px;
}

.hero-grid {
  grid-template-columns: 1.18fr 0.82fr;
  gap: 52px;
}

.hero-text {
  color: #50635f;
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 680px;
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--paper-light);
}

.btn.primary:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}

.btn.secondary:hover {
  background: rgba(78, 109, 115, 0.09);
  border-color: var(--teal-dark);
}

/* Author card / portrait */

.author-card {
  background: rgba(251, 248, 240, 0.88);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(31, 39, 48, 0.12);
  max-width: 470px;
  margin-left: auto;
}

.author-card h2 {
  margin-top: 12px;
  margin-bottom: 14px;
}

.author-card p {
  color: #2d3b40;
  line-height: 1.65;
}

.portrait-placeholder {
  min-height: auto;
  background: #e9dfcd;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.portrait-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* Cards and content blocks */

.card,
.review,
.work-card,
.contact-form,
.quote-card {
  background: rgba(251, 248, 240, 0.92);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: none;
}

.review {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink);
}

.review strong {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 82px 0;
}

.section.alt,
.page-hero {
  background:
    linear-gradient(135deg, rgba(78, 109, 115, 0.08), rgba(138, 90, 59, 0.07)),
    var(--paper);
}

.section-sub,
.story-intro,
.note {
  color: var(--muted);
}

/* Book placeholders */

.book-cover-placeholder,
.book-cover-small {
  background: #e8deca;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--muted);
}

/* Forms */

input,
textarea {
  background: #fffdf8;
  border-color: var(--rule);
  border-radius: 4px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(78, 109, 115, 0.28);
  border-color: var(--teal);
}

/* Links */

a {
  color: var(--teal-dark);
}

a:hover {
  color: var(--brick);
}

/* Footer */

.site-footer {
  background: #223136;
  color: var(--paper-light);
  text-align: left;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--paper-light);
}

.footer-bottom {
  border-top-color: rgba(251, 248, 240, 0.18);
}

/* Remove old contractor mobile spacing */

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }
}

/* Responsive refinements */

@media (max-width: 900px) {
  .hero,
  .literary-hero {
    padding: 54px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    line-height: 1;
  }

  .author-card {
    max-width: 560px;
  }

  .site-header .main-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .author-card {
    padding: 20px;
  }
}

.hero,
.literary-hero {
  padding-top: 24px;
  padding-bottom: 56px;
}

.book-cover-wrap {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.book-cover-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(31, 39, 48, 0.16);
}

.feature-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .book-cover-wrap {
    max-width: 360px;
  }
}

/* =========================================================
   Homepage restructure: featured work first, author lower
   ========================================================= */

.hero-book-card {
  background: rgba(251, 248, 240, 0.92);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(31, 39, 48, 0.12);
  max-width: 430px;
  margin-left: auto;
}

.hero-book-card h2 {
  margin: 14px 0 10px;
}

.hero-book-card p {
  color: #2d3b40;
}

.hero-book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
}

.hero-actions.compact {
  margin-top: 20px;
  gap: 10px;
}

.hero-actions.compact .btn {
  padding: 11px 18px;
}

.featured-work-detail {
  background: var(--paper-light);
}

.featured-copy {
  max-width: 860px;
}

.featured-copy p {
  max-width: 760px;
}

.author-home-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.author-home-grid .portrait-placeholder {
  max-width: 360px;
}

.author-home-section .portrait-placeholder img {
  width: 100%;
  height: auto;
}

.free-story-teaser {
  background: var(--paper-light);
}

@media (max-width: 900px) {
  .hero-book-card {
    max-width: 460px;
    margin-left: 0;
  }

  .author-home-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .author-home-grid .portrait-placeholder {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .hero-book-card {
    padding: 18px;
  }

  .hero-actions.compact .btn {
    width: 100%;
  }
}

.product-cover-wrap {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.product-cover-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(31, 39, 48, 0.16);
}

.product-hero .feature-grid {
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .product-hero .feature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-cover-wrap {
    max-width: 380px;
  }
}

.story-content {
  max-width: 820px;
}

.story-content h1 {
  max-width: 760px;
}

.story-content p {
  font-size: 1.08rem;
  line-height: 1.78;
}

.story-content hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 28px 0 24px;
}

/* Works page */

.work-card-enhanced {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
}

.work-cover-link {
  display: block;
  text-decoration: none;
}

.work-cover-image {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(31, 39, 48, 0.14);
}

.work-cover-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  max-width: 240px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(78, 109, 115, 0.12), rgba(138, 90, 59, 0.12)),
    var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink);
}

.work-cover-text span {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.work-cover-text strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.98;
  font-weight: 700;
}

.work-card-copy h2 {
  margin-bottom: 16px;
}

.work-card-copy h2 a {
  color: var(--ink);
  text-decoration: none;
}

.work-card-copy h2 a:hover {
  color: var(--brick);
}

.work-price {
  margin-top: 20px;
  margin-bottom: 22px;
}

@media (max-width: 800px) {
  .work-card-enhanced {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-cover-image,
  .work-cover-text {
    max-width: 280px;
  }
}

/* About page */

.about-page .feature-grid {
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.about-portrait {
  max-width: 360px;
  margin: 0 auto;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-page h1 {
  margin-bottom: 22px;
}

.about-page p {
  max-width: 720px;
}

@media (max-width: 900px) {
  .about-page .feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-portrait {
    max-width: 420px;
    margin: 0;
  }
}