/* ---------------- FONTS ---------------- */

@font-face {
font-family: 'Astina';
src: url('fonts/Astina.ttf') format('truetype');
}

@font-face{
	font-family: 'EdwardianScript';
src: url('fonts/EdwardianScript.ttf') format('truetype');
}
@font-face{
	font-family: 'Optima';
src: url('fonts/Optima.ttf') format('truetype');
}

/* ---------------- GLOBAL ---------------- */

body {
margin: 0;
background: #EBE8DE;
font-family: 'Libre Baskerville', serif;
color: #5f5b4f;
line-height: 1.7;
}

.site-loader {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background: #EBE8DE;
transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.loader-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

.loader-mark {
position: relative;
width: 118px;
height: 118px;
display: flex;
align-items: center;
justify-content: center;
}

.loader-mark img {
width: 72px;
height: 72px;
object-fit: contain;
filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(400%) hue-rotate(330deg);
}

.loader-mark span {
position: absolute;
inset: 0;
border: 1px solid rgba(138, 106, 90, 0.18);
border-top-color: #8a6a5a;
border-radius: 50%;
animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
to {
    transform: rotate(360deg);
}
}

h1, h2, h3 {
font-family: 'Cormorant Garamond', serif;
color: #8a6a5a;
margin-bottom: 15px;
}

.container {
width: 85%;
margin: auto;
padding: 20px 0;
}

.section {
margin-bottom: 60px;
}

/* ---------------- HEADER ---------------- */

.header {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
padding: 18px 8%;
background: #EBE8DE;
border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

/* LEFT BRAND */

.brand-center {
font-family: 'Optima', serif;
/*font-weight: bold;*/
font-size: 30px;
color: #8a6a5a;
}

.brand-center sup {
font-size: 9px;
line-height: 0;
vertical-align: super;
margin-left: 2px;
}

/* CENTER LOGO */

.logo-left {
text-align: center;
justify-self: start;   /* ensures left alignment */
}

.logo-left img {
height: 70px;
width: auto;
display: block;
margin: auto;
/* color adjustment (temporary fix for white logo) */
filter: brightness(0) saturate(100%) invert(40%) sepia(15%) saturate(400%) hue-rotate(330deg);
}

/* RIGHT NAV */

.nav-right {
display: flex;
justify-content: flex-end;
gap: 25px;
}

.nav-right a {
text-decoration: none;
font-family: 'Optima', serif;
font-size: 15px;
color: #8a6a5a;
position: relative;
font-weight: bold;
}

/* LUXURY UNDERLINE HOVER */

.nav-right a::after {
content: "";
position: absolute;
width: 0%;
height: 1px;
bottom: -4px;
left: 0;
background: #8a6a5a;
transition: 0.3s ease;
}

.nav-right a:hover::after {
width: 100%;
}

/* ---------------- HERO ---------------- */

.hero {
height: 100vh;
display: flex;
align-items: center;
text-align: center;
background: url('https://images.unsplash.com/photo-1519741497674-611481863552') center/cover no-repeat;
}

.hero-content {
width: 70%;
margin: auto;
}

.hero h1 {
font-size: 42px;
}

.hero p {
margin-top: 15px;
}

/* ---------------- BUTTONS ---------------- */

.btn {
/*background: #CAAE9D;*/
background: #88947F;
padding: 12px 28px;
border-radius: 30px;
text-decoration: none;
color: white;
display: inline-block;
margin: 15px 10px 0 10px;
font-family: 'Optima', serif;
transition: 0.3s;
font-size: 15px;
font-weight: bold;
}

.btn:hover {
opacity: 0.85;
}

/* ---------------- GRID ---------------- */

.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

/* ---------------- IMAGES ---------------- */

img {
width: 100%;
}

/* ---------------- FOOTER ---------------- */

.footer {
text-align: center;
padding: 40px;
font-size: 12px;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width: 900px) {
.header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
}

.nav-right {
    justify-content: center;
    flex-wrap: wrap;
}

.logo-left img {
    height: 60px;
}

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


.hero h1 {
    font-size: 30px;
}

.hero-content {
    width: 90%;
}

}

.grid-3 h3 {
    font-family: 'Astina', serif;
    font-size: 35px;
    /*letter-spacing: 0.5px;*/
    font-weight: bold;
	color: #36454F;
}

/* ---------------- BANNER ---------------- */

.banner {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-scroll .banner-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

/* overlay for luxury readability */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 25, 20, 0.2);
    z-index: 1;
}


/*.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 70%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}*/

.banner-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
}

/* heading in Astina */
.banner-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    /*color: #8a6a5a;*/ /* back to your brand brown */
	color: #FFFFFF;
    line-height: 1.3;
	/*font-weight: normal;*/
}
.banner-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    /*color: #8a6a5a;*/ /* back to your brand brown */
	color: #FFFFFF;
    line-height: 1.3;
	/*font-weight: normal;*/
}

/* buttons spacing */
.banner-buttons {
    margin-top: 25px;
}

/* description below */
.banner-description {
    text-align: center;
    max-width: 800px;
	color: #36454F;
}

.banner-description p {
    margin: 0 0 8px 0;
}

.signatures-title-section {
  padding-bottom: 4px;
}

.signatures-grid-container {
  padding-top: 0;
}

.signatures-heading {
  font-family: 'Cormorant Garamond', serif;
  color: #36454F;
  font-size: 45px;
  margin-bottom: 0;
}

.custom-font {
  font-family: 'Astina', serif;
  font-size: 40px;
  font-weight: bold;
}

/* ---------------- CUSTOM STUDIO ---------------- */

.custom-hero .banner-overlay {
    background: rgba(30, 25, 20, 0.28);
}

.custom-hero .banner-content h1 {
    font-size: 54px;
    line-height: 1.05;
}

.custom-hero .banner-content h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    line-height: 1.18;
}

.custom-intro {
    max-width: 880px;
    text-align: center;
    padding: 55px 0 35px;
}

.custom-intro .custom-font {
    margin: 0 0 4px;
}

.custom-intro h2,
.custom-process h2,
.custom-details h2 {
    color: #36454F;
    font-size: 42px;
    line-height: 1.2;
    margin-top: 0;
}

.custom-intro p:last-child {
    max-width: 760px;
    margin: 0 auto;
}

.section-label {
    margin: 0 0 12px;
    font-family: 'Optima', serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #88947F;
}

.custom-process {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 55px;
    align-items: center;
    padding: 40px 0 70px;
}

.process-copy > p:not(.section-label) {
    margin-bottom: 28px;
}

.process-steps {
    display: grid;
    gap: 16px;
}

.process-step {
    border-top: 1px solid rgba(95, 91, 79, 0.22);
    padding-top: 16px;
}

.process-step span {
    display: block;
    margin-bottom: 6px;
    font-family: 'Optima', serif;
    font-size: 13px;
    color: #8a6a5a;
}

.process-step h3,
.custom-detail h3 {
	font-family: 'Astina', serif;
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.2;
    color: #8a6a5a;
}

.process-step p,
.custom-detail p {
    margin: 0;
}

.process-image {
    height: 620px;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-details {
    background: rgba(255, 255, 255, 0.28);
    border-top: 1px solid rgba(95, 91, 79, 0.12);
    border-bottom: 1px solid rgba(95, 91, 79, 0.12);
}

.custom-details-inner {
    padding: 65px 0;
}

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

.custom-detail {
    min-height: 175px;
    padding: 26px;
    background: #EBE8DE;
    border: 1px solid rgba(95, 91, 79, 0.16);
    border-radius: 8px;
}

.custom-cta {
    max-width: 760px;
    text-align: center;
    padding: 55px 0 45px;
}

.custom-cta p {
    margin: 0 auto 10px;
}

/* ---------------- INQUIRE ---------------- */

.inquire-hero .banner-overlay {
    background: rgba(30, 25, 20, 0.3);
}

.inquire-hero .banner-content h1 {
    font-size: 62px;
    line-height: 1.05;
}

.inquire-hero .banner-content h2 {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    line-height: 1.18;
}

.inquire-intro {
    max-width: 820px;
    text-align: center;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.inquire-intro p:not(.custom-font) {
    max-width: 720px;
    margin: 0 auto;
}

.inquire-intro .custom-font,
.inquire-intro .btn {
    margin: 0;
}

.inquire-panel {
    background: rgba(255, 255, 255, 0.28);
    border-top: 1px solid rgba(95, 91, 79, 0.12);
    border-bottom: 1px solid rgba(95, 91, 79, 0.12);
}

.inquire-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    gap: 50px;
    align-items: start;
    padding: 65px 0;
}

.inquire-contact-image {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.inquire-contact-image img {
    position: absolute;
    top: -35%;
    left: 0;
    width: 100%;
    height: 170%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.inquire-contact h2,
.inquire-note h2 {
    color: #36454F;
    font-size: 42px;
    line-height: 1.2;
    margin-top: 0;
}

.inquire-contact a {
    color: #8a6a5a;
    font-weight: bold;
    text-decoration: none;
}

.inquire-contact a:hover {
    text-decoration: underline;
}

.inquire-list {
    display: grid;
    gap: 16px;
}

.inquire-list > h2 {
    margin: 0 0 4px;
    font-family: 'Astina', serif;
    font-size: 40px;
    line-height: 1.15;
    color: #36454F;
}

.inquire-item {
    display: grid;
    grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1fr);
    column-gap: 28px;
    align-items: end;
    padding: 22px 0;
    border-top: 1px solid rgba(95, 91, 79, 0.22);
}

.inquire-item:nth-child(2) {
    border-top: none;
    padding-top: 0;
}

.inquire-item span {
    display: block;
    margin-bottom: 6px;
    font-family: 'Optima', serif;
    font-size: 13px;
    color: #88947F;
}

.inquire-item h3 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.2;
    color: #8a6a5a;
}

.inquire-item p {
    margin: 0;
}

.inquire-note {
    max-width: 760px;
    text-align: center;
    padding: 55px 0 45px;
}

/* ---------------- SPLIT BANNER ---------------- */

.banner-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    height: 85vh;
}

/* images */

.split-image {
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* center content */

.split-content {
    background: #EBE8DE; /* your ivory */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

/* heading */

.split-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: #5f5b4f;
    line-height: 1.3;
	font-weight: bold;
}

/* buttons spacing */

.split-content .banner-buttons {
    margin-top: 25px;
}

@media(max-width: 900px) {
    .banner-content {
        width: 86%;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .custom-hero .banner-content h1 {
        font-size: 36px;
    }

    .custom-hero .banner-content h2 {
        font-size: 21px;
        line-height: 1.25;
    }

    .inquire-hero .banner-content h1 {
        font-size: 42px;
    }

    .inquire-hero .banner-content h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .custom-intro h2,
    .custom-process h2,
    .custom-details h2,
    .inquire-contact h2,
    .inquire-note h2 {
        font-size: 34px;
    }

    .custom-process {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 50px;
    }

    .process-image {
        height: 420px;
    }

    .custom-detail-grid {
        grid-template-columns: 1fr;
    }

    .custom-detail {
        min-height: auto;
    }

    .inquire-panel-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 50px 0;
    }

    .inquire-item {
        grid-template-columns: minmax(145px, 0.75fr) minmax(0, 1fr);
        column-gap: 14px;
    }

    .banner-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .split-image {
        height: 360px;
    }

    .split-content h1 {
        font-size: 36px;
    }
}

@media(max-width: 700px) {
    body {
        font-size: 15px;
        line-height: 1.65;
    }

    .container {
        width: 88%;
        padding: 18px 0;
    }

    .header {
        padding: 14px 6% 16px;
        gap: 8px;
    }

    .logo-left {
        justify-self: center;
    }

    .logo-left img {
        height: 58px;
    }

    .brand-center {
        font-size: 24px;
        line-height: 1.15;
    }

    .nav-right {
        gap: 16px;
        row-gap: 6px;
    }

    .nav-right a {
        font-size: 13px;
    }

    .site-loader {
        align-items: center;
    }

    .loader-mark {
        width: 96px;
        height: 96px;
    }

    .loader-mark img {
        width: 58px;
        height: 58px;
    }

    .banner {
        height: 74svh;
        min-height: 520px;
    }

    .banner-content {
        width: 88%;
    }

    .banner-content h1 {
        font-size: 32px;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .banner-content h2 {
        font-size: 22px;
        line-height: 1.22;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
    }

    .btn {
        width: min(100%, 280px);
        box-sizing: border-box;
        margin: 0;
        padding: 12px 18px;
        text-align: center;
        line-height: 1.25;
    }

    .banner-description {
        width: 88%;
        padding: 28px 0;
    }

    .banner-description h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .custom-font {
        font-size: 32px;
        line-height: 1.2;
    }

    .banner-description .custom-font[style] {
        font-size: 32px !important;
    }

    .grid-3 {
        gap: 22px;
    }

    .grid-3 h3 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .section {
        margin-bottom: 36px;
    }

    .banner-split {
        margin-top: 10px;
    }

    .split-image {
        height: 300px;
    }

    .split-content {
        padding: 34px 7%;
    }

    .split-content h1 {
        font-size: 31px;
        line-height: 1.2;
    }

    .custom-hero .banner-content h1,
    .inquire-hero .banner-content h1 {
        font-size: 36px;
    }

    .custom-hero .banner-content h2,
    .inquire-hero .banner-content h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .custom-intro,
    .inquire-intro,
    .custom-cta,
    .inquire-note {
        width: 88%;
        padding: 40px 0;
    }

    .custom-intro h2,
    .custom-process h2,
    .custom-details h2,
    .inquire-contact h2,
    .inquire-note h2 {
        font-size: 31px;
        line-height: 1.16;
    }

    .custom-process {
        width: 88%;
        padding: 22px 0 46px;
    }

    .process-image {
        height: 330px;
    }

    .process-step h3,
    .custom-detail h3,
    .inquire-item h3 {
        font-size: 25px;
    }

    .custom-details-inner,
    .inquire-panel-inner {
        width: 88%;
        padding: 44px 0;
    }

    .custom-detail {
        padding: 22px;
    }

    .inquire-item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 0;
        align-items: start;
    }

    .footer {
        padding: 28px 20px;
    }
}

@media(max-width: 420px) {
    .brand-center {
        font-size: 22px;
    }

    .nav-right {
        gap: 12px;
    }

    .nav-right a {
        font-size: 12px;
    }

    .banner {
        min-height: 500px;
    }

    .banner-content h1 {
        font-size: 29px;
    }

    .custom-hero .banner-content h1,
    .inquire-hero .banner-content h1 {
        font-size: 33px;
    }

    .custom-font {
        font-size: 29px;
    }
}
