:root{
  --bg: #f4e1e3;          /* soft blush */
  --bg2:#f8eeec;          /* lighter panel */
  --text:#3a2f2c;         /* deep warm brown */
  --muted:#6a5d59;
  --line:#d7c3c2;
  --card:#fbf6f5;
  --shadow: 0 10px 30px rgba(40, 20, 18, .08);
  --btn:#98817c;          /* sampled from screenshot */
  --btnHover:#8b7672;
  --radius: 10px;

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

a{ color:inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  width:min(1040px, calc(100% - 40px));
  margin-inline:auto;
}

.hero{
  position:relative;
  overflow:visible;
  padding: 16px 0 32px;
}

/* Company logo as background */
.hero__bg{
  position:relative;
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin: 0 auto 28px;
  pointer-events:none;
  background: 
    url("./assets/logo.png");
  background-repeat:no-repeat;
  background-position: center center;
  background-size: 70% auto;
  background-color: transparent;
  opacity: 1;
}

.hero__content{
  position:relative;
  text-align:center;
  padding: 0;
  margin-top: -8px;
}


.hero__kicker{
  display: none; /* Hide duplicate text since logo shows it */
}

.hero__title{
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:.02em;
  margin:0 0 8px;
  font-size: clamp(36px, 4.5vw, 48px);
}

.hero__subtitle{
  font-family:var(--serif);
  font-weight:600;
  font-size: clamp(26px, 3.5vw, 32px);
  margin: 0 0 16px;
  opacity:.9;
}

.divider{
  width: 70%;
  height: 1px;
  background: rgba(215,195,194,.65);
  margin: 12px auto;
  transform: scaleY(.7);           /* thinner feel */
}

.hero__body{
  max-width: 720px;
  margin: 0 auto;
  font-family:var(--sans);
  font-size:20px;
  color:var(--muted);
  line-height: 1.6;
}

.hero__note{
  max-width: 720px;
  margin: 12px auto 20px;
  font-family:var(--serif);
  font-size: 21px;
  color: var(--muted);
  font-style: italic;
}

.btn{
  display:inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  background: #9a7f79;             /* warmer / closer to reference */
  color:#fff;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 10px 18px rgba(30,12,10,.12),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn:hover{
  text-decoration:none;
  background: #8f766f;
}


.section-title{
  font-family:var(--serif);
  font-weight:500;
  letter-spacing:.02em;
  margin:0 0 16px;
  font-size: 48px;
}
.section-title--center{ text-align:center; }

.portfolio{
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.portfolio__wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.portfolio__link{
  display: block;
  max-width: 75%;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.portfolio__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(40,20,18,.15);
  text-decoration: none;
}
.portfolio__image{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.portfolio__button{
  text-align: center;
  margin-top: 24px;
}
.portfolio__button .social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
  width: fit-content;
}
.portfolio__button .social__link{
  flex-shrink: 0;
}
.portfolio__instagram-handle{
  font-family: var(--sans);
  font-size: 19px;
  color: var(--muted);
}
.portfolio__message{
  text-align: center;
  margin-top: 16px;
}
.portfolio__question{
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
}
.portfolio__link-text{
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
}
.portfolio__social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  width: fit-content;
}
.portfolio__arrow{
  margin-right: 6px;
  color: var(--muted);
}
.portfolio__message-link{
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease-out;
}
.portfolio__message-link:hover{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about{
  padding: 22px 0 10px;
}
.about__card{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items:start;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__photo{
  width:100%;
  height:auto;
  border-radius: 2px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.about__copy{
  border-left: 1px solid var(--line);
  padding-left: 26px;
}
.about__line{
  margin: 10px 0;
  font-family:var(--serif);
  font-size: 24px;
}
.muted{ color: var(--muted); font-family:var(--sans); font-size: 19px; letter-spacing:.02em; }

.services{
  padding: 26px 0 8px;
  border-bottom: 1px solid var(--line);
}

.contact{
  padding: 26px 0 32px;
  border-bottom: 1px solid var(--line);
}
.contact__subtitle{
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 12px;
  color: var(--text);
}
.contact__intro{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
}
.contact__divider{
  width: 70%;
  height: 1px;
  background: rgba(215,195,194,.65);
  margin: 0 auto 32px;
  transform: scaleY(.7);
}
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact__column{
  display: flex;
  flex-direction: column;
}
.contact__column:last-child{
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.contact__heading{
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text);
}
.contact__address{
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.contact__map-link{
  font-family: var(--sans);
  font-size: 19px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease-out;
  display: inline-block;
  margin-bottom: 16px;
}
.contact__map-link:hover{
  color: var(--text);
}
.contact__storefront{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact__storefront-link{
  display: block;
  max-width: 100%;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.contact__storefront-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(40,20,18,.15);
  text-decoration: none;
}
.contact__storefront-image{
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}
.contact__form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__input,
.contact__textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(215,195,194,.6);
  border-radius: 4px;
  background: rgba(255,255,255,.8);
  font-family: var(--sans);
  font-size: 20px;
  color: var(--text);
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.contact__input:focus,
.contact__textarea:focus{
  outline: none;
  border-color: rgba(215,195,194,.9);
  box-shadow: 0 0 0 3px rgba(215,195,194,.1);
}
.contact__input::placeholder,
.contact__textarea::placeholder{
  color: var(--muted);
  opacity: .7;
}
.contact__textarea{
  resize: vertical;
  min-height: 120px;
}
.contact__submit{
  align-self: flex-start;
  margin-top: 4px;
}
.contact__honeypot{
  display: none;
}
.contact__success{
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(215,195,194,.8);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--text);
  text-align: center;
}
.contact__success strong{
  color: var(--text);
  font-weight: 600;
}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 12px 0 26px;
}
.card{
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(215,195,194,.70);
  border-radius: 6px;
  padding: 22px 18px 20px;
  box-shadow: 0 10px 22px rgba(40,20,18,.06); /* softer */
  text-align:center;
}

.card__icon{
  width: 64px;
  height: 64px;
  margin: 6px auto 12px;
  color: rgba(154,127,121,.75);    /* lighter icons */
  display:grid;
  place-items:center;
  opacity: .8;
}

.card__icon svg{ width: 64px; height: 64px; }
.card__title{
  font-family: var(--sans);
  font-weight: 600;
  margin: 10px 0 10px;
  font-size: 20px;
  letter-spacing: .01em;
}

.card__text{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.booking{
  position:relative;
  padding: 26px 0 8px;
  border-bottom: 1px solid var(--line);
}
.booking__inner{
  padding-bottom: 24px;
  text-align: center;
}
.booking__lead{
  text-align:center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 20px;
}
.policies{
  list-style: none;
  padding: 0;
  margin: 0 auto 14px;
  max-width: 460px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.policies li{
  padding: 10px 0;
  border-top: 1px solid rgba(215,195,194,.6);
  font-size: 19px;
  color: var(--muted);
}
.policies li:first-child{ border-top: none; }
.booking__note{
  text-align:center;
  color: var(--muted);
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: 21px;
}

/* Booking gallery collage */
.gallery{
  margin: 26px auto 0;
  max-width: 1200px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(215,195,194,.9);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow);
}
.gallery__title{
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 32px;
  text-align: center;
}
.gallery__hint{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 19px;
  text-align: center;
}
.gallery__collage{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery__item{
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.gallery__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40,20,18,.15);
}
.gallery__item:active{
  transform: translateY(0);
}
.gallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox modal */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease-in-out;
}
.lightbox[aria-hidden="false"]{
  opacity: 1;
  pointer-events: all;
}
.lightbox__close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease-out;
  z-index: 1001;
}
.lightbox__close:hover{
  background: rgba(255,255,255,.3);
}
.lightbox__content{
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image{
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.footer{
  background: rgba(244,225,227,.9);
  padding: 24px 0 28px;
  border-top: 1px solid var(--line);
}
.footer__inner{
  position: relative;
  text-align: center;
}
.footer__row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 12px 0;
}
.footer__row--top{
  border-bottom: 1px solid rgba(215,195,194,.4);
  margin-bottom: 8px;
}
.footer__row--bottom{
  gap: 12px;
  padding: 8px 0 0;
}
.footer__brand{
  font-family:var(--sans);
  letter-spacing:.26em;
  text-transform:uppercase;
  font-size: 18px;
  opacity:.85;
  margin:0;
}
.footer__meta{
  margin:0;
  color: var(--muted);
  font-size: 19px;
  white-space: nowrap;
}
.sep{ 
  opacity:.5; 
  font-size: 17px;
}
.social{
  display:flex;
  gap: 10px;
  align-items: center;
}
.footer .social{
  gap: 8px;
  white-space: nowrap;
}
.footer__brand,
.footer__tag{
  white-space: nowrap;
}
.social__link{
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(215,195,194,.6);
  border-radius: 8px;
  background: rgba(255,255,255,.4);
  transition: all 200ms ease-out;
}
.social__link:hover{
  background: rgba(255,255,255,.6);
  border-color: rgba(215,195,194,.8);
  transform: translateY(-1px);
  text-decoration: none;
}
.social__link svg{
  width: 18px;
  height: 18px;
  fill: var(--muted);
}
.footer__links{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
}
.footer__link{
  color: var(--muted);
  font-size: 19px;
  text-decoration: none;
  transition: color 200ms ease-out;
}
.footer__link:hover{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__tag{
  margin: 0;
  font-family: var(--serif);
  color: var(--muted);
  font-size: 21px;
  font-style: italic;
}
.footer__copyright{
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-family: var(--sans);
  opacity: .7;
}

/* Page load blur / fade-in */
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:var(--sans);
  line-height:1.45;
  opacity: 1;
  filter: none;
  transition: opacity 700ms ease-out, filter 700ms ease-out;
}
body.is-loading{
  opacity: 0;
  filter: blur(6px);
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .about__card{ grid-template-columns: 1fr; }
  .about__copy{ border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:18px; }
  .contact__grid{ grid-template-columns: 1fr; gap: 32px; }
  .contact__column:last-child{ border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .footer__row{ 
    flex-direction: column; 
    gap: 8px;
  }
  .footer__row--top .sep{
    display: none;
  }
}

@media (max-width: 768px){
  .hero__title{
    font-size: clamp(28px, 5vw, 36px);
  }
  .hero__subtitle{
    font-size: clamp(22px, 4vw, 28px);
  }
  .section-title{
    font-size: 36px;
  }
  .contact__subtitle{
    font-size: 28px;
  }
  .gallery__title{
    font-size: 28px;
  }
  .footer__row--top{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .footer__row--top .sep{
    display: none;
  }
  .footer__brand,
  .footer__tag,
  .footer__meta{
    font-size: 16px;
  }
  .portfolio__instagram-handle{
    font-size: 17px;
  }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 26px); }
  .divider{ width: 92%; }
  .cards{ grid-template-columns: 1fr; }
  .hero__title{
    font-size: clamp(24px, 6vw, 32px);
  }
  .hero__subtitle{
    font-size: clamp(20px, 5vw, 24px);
  }
  .hero__body{
    font-size: 18px;
  }
  .hero__note{
    font-size: 19px;
  }
  .section-title{
    font-size: 32px;
  }
  .contact__subtitle{
    font-size: 24px;
  }
  .contact__heading{
    font-size: 26px;
  }
  .contact__intro,
  .contact__address,
  .contact__input,
  .contact__textarea{
    font-size: 18px;
  }
  .btn{
    font-size: 16px;
    padding: 10px 24px;
  }
  .gallery{
    max-width: 100%;
    padding: 14px;
  }
  .gallery__title{
    font-size: 24px;
  }
  .gallery__hint{
    font-size: 17px;
  }
  .gallery__collage{
    gap: 8px;
  }
  .gallery__item{
    aspect-ratio: 3 / 4;
  }
  .lightbox__close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  .footer__row--top{
    flex-direction: column;
    gap: 12px;
  }
  .footer__brand,
  .footer__tag,
  .footer__meta{
    font-size: 15px;
  }
  .portfolio__instagram-handle{
    font-size: 16px;
  }
  .portfolio__question,
  .portfolio__link-text{
    font-size: 18px;
  }
  .about__line{
    font-size: 20px;
  }
  .muted{
    font-size: 17px;
  }
  .card__title{
    font-size: 18px;
  }
  .card__text{
    font-size: 16px;
  }
  .booking__lead{
    font-size: 18px;
  }
  .policies li{
    font-size: 17px;
  }
  .booking__note{
    font-size: 19px;
  }
}
