:root {
  --ink: #302d2a;
  --muted: #6f6962;
  --cream: #faf7f2;
  --paper: #fffdf9;
  --blush: #d8b4a8;
  --blush-light: #f1dfd7;
  --blush-pale: #f8eee9;
  --gold: #b89566;
  --gold-dark: #8e6c42;
  --brown: #84613f;
  --line: rgba(132, 97, 63, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(250, 247, 242, 0.9), rgba(250, 247, 242, 0.9)),
    url("/papertexture.webp") center top / 900px auto repeat;
  color: var(--ink);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #bb978a;
  border-radius: 8px;
  background: var(--blush);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  outline: none;
}

.button--outline {
  background: transparent;
  border-color: rgba(132, 97, 63, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
}

.text-link span {
  color: var(--gold-dark);
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 105px);
  max-width: 1440px;
  min-height: 690px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(24px, 6vw, 88px) clamp(95px, 10vw, 140px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -50px;
  width: min(53vw, 760px);
  aspect-ratio: 1.25;
  border-radius: 48% 52% 46% 54% / 48% 43% 57% 52%;
  background: rgba(241, 223, 215, 0.62);
  transform: rotate(-4deg);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero-logo {
  display: block;
  width: min(82%, 400px);
  margin-bottom: clamp(22px, 3vw, 34px);
}

.home-hero-logo img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: clamp(3.2rem, 5.7vw, 6.25rem);
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: #9e7567;
  font-weight: 400;
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.19rem);
  font-weight: 600;
  line-height: 1.75;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 36px 0 0;
  padding: 0;
  color: #625c56;
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.hero__details li::before {
  content: "\2713";
  margin-right: 7px;
  color: var(--gold);
}

.hero__art {
  position: relative;
  min-height: 505px;
}

.art-card {
  position: absolute;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(132, 97, 63, 0.26);
  background: rgba(255, 253, 249, 0.94);
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card--back {
  top: 0;
  right: 1%;
  width: 77%;
  aspect-ratio: 1.62;
  transform: rotate(4.5deg);
}

.art-card--front {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 80%;
  padding-bottom: 44px;
  transform: rotate(-3deg);
}

.art-card--front img {
  aspect-ratio: 1.714;
}

.art-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  font-family: var(--serif);
  font-size: 0.83rem;
  font-style: italic;
  text-align: center;
}

.hero__heart {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 4%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(132, 97, 63, 0.25);
  border-radius: 999px;
  background: var(--blush);
  color: white;
  font-size: 2.3rem;
  transform: rotate(8deg);
}

.watercolor-flower {
  position: absolute;
  display: block;
  pointer-events: none;
  background: center / contain no-repeat url("/assets/roses/rose-05.webp");
  opacity: 0.28;
}

.watercolor-flower--hero {
  bottom: 5%;
  left: -15px;
  width: 150px;
  height: 150px;
  transform: rotate(-14deg);
}

.studio-ribbon {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 18px 25px;
  overflow: hidden;
  border-top: 1px solid rgba(132, 97, 63, 0.28);
  border-bottom: 1px solid rgba(132, 97, 63, 0.28);
  background: #eee0d8;
  color: #64564f;
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.35vw, 1.05rem);
  font-style: italic;
  white-space: nowrap;
}

.studio-ribbon i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(85px, 10vw, 145px) clamp(24px, 6vw, 88px);
}

.portfolio {
  padding-top: clamp(38px, 5vw, 68px);
  padding-bottom: clamp(28px, 3vw, 44px);
}

.happenings {
  padding-top: clamp(18px, 2.5vw, 34px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: clamp(38px, 8vw, 115px);
  align-items: start;
  margin-bottom: clamp(34px, 4vw, 48px);
}

.section-heading h2,
.about h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.8vw, 5.25rem);
  line-height: 1.02;
}

.section-heading__aside p {
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.section-heading__aside {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  padding-top: 4px;
}

.portfolio-carousel {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  touch-action: pan-y;
}

.portfolio-carousel__viewport {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.portfolio-carousel__control {
  position: absolute;
  z-index: 3;
  top: 46%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(245, 226, 220, 0.54), rgba(204, 157, 145, 0.3));
  -webkit-backdrop-filter: blur(16px) saturate(165%);
  backdrop-filter: blur(16px) saturate(165%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(143, 96, 84, 0.14),
    0 8px 24px rgba(77, 58, 40, 0.16);
  font-family: var(--sans);
  font-size: 1.35rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 170ms ease, color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.portfolio-carousel__control > span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}

.portfolio-carousel__control--previous {
  left: clamp(-72px, -5vw, -52px);
}

.portfolio-carousel__control--next {
  right: clamp(-72px, -5vw, -52px);
}

.portfolio-carousel__control:hover {
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  background: linear-gradient(145deg, rgba(247, 229, 223, 0.66), rgba(204, 157, 145, 0.4));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(143, 96, 84, 0.18),
    0 10px 28px rgba(77, 58, 40, 0.2);
  transform: translateY(-50%) scale(1.06);
}

.portfolio-carousel__control:focus-visible {
  outline: 3px solid rgba(184, 149, 102, 0.38);
  outline-offset: 3px;
}

.portfolio-carousel__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.portfolio-card {
  align-self: start;
  border: 1px solid rgba(132, 97, 63, 0.24);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.76);
  overflow: hidden;
  transition: border-color 170ms ease, transform 170ms ease;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.portfolio-card a {
  display: block;
  text-decoration: none;
}

.portfolio-card__image {
  display: grid;
  aspect-ratio: 1.62;
  place-items: center;
  padding: clamp(16px, 2vw, 28px);
  background: rgba(241, 223, 215, 0.44);
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: contain;
}

.portfolio-card__content {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 34px);
}

.portfolio-card__content small,
.portfolio-card__content strong {
  display: block;
}

.portfolio-card__content small {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-card__content strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 400;
}

.round-arrow {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-dark);
  line-height: 1;
}

.round-arrow svg {
  display: block;
  width: 20px;
  height: 20px;
}

.section-heading--center {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading--center h2 {
  margin: 0 auto 20px;
}

.section-heading--center > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

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

.happening-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 125px 34px 30px;
  border: 1px solid rgba(132, 97, 63, 0.24);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.82);
  overflow: hidden;
}

.happening-card--feature {
  background: #eee5da;
}

.happening-card--pink {
  background: #f0dcd4;
}

.happening-card__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(132, 97, 63, 0.25);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.64);
  color: #6a5545;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.happening-card__number {
  position: absolute;
  top: 10px;
  right: 17px;
  color: rgba(184, 149, 102, 0.18);
  font-family: var(--serif);
  font-size: 6.5rem;
  font-style: italic;
  line-height: 1;
}

.happening-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  font-weight: 400;
  line-height: 1.06;
}

.happening-card div > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.68;
}

.social-picker-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.social-picker-popover {
  width: min(360px, calc(100% - 32px));
  margin: auto;
  padding: 28px;
  border: 1px solid rgba(132, 97, 63, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 253, 249, 0.94), rgba(255, 253, 249, 0.94)),
    url("/papertexture.webp") center / 700px auto;
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(71, 54, 42, 0.2);
}

.social-picker-popover::backdrop {
  background: rgba(48, 45, 42, 0.28);
  backdrop-filter: blur(2px);
}

.social-picker-popover__close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(132, 97, 63, 0.24);
  border-radius: 50%;
  background: var(--blush-pale);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.social-picker-popover > .eyebrow {
  margin: 0 42px 7px 0;
}

.social-picker-popover h3 {
  margin: 0 42px 20px 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.social-picker-popover__links {
  display: grid;
  gap: 10px;
}

.social-picker-popover__links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border: 1px solid rgba(132, 97, 63, 0.24);
  border-radius: 999px;
  background: rgba(241, 223, 215, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-picker-popover__links a:hover,
.social-picker-popover__links a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
  outline: none;
  transform: translateY(-1px);
}

.social-picker-popover__links span {
  color: var(--gold-dark);
}

.social-picker-popover__links a:hover span,
.social-picker-popover__links a:focus-visible span {
  color: white;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: center;
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.about__art {
  position: relative;
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(132, 97, 63, 0.24);
  border-radius: 50%;
  background: var(--blush-pale);
  overflow: hidden;
}

.about__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
}

.about__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.78;
}

.about__lead {
  margin-top: 27px;
  color: #514943 !important;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.signature {
  display: inline-block;
  margin-top: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #855f52;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

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

.final-cta {
  position: relative;
  max-width: min(1320px, calc(100% - 48px));
  margin-bottom: clamp(70px, 9vw, 115px);
  padding-top: clamp(72px, 8vw, 100px);
  padding-bottom: clamp(72px, 8vw, 100px);
  border: 1px solid rgba(132, 97, 63, 0.25);
  border-radius: 24px;
  background: rgba(241, 223, 215, 0.7);
  overflow: hidden;
  text-align: center;
}

.final-cta h2 {
  max-width: 870px;
  margin: 0 auto 20px;
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
  line-height: 0.98;
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--muted);
  font-weight: 600;
}

.button-row--center {
  justify-content: center;
}

.watercolor-flower--cta {
  right: -10px;
  bottom: -34px;
  width: 210px;
  height: 210px;
  transform: rotate(12deg);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -58px;
  left: -32px;
  width: 180px;
  height: 180px;
  background: center / contain no-repeat url("/assets/roses/rose-02.webp");
  opacity: 0.2;
  transform: rotate(-14deg);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    gap: 45px;
  }

  .hero__art {
    min-height: 430px;
  }

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

  .happening-card--pink {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 46px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 8.5vw, 3.4rem);
    line-height: 0.99;
  }

  .hero h1 em {
    display: inline;
  }

  .hero__intro {
    max-width: 34rem;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero .button-row {
    gap: 16px 22px;
  }

  .hero__details {
    display: none;
  }

  .hero::before {
    top: auto;
    right: -80px;
    bottom: 38px;
    width: 93vw;
  }

  .hero__art {
    width: min(100%, 620px);
    min-height: 470px;
    margin: 0 auto;
  }

  .section-heading--split,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 25px;
  }

  .about__art {
    min-height: 0;
  }

}

@media (max-width: 560px) {

  .hero {
    min-height: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero__art {
    min-height: 345px;
  }

  .art-card {
    padding: 7px;
  }

  .art-card--front {
    padding-bottom: 39px;
  }

  .art-card--back {
    width: 82%;
  }

  .art-card--front {
    width: 86%;
  }

  .hero__heart {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }

  .studio-ribbon {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding: 14px 18px;
    overflow: hidden;
    white-space: normal;
  }

  .studio-ribbon i {
    display: none;
  }

  .studio-ribbon span {
    white-space: nowrap;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .portfolio {
    padding-top: 22px;
  }

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

  .happenings-grid {
    gap: 14px;
  }

  .portfolio-carousel__control {
    top: 44%;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .portfolio-carousel__control--previous {
    left: 8px;
  }

  .portfolio-carousel__control--next {
    right: 8px;
  }

  .happening-card,
  .happening-card--pink {
    grid-column: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 68px 22px 22px;
    border-radius: 16px;
  }

  .happening-card__tag {
    top: 17px;
    left: 20px;
    padding: 6px 10px;
    font-size: 0.61rem;
  }

  .happening-card__number {
    top: 14px;
    right: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(184, 149, 102, 0.3);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.52);
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1;
  }

  .happening-card div > .eyebrow {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  .happening-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 7.5vw, 1.95rem);
    line-height: 1.08;
  }

  .happening-card div > p:not(.eyebrow) {
    margin-bottom: 14px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .happening-card .text-link {
    font-size: 0.84rem;
  }

  .about__art {
    min-height: 0;
  }

  .final-cta {
    max-width: calc(100% - 28px);
    border-radius: 18px;
  }

  .final-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
