:root {
  --bg: #ffffff;
  --ink: #171717;
  --muted: #5d5d5d;

  --peach: #fde8df;
  /* soft blush */
  --gold: #c8a24a;
  /* champagne gold */

  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .06);

  --container: 1040px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

html {
  scrollbar-gutter: stable;
}


/* HEADER */
header {
  padding: 36px 0 0;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Brand mark with extended gold lines */
.logo {
  text-align: center;
  font-weight: 600;
  letter-spacing: .22em;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 0 32px;
  color: var(--gold);
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 170px;
  height: 1px;
  background: rgba(200, 162, 74, .55);
}

.logo::before {
  right: 100%;
  margin-right: 18px;
}

.logo::after {
  left: 100%;
  margin-left: 18px;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

h1{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;              /* was 600 */
  letter-spacing: -0.01em;       /* slightly softer */
  line-height: 1.08;
  font-size: clamp(38px, 4.6vw, 62px);
  margin: 0 0 14px;
}


.sub {
  margin: 14px auto 24px;
  /* auto centers the block */
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  text-align: center;
  /* ensures text stays centered */
}


.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  justify-content: center;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 74, .7);
  background: #ffffff;
  font-weight: 600;
  min-width: 160px;
  color: var(--ink);
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .15s ease;
}

.btn:hover {
  background: var(--peach);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 6px 20px rgba(200, 162, 74, .25);
  transform: translateY(-2px);

}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(200, 162, 74, .2);
}


/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(200, 162, 74, .55),
      transparent);
  margin: 40px auto 0;
  max-width: 520px;
}


/* GALLERY */
.gallery {
  padding: 10px 0 44px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tile {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .04);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 74, .65);
  /* gold edge */
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .08),
    0 0 0 1px rgba(200, 162, 74, .25);
}

.tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .4s ease;
}


.tile:hover img {
  transform: scale(1.02);
}


/* ABOUT (exact mock tone) */
.about{
  background: var(--peach);
  padding: 52px 0;
}

.about-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ABOUT title */
.about-title{
  position: relative;
  display: inline-block;
  padding: 0 22px;
  font-family: "Allura", cursive;  /* script */
  font-weight: 400;
  font-size: 34px;                /* larger */
  color: rgba(0,0,0,.52);
  margin-bottom: 14px;
  letter-spacing: .01em;
  line-height: 1;
}


.about-title::before,
.about-title::after{
  background: rgba(200,162,74,.28);
  height: 1px;
  width: 150px;
}


.about-title::before{
  right: 100%;
  margin-right: 14px;
}

.about-title::after{
  left: 100%;
  margin-left: 14px;
}

/* ABOUT paragraph */
.about-text{
  margin: 0 auto;
  max-width: 64ch;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(0,0,0,.50);            /* lighter than hero subtext */
}

/* Bottom divider */
.about-divider{
  width: 90%;
  max-width: 760px;
  height: 1px;
  margin: 26px auto 0;
  background: rgba(200,162,74,.22);  /* very faint */
}



/* CTA */
.cta {
  padding: 46px 0 36px;
  text-align: center;
}

.cta p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* FOOTER */
footer {
  padding: 18px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(200, 162, 74, .35);
}

@media (max-width: 700px){
  .about-title{ font-size: 30px; }
  .about-title::before,
  .about-title::after{ width: 70px; }
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}