:root {
  --ink: #30241c;
  --espresso: #4f2e1f;
  --rust: #b95d25;
  --rust-deep: #793818;
  --cream: #fff7e8;
  --butter: #f4e5c9;
  --linen: #fbefe0;
  --moss: #354c32;
  --sage: #77835b;
  --gold: #dba950;
  --muted: #75665b;
  --line: rgba(79, 46, 31, 0.18);
  --shadow: 0 28px 80px rgba(48, 36, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(79, 46, 31, 0.12);
  background: rgba(255, 247, 232, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 174px;
}

.nav {
  justify-self: end;
  display: flex;
  gap: clamp(15px, 2.2vw, 32px);
}

.nav a,
.quick-contact {
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-block: 10px;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.quick-contact,
.email-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--rust);
  border-radius: 999px;
  color: #fff9ef;
  background: var(--rust);
  box-shadow: 0 12px 28px rgba(121, 56, 24, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quick-contact:hover,
.email-button:hover {
  transform: translateY(-2px);
  background: var(--rust-deep);
  border-color: var(--rust-deep);
}

.email-button.light {
  color: var(--espresso);
  background: var(--cream);
  border-color: var(--cream);
}

.section {
  padding: clamp(48px, 6vw, 88px) clamp(18px, 5vw, 72px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 3.6vw, 50px);
  min-height: calc(100vh - 68px);
  padding: clamp(30px, 4.4vw, 58px) clamp(18px, 5vw, 72px) clamp(42px, 4.6vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(244, 229, 201, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(219, 169, 80, 0.28), transparent 32%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 46, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 46, 31, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-copy,
.hero-photo {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding-top: 24px;
}

.hero h1 {
  max-width: 100%;
  color: var(--espresso);
  font-size: clamp(3.55rem, 6.2vw, 7.05rem);
  line-height: 0.92;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-copy > p:not(.kicker) {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
}

.hero-intake {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.phone-display,
.contact-number {
  display: grid;
  gap: 3px;
}

.phone-display span,
.contact-number span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.phone-display strong {
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.hero-photo {
  min-width: 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  align-self: center;
}

.photo-frame {
  overflow: hidden;
  border: 10px solid rgba(255, 249, 239, 0.86);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo {
  grid-row: 1 / 3;
  min-height: 610px;
}

.main-photo img {
  object-position: center;
}

.inset-photo {
  min-height: 385px;
  transform: translateY(36px);
}

.inset-photo img {
  object-position: center;
}

.small-photo {
  min-height: 230px;
}

.small-photo img {
  object-position: center;
}

.hero-note {
  grid-column: 1 / -1;
  padding: 20px;
  color: var(--cream);
  background: rgba(53, 76, 50, 0.92);
  box-shadow: 0 18px 44px rgba(48, 36, 28, 0.24);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.notice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-block: 1px solid rgba(255, 249, 239, 0.16);
  color: #fff9ef;
  background: var(--moss);
}

.notice span {
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 249, 239, 0.18);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: center;
  background: var(--cream);
}

.intro h2,
.section-title h2,
.about h2,
.contact h2 {
  color: var(--espresso);
  font-size: clamp(2.55rem, 4.55vw, 5.1rem);
  line-height: 0.95;
}

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

.intro-text p,
.section-note,
.about-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-list span,
.addon-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 850;
}

.gallery {
  background: var(--linen);
}

.section-title {
  display: block;
  max-width: 1180px;
  margin-bottom: 30px;
}

.gallery .section-title {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 60px);
  align-items: end;
  max-width: none;
}

.section-title.narrow {
  max-width: 780px;
}

.section-title .section-note {
  margin-top: 18px;
  max-width: 540px;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 112px;
  gap: 14px;
}

.masonry-item {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff9ef;
  box-shadow: 0 18px 44px rgba(48, 36, 28, 0.11);
}

.masonry-item.large {
  grid-column: span 4;
  grid-row: span 5;
}

.masonry-item.wide {
  grid-column: span 3;
  grid-row: span 3;
}

.masonry-item:not(.large):not(.wide) {
  grid-column: span 3;
  grid-row: span 3;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  transition: transform 500ms ease;
}

.masonry-item:hover img {
  transform: scale(1.035);
}

.masonry-item figcaption {
  position: static;
  padding: 10px 12px;
  color: var(--espresso);
  background: #fff9ef;
  font-size: 0.8rem;
  font-weight: 850;
}

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

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

.steps article {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  background: rgba(255, 249, 239, 0.86);
  box-shadow: 0 18px 48px rgba(48, 36, 28, 0.08);
  backdrop-filter: blur(8px);
}

.steps span {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.17em;
}

.steps h3 {
  margin-top: 18px;
  color: var(--espresso);
  font-size: 1.75rem;
  line-height: 1.04;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.packages {
  background: #f7e6c9;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.package {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(79, 46, 31, 0.14);
  background: rgba(255, 249, 239, 0.86);
  box-shadow: 0 16px 42px rgba(48, 36, 28, 0.08);
}

.package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--sage));
}

.package.emphasized {
  color: #fff9ef;
  background: var(--moss);
  box-shadow: 0 22px 64px rgba(48, 36, 28, 0.2);
}

.package-name span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.emphasized .package-name span {
  color: var(--gold);
}

.package h3 {
  margin-top: 8px;
  color: var(--espresso);
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  line-height: 0.96;
}

.emphasized h3 {
  color: #fff9ef;
}

.package-price {
  margin: 18px 0 0;
  color: var(--rust);
  font-size: 2.05rem;
  font-weight: 950;
}

.emphasized .package-price {
  color: var(--gold);
}

.package-desc {
  margin: 12px 0 0;
  color: var(--muted);
}

.emphasized .package-desc {
  color: rgba(255, 249, 239, 0.78);
}

.package ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.emphasized li {
  color: rgba(255, 249, 239, 0.8);
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.service {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--espresso);
  font-weight: 950;
}

.emphasized .service {
  color: #fff9ef;
}

.addons {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.addons h3 {
  color: var(--espresso);
  font-size: 2.1rem;
}

.addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.package-inquiry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  color: #fff9ef;
  background: var(--moss);
}

.package-inquiry p {
  margin: 0;
  color: rgba(255, 249, 239, 0.88);
  font-size: 1.02rem;
}

.package-inquiry strong {
  color: #fff9ef;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(53, 76, 50, 0.98), rgba(39, 58, 36, 0.98)),
    var(--moss);
  color: #fff9ef;
}

.founder-photo {
  position: relative;
}

.founder-photo::after {
  content: none;
}

.founder-photo img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center top;
  border: 10px solid rgba(255, 249, 239, 0.16);
  box-shadow: 0 22px 70px rgba(21, 32, 20, 0.28);
}

.about h2 {
  color: #fff9ef;
}

.about-copy p {
  margin-top: 18px;
  color: rgba(255, 249, 239, 0.78);
}

.signature {
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem) !important;
  line-height: 1.08;
}

.contact {
  background: var(--moss);
  color: #fff9ef;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: 46px;
  align-items: center;
}

.contact h2 {
  color: #fff9ef;
}

.contact p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 249, 239, 0.8);
}

.big-contact {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 249, 239, 0.18);
  background: rgba(255, 249, 239, 0.1);
  backdrop-filter: blur(10px);
}

.contact-number {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.18);
}

.contact-number span {
  color: var(--gold);
}

.contact-number strong {
  color: #fff9ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.9;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 38px 18px;
  text-align: center;
  background: var(--cream);
}

.site-footer img {
  width: 186px;
}

.site-footer p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .quick-contact {
    display: none;
  }

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

  .hero-photo {
    min-height: 600px;
  }

  .package-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .masonry-item.large,
  .masonry-item.wide,
  .masonry-item:not(.large):not(.wide) {
    grid-column: span 3;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brand img {
    width: 158px;
  }

  .nav {
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15.5vw, 5.5rem);
  }

  .hero-intake {
    align-items: stretch;
  }

  .email-button {
    width: fit-content;
  }

  .hero-photo {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .main-photo,
  .inset-photo,
  .small-photo {
    min-height: 320px;
    transform: none;
  }

  .small-photo {
    display: none;
  }

  .intro,
  .section-title,
  .gallery .section-title,
  .steps,
  .about,
  .contact-panel,
  .package-inquiry {
    grid-template-columns: 1fr;
  }

  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 235px;
  }

  .masonry-item.large,
  .masonry-item.wide,
  .masonry-item:not(.large):not(.wide) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .masonry-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .section {
    padding-inline: 18px;
  }

  .notice {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .notice span {
    white-space: nowrap;
  }

  .phone-display strong {
    font-size: 1.85rem;
  }

  .email-button {
    width: 100%;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .masonry-item.large,
  .masonry-item.wide,
  .masonry-item:not(.large):not(.wide) {
    grid-column: auto;
  }

  .package-list {
    grid-template-columns: 1fr;
  }

  .founder-photo::after {
    right: 10px;
  }
}
