:root {
  --cream: #f7f1e8;
  --soft-white: #fffaf3;
  --deep-green: #2f4637;
  --brown: #5b4235;
  --clay: #b86f4b;
  --sage: #8a9b78;
  --wall: #efe4d2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
}

/* Header */

.site-header {
  width: 100%;
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--deep-green);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--brown);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* General */

.page {
  padding: 20px 6vw 100px;
}

.page-intro {
  max-width: 1000px;
  margin: 40px 0 70px;
}

.page-intro h1,
h1 {
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 30px;
  max-width: 950px;
}

.eyebrow {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 24px;
}

.eyebrow-title {
  display: block;
  color: var(--clay);
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  font-weight: normal;
}

.eyebrow-subtitle {
  display: block;
  color: #6b5c4f;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-style: italic;
}

.plain-eyebrow {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  display: block;
}

.button {
  display: inline-block;
  color: var(--soft-white);
  background: var(--deep-green);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.secondary-button {
  background: transparent;
  color: var(--deep-green);
  border: 1px solid var(--deep-green);
}

/* Homepage Hero */

.hero {
  min-height: 82vh;
  padding: 40px 6vw 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.hero-text {
  background: #f6f2ea;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 8px;
  border: 1px solid rgba(47, 70, 55, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-description {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  background: #6f4e37;
  padding: 18px;
  border: 8px double #b88a44;
  transform: rotate(1.2deg);
  box-shadow: 0 18px 45px rgba(47, 70, 55, 0.18);
}

.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  border: 10px solid var(--soft-white);
  filter: saturate(0.95) contrast(0.98);
}

/* Featured Work */

.featured-work {
  padding: 60px 6vw 90px;
}

.featured-heading {
  margin-bottom: 38px;
}

.featured-heading h2 {
  color: var(--deep-green);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.featured-grid a {
  display: block;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.featured-img:hover {
  transform: scale(1.03);
  filter: brightness(0.96);
}

.featured-img.tall {
  grid-row: span 2;
  height: 738px;
}

.featured-img.wide {
  grid-column: span 2;
}

.featured-button {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Quick Info */

.quick-info {
  padding: 30px 6vw 90px;
}

.quick-info p {
  max-width: 980px;
  color: var(--brown);
  font-size: clamp(1.5rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin: 0;
}

/* Footer Photo */

.footer-photo {
  margin-top: 2rem;
  height: 70vh;
  background-image: url("images/footer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(243, 239, 230, 0) 0%,
    rgba(243, 239, 230, 0.12) 40%,
    rgba(40, 45, 35, 0.38) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 6vw 4rem;
}

.footer-overlay p {
  color: #f7f3ec;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.92;
}

/* About Page */

.about-page {
  padding-bottom: 110px;
}

.about-hero {
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 6.2rem);
}

.about-portrait {
  margin: 0;
  background: #6f4e37;
  padding: 18px;
  border: 8px double #b88a44;
  transform: rotate(1.2deg);
}

.about-portrait img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
  border: 10px solid var(--soft-white);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 34px;
  align-items: start;
}

.about-card {
  background: var(--soft-white);
  padding: 42px;
  border: 1px solid rgba(47, 70, 55, 0.16);
}

.about-card h2 {
  color: var(--deep-green);
  font-size: 2.4rem;
  margin: 0 0 22px;
}

.about-card p {
  color: var(--brown);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-details {
  background: var(--wall);
  padding: 34px;
  border: 1px solid rgba(47, 70, 55, 0.16);
}

.about-details p {
  color: var(--brown);
  line-height: 1.45;
  margin: 0 0 22px;
}

.about-details span {
  display: block;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.about-note {
  margin-top: 80px;
  max-width: 900px;
}

.about-note p {
  color: var(--deep-green);
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1.1;
  font-style: italic;
}

/* Contact Page */

.contact-form {
  max-width: 700px;
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(47, 70, 55, 0.25);
  background: var(--soft-white);
  color: var(--deep-green);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  width: fit-content;
  border: none;
  cursor: pointer;
  color: var(--soft-white);
  background: var(--deep-green);
  padding: 14px 22px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Portfolio Page */

.portfolio-page {
  padding-bottom: 120px;
}

.gallery-wall {
  background:
    radial-gradient(circle at top left, rgba(184, 111, 75, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(125, 159, 184, 0.16), transparent 34%),
    var(--wall);
  padding: 90px 5vw 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 34px;
  align-items: start;
  justify-content: center;
  justify-items: center;
}

.gallery-piece {
  margin: 0;
  width: 100%;
  grid-column: span 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-piece img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  background: var(--soft-white);
}

.gallery-piece.wide {
  grid-column: span 2;
}

.gallery-piece.wide img {
  height: 430px;
}

.gallery-piece.hero-frame img {
  height: 500px;
}

.gold img {
  border: 14px double #b88a44;
  padding: 10px;
}

.wood img {
  border: 18px solid #6f4e37;
  padding: 9px;
  box-shadow: inset 0 0 0 4px #c49a5a;
}

.cream img {
  border: 16px solid #fffaf3;
  padding: 9px;
  box-shadow: 0 0 0 2px rgba(91, 66, 53, 0.25);
}

.gallery-piece figcaption {
  width: fit-content;
  max-width: 90%;
  margin: 14px auto 0;
  background: #fffaf3;
  color: var(--brown);
  padding: 10px 14px;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(47, 70, 55, 0.12);
}

.gallery-piece figcaption span {
  display: block;
  color: var(--deep-green);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.gallery-note {
  grid-column: span 1;
  min-height: 250px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 35px;
  color: var(--brown);
  font-size: 1.7rem;
  line-height: 1.15;
  font-style: italic;
}

.tilt-left {
  transform: rotate(-1deg);
}

.tilt-right {
  transform: rotate(1deg);
}

.lift {
  transform: translateY(-18px);
}

.lower {
  transform: translateY(18px);
}

.gallery-piece:hover {
  transform: translateY(-6px) rotate(0deg) !important;
}

/* Responsive */

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

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

  .featured-img,
  .featured-img.tall {
    height: 360px;
    grid-row: auto;
  }

  .featured-img.wide {
    grid-column: span 2;
  }

  .gallery-wall {
    grid-template-columns: 1fr;
  }

  .gallery-piece,
  .gallery-piece.wide,
  .gallery-note {
    grid-column: span 1;
  }

  .gallery-piece img,
  .gallery-piece.wide img,
  .gallery-piece.hero-frame img {
    height: 520px;
  }
}

@media (max-width: 650px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-text {
    padding: 2rem;
  }

  .hero-image img,
  .about-portrait img {
    height: 480px;
  }

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

  .featured-img,
  .featured-img.tall,
  .featured-img.wide {
    height: 420px;
    grid-column: span 1;
  }

  .quick-info p {
    font-size: 1.55rem;
  }

  .footer-photo {
    background-attachment: scroll;
  }
}/* Fix homepage info cards */

.magazine-grid {
  padding: 30px 6vw 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.magazine-grid article {
  background: var(--soft-white);
  padding: 30px;
  border: 1px solid rgba(47, 70, 55, 0.18);
  min-height: 260px;
}

.magazine-grid span {
  color: var(--clay);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.magazine-grid h2 {
  font-size: 2rem;
  line-height: 1;
  margin: 36px 0 16px;
  color: var(--deep-green);
}

.magazine-grid p {
  color: var(--brown);
  line-height: 1.5;
}

.featured-button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 850px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }
}/* Restore original featured work layout */

.featured-work {
  padding: 50px 6vw 90px;
}

.featured-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  align-items: stretch;
}

.featured-grid a {
  display: block;
  height: 100%;
}

.featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.featured-img.tall {
  grid-row: span 2;
  height: 740px;
}

.featured-img.wide {
  grid-column: span 2;
}

.featured-button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .featured-heading {
    display: block;
  }

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

  .featured-img,
  .featured-img.tall {
    height: 360px;
    grid-row: auto;
  }

  .featured-img.wide {
    grid-column: span 2;
  }
}

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

  .featured-img,
  .featured-img.tall,
  .featured-img.wide {
    height: 420px;
    grid-column: span 1;
  }
}/* Restore original featured work layout */

.featured-work {
  padding: 50px 6vw 90px;
}

.featured-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
  align-items: stretch;
}

.featured-grid a {
  display: block;
  height: 100%;
}

.featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.featured-img.tall {
  grid-row: span 2;
  height: 740px;
}

.featured-img.wide {
  grid-column: span 2;
}

.featured-button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .featured-heading {
    display: block;
  }

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

  .featured-img,
  .featured-img.tall {
    height: 360px;
    grid-row: auto;
  }

  .featured-img.wide {
    grid-column: span 2;
  }
}

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

  .featured-img,
  .featured-img.tall,
  .featured-img.wide {
    height: 420px;
    grid-column: span 1;
  }
}/* New homepage hero inspired by reference */

.hero-photo {
  min-height: 88vh;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-photo > img {
  width: 100%;
  height: 88vh;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.9);
}

.hero-photo-text {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 88vw);
  text-align: center;
  color: #fffaf3;
  text-shadow: 0 3px 24px rgba(0,0,0,0.35);
}

.hero-photo-text p {
  margin: 0 0 18px;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-photo-text h1 {
  margin: 0;
  max-width: none;
  color: #fffaf3;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: normal;
}

.hero-photo-text span {
  display: block;
  margin-top: 22px;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-photo-buttons {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-photo-button {
  background: #8c5639;
  color: #fffaf3;
  border-radius: 0;
  padding: 18px 42px;
  letter-spacing: 0.18em;
}

.hero-photo-button:hover {
  background: #6f4e37;
}

@media (max-width: 700px) {
  .hero-photo-text {
    top: 20%;
  }

  .hero-photo-buttons {
    bottom: 10%;
  }

  .hero-photo-button {
    padding: 15px 28px;
  }
}/* ---------- Pricing Page ---------- */

.pricing-page {
  padding-bottom: 120px;
}

.pricing-intro h1 {
  max-width: 1050px;
}

.pricing-section {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid rgba(47, 70, 55, 0.14);
}

.pricing-section.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.pricing-section.reverse .pricing-image {
  order: 2;
}

.pricing-section.reverse .pricing-info {
  order: 1;
}

.pricing-image {
  background: #f1ece3;
  padding: 22px;
}

.pricing-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.pricing-start {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  margin: 0 0 28px;
}

.pricing-info h2 {
  color: var(--clay);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 36px;
}

.pricing-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
}

.pricing-info li {
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.pricing-button {
  border-radius: 0;
  padding: 18px 42px;
  background: #8c5639;
}

.pricing-note {
  max-width: 850px;
  margin: 60px auto 0;
  padding: 45px;
  background: var(--soft-white);
  border: 1px solid rgba(47, 70, 55, 0.14);
}

.pricing-note h2 {
  margin: 0 0 20px;
  color: var(--deep-green);
  font-size: 2.2rem;
}

.pricing-note p {
  color: var(--brown);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .pricing-section,
  .pricing-section.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-section.reverse .pricing-image,
  .pricing-section.reverse .pricing-info {
    order: initial;
  }

  .pricing-image img {
    height: 440px;
  }
}.pricing-intro .eyebrow {
    font-size: 1.9rem;
    letter-spacing: 0.18em;
}/* ---------- Updated About Page ---------- */

.about-hero-new {
  background: #e8dbc8;
  margin: 40px 6vw 70px;
  padding: 35px 6vw;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text h1 {
  color: var(--deep-green);
  font-size: clamp(3.8rem, 6.2vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: .3rem 0 0;
}

.about-hero-photo {
  margin: 0;
  background: none;
  padding: 0px;
  border: none;
  transform: none;
  box-shadow: none;
}

.about-hero-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
   border: 10px solid #f7f3ed;
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

.about-story-new {
  padding: 0 6vw 110px;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 850px) {
  .about-hero-new,
  .about-story-new {
    grid-template-columns: 1fr;
  }

  .about-hero-photo img {
    height: 460px;
  }
}/* ---------- Updated Contact Page ---------- */

.contact-page {
  padding-bottom: 120px;
}

.contact-intro {
  text-align: center;
  max-width: 1000px;
  margin: 50px auto 70px;
}

.contact-intro h1 {
  color: var(--clay);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 22px;
}

.contact-intro p {
  color: var(--brown);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form-large {
  max-width: 1050px;
  margin: 0 auto;
  gap: 38px;
}

.contact-form-large label {
  color: var(--clay);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form-large input,
.contact-form-large select,
.contact-form-large textarea {
  margin-top: 14px;
  min-height: 58px;
  border: 1px solid rgba(91, 66, 53, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 243, 0.55);
  color: var(--brown);
  font-size: 1.05rem;
}

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

.contact-form-large select {
  appearance: auto;
}

.form-note {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.5;
  margin: -18px 0 4px;
}

.contact-submit {
  border: none;
  border-radius: 0;
  background: #8c5639;
  padding: 18px 42px;
  width: fit-content;
  cursor: pointer;
}
.about-hero-new .plain-eyebrow {
  font-size: 2.2rem !important;
  letter-spacing: 0.18em !important;
}/* ---------- Clean Portfolio Redesign ---------- */

.portfolio-page-clean {
  padding-bottom: 120px;
}

.portfolio-banner-clean {
  width: min(92%, 1500px);
  height: 260px;
  margin: 40px auto 0;
  overflow: hidden;
}

.portfolio-banner-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-label {
  padding: 55px 0;
  text-align: center;
}

.portfolio-label h1 {
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

.portfolio-photo-grid {
  width: min(92%, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-photo-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .portfolio-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-photo-grid img {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .portfolio-banner-clean {
    height: 210px;
  }

  .portfolio-photo-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-photo-grid img {
    height: 430px;
  }
}/* Fix homepage title on mobile */

/* Mobile homepage title */
@media (max-width: 768px) {
  .hero-photo-text h1 {
    font-size: 2rem !important;
    line-height: 1.05;
    letter-spacing: 0.02em;
  }

  .hero-photo-text {
    width: 95%;
  }
}